interface CfnApiMappingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGatewayV2.CfnApiMappingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigatewayv2#CfnApiMappingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigatewayv2.CfnApiMappingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigatewayv2.CfnApiMappingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigatewayv2 » CfnApiMappingMixinProps |
Properties for CfnApiMappingPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigatewayv2 as apigatewayv2 } from '@aws-cdk/cfn-property-mixins';
const cfnApiMappingMixinProps: apigatewayv2.CfnApiMappingMixinProps = {
apiId: 'apiId',
apiMappingKey: 'apiMappingKey',
domainName: 'domainName',
stage: 'stage',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | IRest | IApi | The API identifier. |
| api | string | The API mapping key. |
| domain | string | IDomain | IDomain | The domain name. |
| stage? | string | The API stage. |
apiId?
Type:
string | IRest | IApi
(optional)
The API identifier.
apiMappingKey?
Type:
string
(optional)
The API mapping key.
domainName?
Type:
string | IDomain | IDomain
(optional)
The domain name.
stage?
Type:
string
(optional)
The API stage.

.NET
Go
Java
Python
TypeScript