interface DomainAttributes
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.OpenSearchService.DomainAttributes |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#DomainAttributes |
![]() | software.amazon.awscdk.services.opensearchservice.DomainAttributes |
![]() | aws_cdk.aws_opensearchservice.DomainAttributes |
![]() | aws-cdk-lib » aws_opensearchservice » DomainAttributes |
Reference to an Amazon OpenSearch Service domain.
Example
const domainArn = Fn.importValue(`another-cf-stack-export-domain-arn`);
const domainEndpoint = Fn.importValue(`another-cf-stack-export-domain-endpoint`);
const domain = Domain.fromDomainAttributes(this, 'ImportedDomain', {
domainArn,
domainEndpoint,
});
Properties
Name | Type | Description |
---|---|---|
domain | string | The ARN of the Amazon OpenSearch Service domain. |
domain | string | The domain endpoint of the Amazon OpenSearch Service domain. |
domainArn
Type:
string
The ARN of the Amazon OpenSearch Service domain.
domainEndpoint
Type:
string
The domain endpoint of the Amazon OpenSearch Service domain.