DomainAttributes

class aws_cdk.aws_opensearchservice.DomainAttributes(*, domain_arn, domain_endpoint)

Bases: object

Reference to an Amazon OpenSearch Service domain.

Parameters:
  • domain_arn (str) – The ARN of the Amazon OpenSearch Service domain.

  • domain_endpoint (str) – The domain endpoint of the Amazon OpenSearch Service domain.

ExampleMetadata:

infused

Example:

domain_arn = Fn.import_value("another-cf-stack-export-domain-arn")
domain_endpoint = Fn.import_value("another-cf-stack-export-domain-endpoint")
domain = Domain.from_domain_attributes(self, "ImportedDomain",
    domain_arn=domain_arn,
    domain_endpoint=domain_endpoint
)

Attributes

domain_arn

The ARN of the Amazon OpenSearch Service domain.

domain_endpoint

The domain endpoint of the Amazon OpenSearch Service domain.