Table of Contents

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

Constructors

CfnResourceProps()

public CfnResourceProps()

Properties

ParentId

The parent resource's identifier.

public string ParentId { get; set; }

Property Value

string

Remarks

PathPart

The last path segment for this resource.

public string PathPart { get; set; }

Property Value

string

Remarks

RestApiId

The string identifier of the associated RestApi.

public string RestApiId { get; set; }

Property Value

string

Remarks