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:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_opensearchservice as opensearchservice domain_attributes = opensearchservice.DomainAttributes( domain_arn="domainArn", domain_endpoint="domainEndpoint" )
Attributes
- domain_arn
The ARN of the Amazon OpenSearch Service domain.
- domain_endpoint
The domain endpoint of the Amazon OpenSearch Service domain.