interface CfnResourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGateway.CfnResourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigateway#CfnResourceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigateway.CfnResourceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigateway.CfnResourceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigateway » 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 { aws_apigateway as apigateway } from '@aws-cdk/cfn-property-mixins';
const cfnResourceMixinProps: apigateway.CfnResourceMixinProps = {
parentId: 'parentId',
pathPart: 'pathPart',
restApiId: 'restApiId',
};
Properties
| Name | Type | Description |
|---|---|---|
| parent | string | IResource | The parent resource's identifier. |
| path | string | The last path segment for this resource. |
| rest | string | IRest | The string identifier of the associated RestApi. |
parentId?
Type:
string | IResource
(optional)
The parent resource's identifier.
pathPart?
Type:
string
(optional)
The last path segment for this resource.
restApiId?
Type:
string | IRest
(optional)
The string identifier of the associated RestApi.

.NET
Go
Java
Python
TypeScript