interface DomainReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Amplify.DomainReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsamplify#DomainReference |
Java | software.amazon.awscdk.interfaces.amplify.DomainReference |
Python | aws_cdk.interfaces.aws_amplify.DomainReference |
TypeScript | aws-cdk-lib » interfaces » aws_amplify » DomainReference |
A reference to a Domain resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_amplify as interfaces_aws_amplify } from 'aws-cdk-lib/interfaces';
const domainReference: interfaces_aws_amplify.DomainReference = {
domainArn: 'domainArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The Arn of the Domain resource. |
domainArn
Type:
string
The Arn of the Domain resource.

.NET
Go
Java
Python
TypeScript