interface CfnDomainNameProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.CfnDomainNameProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnDomainNameProps |
Java | software.amazon.awscdk.services.appsync.CfnDomainNameProps |
Python | aws_cdk.aws_appsync.CfnDomainNameProps |
TypeScript | aws-cdk-lib » aws_appsync » CfnDomainNameProps |
Properties for defining a CfnDomainName.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appsync-domainname.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appsync as appsync } from 'aws-cdk-lib';
const cfnDomainNameProps: appsync.CfnDomainNameProps = {
certificateArn: 'certificateArn',
domainName: 'domainName',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Amazon Resource Name (ARN) of the certificate. |
| domain | string | The domain name. |
| description? | string | The decription for your domain name. |
| tags? | Cfn[] | A set of tags (key-value pairs) for this domain name. |
certificateArn
Type:
string
The Amazon Resource Name (ARN) of the certificate.
This will be an Certificate Manager certificate.
domainName
Type:
string
The domain name.
description?
Type:
string
(optional)
The decription for your domain name.
tags?
Type:
Cfn[]
(optional)
A set of tags (key-value pairs) for this domain name.

.NET
Go
Java
Python
TypeScript