interface CfnDomainNameV2Props
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APIGateway.CfnDomainNameV2Props |
Java | software.amazon.awscdk.services.apigateway.CfnDomainNameV2Props |
Python | aws_cdk.aws_apigateway.CfnDomainNameV2Props |
TypeScript (source) | @aws-cdk/aws-apigateway » CfnDomainNameV2Props |
⚠️ Deprecated: moved to package aws-apigatewayv2
Properties for defining a AWS::ApiGatewayV2::DomainName.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apigateway from '@aws-cdk/aws-apigateway';
declare const tags: any;
const cfnDomainNameV2Props: apigateway.CfnDomainNameV2Props = {
domainName: 'domainName',
// the properties below are optional
domainNameConfigurations: [{
certificateArn: 'certificateArn',
certificateName: 'certificateName',
endpointType: 'endpointType',
}],
tags: tags,
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | AWS::ApiGatewayV2::DomainName.DomainName. |
| domain | IResolvable | IResolvable | Domain[] | AWS::ApiGatewayV2::DomainName.DomainNameConfigurations. |
| tags? | any | AWS::ApiGatewayV2::DomainName.Tags. |
domainName
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
string
AWS::ApiGatewayV2::DomainName.DomainName.
domainNameConfigurations?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
IResolvable | IResolvable | Domain[]
(optional)
AWS::ApiGatewayV2::DomainName.DomainNameConfigurations.
tags?
⚠️ Deprecated: moved to package aws-apigatewayv2
Type:
any
(optional)
AWS::ApiGatewayV2::DomainName.Tags.

.NET
Java
Python
TypeScript (