CollectionReference
- class aws_cdk.interfaces.aws_opensearchserverless.CollectionReference(*, collection_arn, collection_id)
Bases:
objectA 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.interfaces import aws_opensearchserverless as interfaces_aws_opensearchserverless collection_reference = interfaces_aws_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.