interface DomainReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SDB.DomainReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssdb#DomainReference |
Java | software.amazon.awscdk.interfaces.sdb.DomainReference |
Python | aws_cdk.interfaces.aws_sdb.DomainReference |
TypeScript | aws-cdk-lib » interfaces » aws_sdb » 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_sdb as interfaces_aws_sdb } from 'aws-cdk-lib/interfaces';
const domainReference: interfaces_aws_sdb.DomainReference = {
domainId: 'domainId',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The Id of the Domain resource. |
domainId
Type:
string
The Id of the Domain resource.

.NET
Go
Java
Python
TypeScript