Interface ICfnResourceProps
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
Properties for defining a CfnResource
.
public interface ICfnResourceProps
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
Properties
ParentId
The parent resource's identifier.
string ParentId { get; }
Property Value
Remarks
PathPart
The last path segment for this resource.
string PathPart { get; }
Property Value
Remarks
RestApiId
The string identifier of the associated RestApi.
string RestApiId { get; }