CfnDomainNameV2Props

class aws_cdk.aws_apigateway.CfnDomainNameV2Props(*, domain_name, domain_name_configurations=None, tags=None)

Bases: object

(deprecated) Properties for defining a AWS::ApiGatewayV2::DomainName.

Parameters:
  • domain_name (str) – (deprecated) AWS::ApiGatewayV2::DomainName.DomainName.

  • domain_name_configurations (Union[IResolvable, Sequence[Union[IResolvable, DomainNameConfigurationProperty, Dict[str, Any]]], None]) – (deprecated) AWS::ApiGatewayV2::DomainName.DomainNameConfigurations.

  • tags (Optional[Any]) – (deprecated) AWS::ApiGatewayV2::DomainName.Tags.

Deprecated:

moved to package aws-apigatewayv2

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html

Stability:

deprecated

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_apigateway as apigateway

# tags: Any

cfn_domain_name_v2_props = apigateway.CfnDomainNameV2Props(
    domain_name="domainName",

    # the properties below are optional
    domain_name_configurations=[apigateway.CfnDomainNameV2.DomainNameConfigurationProperty(
        certificate_arn="certificateArn",
        certificate_name="certificateName",
        endpoint_type="endpointType"
    )],
    tags=tags
)

Attributes

domain_name

(deprecated) AWS::ApiGatewayV2::DomainName.DomainName.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainname

Stability:

deprecated

domain_name_configurations

(deprecated) AWS::ApiGatewayV2::DomainName.DomainNameConfigurations.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-domainnameconfigurations

Stability:

deprecated

tags

(deprecated) AWS::ApiGatewayV2::DomainName.Tags.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-domainname.html#cfn-apigatewayv2-domainname-tags

Stability:

deprecated