interface CfnDomainNameProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AppSync.CfnDomainNameProps | 
|  Java | software.amazon.awscdk.services.appsync.CfnDomainNameProps | 
|  Python | aws_cdk.aws_appsync.CfnDomainNameProps | 
|  TypeScript | @aws-cdk/aws-appsync»CfnDomainNameProps | 
Properties for defining a CfnDomainName.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as appsync from '@aws-cdk/aws-appsync';
const cfnDomainNameProps: appsync.CfnDomainNameProps = {
  certificateArn: 'certificateArn',
  domainName: 'domainName',
  // the properties below are optional
  description: 'description',
};
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. | 
certificateArn
Type:
string
The Amazon Resource Name (ARN) of the certificate.
This will be an AWS Certificate Manager certificate.
domainName
Type:
string
The domain name.
description?
Type:
string
(optional)
The decription for your domain name.
