aws-cdk-lib.aws_opensearchservice.DomainAttributes

interface DomainAttributes

LanguageType name
.NETAmazon.CDK.AWS.OpenSearchService.DomainAttributes
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopensearchservice#DomainAttributes
Javasoftware.amazon.awscdk.services.opensearchservice.DomainAttributes
Pythonaws_cdk.aws_opensearchservice.DomainAttributes
TypeScript (source)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

NameTypeDescription
domainArnstringThe ARN of the Amazon OpenSearch Service domain.
domainEndpointstringThe 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.