Table of Contents

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

Properties

ParentId

The parent resource's identifier.

string ParentId { get; }

Property Value

string

Remarks

PathPart

The last path segment for this resource.

string PathPart { get; }

Property Value

string

Remarks

RestApiId

The string identifier of the associated RestApi.

string RestApiId { get; }

Property Value

string

Remarks