interface CfnBasePathMappingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApiGateway.CfnBasePathMappingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapigateway#CfnBasePathMappingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.apigateway.CfnBasePathMappingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_apigateway.CfnBasePathMappingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apigateway » CfnBasePathMappingMixinProps |
Properties for CfnBasePathMappingPropsMixin.
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 cfnBasePathMappingMixinProps: apigateway.CfnBasePathMappingMixinProps = {
basePath: 'basePath',
domainName: 'domainName',
id: 'id',
restApiId: 'restApiId',
stage: 'stage',
};
Properties
| Name | Type | Description |
|---|---|---|
| base | string | The base path name that callers of the API must provide as part of the URL after the domain name. |
| domain | string | IDomain | The domain name of the BasePathMapping resource to be described. |
| id? | string | |
| rest | string | IRest | The string identifier of the associated RestApi. |
| stage? | string | IStage | The name of the associated stage. |
basePath?
Type:
string
(optional)
The base path name that callers of the API must provide as part of the URL after the domain name.
domainName?
Type:
string | IDomain
(optional)
The domain name of the BasePathMapping resource to be described.
id?
Type:
string
(optional)
restApiId?
Type:
string | IRest
(optional)
The string identifier of the associated RestApi.
stage?
Type:
string | IStage
(optional)
The name of the associated stage.

.NET
Go
Java
Python
TypeScript