CfnDomainNameProps
- class aws_cdk.aws_appsync.CfnDomainNameProps(*, certificate_arn, domain_name, description=None)
Bases:
object
Properties for defining a
CfnDomainName
.- Parameters:
certificate_arn (
str
) – The Amazon Resource Name (ARN) of the certificate. This will be an AWS Certificate Manager certificate.domain_name (
str
) – The domain name.description (
Optional
[str
]) – The decription for your domain name.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_appsync as appsync cfn_domain_name_props = appsync.CfnDomainNameProps( certificate_arn="certificateArn", domain_name="domainName", # the properties below are optional description="description" )
Attributes
- certificate_arn
The Amazon Resource Name (ARN) of the certificate.
This will be an AWS Certificate Manager certificate.
- description
The decription for your domain name.
- domain_name
The domain name.