Class CfnResourceProps
Properties for defining a CfnResource
.
Inheritance
System.Object
CfnResourceProps
Implements
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceProps : Object, ICfnResourceProps
Syntax (vb)
Public Class CfnResourceProps
Inherits Object
Implements ICfnResourceProps
Remarks
Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html
ExampleMetadata: fixture=_generated
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"
};
Synopsis
Constructors
CfnResourceProps() |
Properties
ParentId | The parent resource's identifier. |
PathPart | The last path segment for this resource. |
RestApiId | The string identifier of the associated RestApi. |
Constructors
CfnResourceProps()
public CfnResourceProps()
Properties
ParentId
The parent resource's identifier.
public string ParentId { get; set; }
Property Value
System.String
Remarks
PathPart
The last path segment for this resource.
public string PathPart { get; set; }
Property Value
System.String
Remarks
RestApiId
The string identifier of the associated RestApi.
public string RestApiId { get; set; }
Property Value
System.String