Class CfnResourceProps
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
Properties for defining a CfnResource
.
public class CfnResourceProps : ICfnResourceProps
- Inheritance
-
CfnResourceProps
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.APIGateway;
var cfnResourceProps = new CfnResourceProps {
ParentId = "parentId",
PathPart = "pathPart",
RestApiId = "restApiId"
};
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html
ExampleMetadata: fixture=_generated
Constructors
CfnResourceProps()
public CfnResourceProps()
Properties
ParentId
The parent resource's identifier.
public string ParentId { get; set; }
Property Value
Remarks
PathPart
The last path segment for this resource.
public string PathPart { get; set; }
Property Value
Remarks
RestApiId
The string identifier of the associated RestApi.
public string RestApiId { get; set; }