interface CfnDomainNameMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDomainNameMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDomainNameMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDomainNameMixinProps |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDomainNameMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnDomainNameMixinProps |
Properties for CfnDomainNamePropsMixin.
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 { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const cfnDomainNameMixinProps: appsync_mixins.CfnDomainNameMixinProps = {
certificateArn: 'certificateArn',
description: 'description',
domainName: 'domainName',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The Amazon Resource Name (ARN) of the certificate. |
| description? | string | The decription for your domain name. |
| domain | string | The domain name. |
| tags? | Cfn[] | A set of tags (key-value pairs) for this domain name. |
certificateArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the certificate.
This will be an Certificate Manager certificate.
description?
Type:
string
(optional)
The decription for your domain name.
domainName?
Type:
string
(optional)
The domain name.
tags?
Type:
Cfn[]
(optional)
A set of tags (key-value pairs) for this domain name.

.NET
Go
Java
Python
TypeScript