interface CfnBasePathMappingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnBasePathMappingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnBasePathMappingMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnBasePathMappingMixinProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnBasePathMappingMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigateway » mixins » 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 { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnBasePathMappingMixinProps: apigateway_mixins.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 | The domain name of the BasePathMapping resource to be described. |
| id? | string | |
| rest | string | The string identifier of the associated RestApi. |
| stage? | string | 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
(optional)
The domain name of the BasePathMapping resource to be described.
id?
Type:
string
(optional)
restApiId?
Type:
string
(optional)
The string identifier of the associated RestApi.
stage?
Type:
string
(optional)
The name of the associated stage.

.NET
Go
Java
Python
TypeScript