CollectionReference

class aws_cdk.aws_opensearchserverless.CollectionReference(*, collection_arn, collection_id)

Bases: object

A reference to a Collection resource.

Parameters:
  • collection_arn (str) – The ARN of the Collection resource.

  • collection_id (str) – The Id of the Collection resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_opensearchserverless as opensearchserverless

collection_reference = opensearchserverless.CollectionReference(
    collection_arn="collectionArn",
    collection_id="collectionId"
)

Attributes

collection_arn

The ARN of the Collection resource.

collection_id

The Id of the Collection resource.