interface CfnResourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnResourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnResourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnResourceMixinProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnResourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigateway » mixins » CfnResourceMixinProps |
Properties for CfnResourcePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-resource.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnResourceMixinProps: apigateway_mixins.CfnResourceMixinProps = {
parentId: 'parentId',
pathPart: 'pathPart',
restApiId: 'restApiId',
};
Properties
| Name | Type | Description |
|---|---|---|
| parent | string | The parent resource's identifier. |
| path | string | The last path segment for this resource. |
| rest | string | The string identifier of the associated RestApi. |
parentId?
Type:
string
(optional)
The parent resource's identifier.
pathPart?
Type:
string
(optional)
The last path segment for this resource.
restApiId?
Type:
string
(optional)
The string identifier of the associated RestApi.

.NET
Go
Java
Python
TypeScript