interface DomainNameReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppSync.DomainNameReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappsync#DomainNameReference |
Java | software.amazon.awscdk.services.appsync.DomainNameReference |
Python | aws_cdk.aws_appsync.DomainNameReference |
TypeScript | aws-cdk-lib » aws_appsync » DomainNameReference |
A reference to a DomainName resource.
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 domainNameReference: appsync.DomainNameReference = {
domainName: 'domainName',
domainNameArn: 'domainNameArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainName of the DomainName resource. |
| domain | string | The ARN of the DomainName resource. |
domainName
Type:
string
The DomainName of the DomainName resource.
domainNameArn
Type:
string
The ARN of the DomainName resource.

.NET
Go
Java
Python
TypeScript