CollectionIndexReference

class aws_cdk.interfaces.aws_opensearchserverless.CollectionIndexReference(*, collection_index_id, index_name)

Bases: object

A reference to a CollectionIndex resource.

Parameters:
  • collection_index_id (str) – The Id of the CollectionIndex resource.

  • index_name (str) – The IndexName of the CollectionIndex 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_opensearchserverless

collection_index_reference = interfaces_opensearchserverless.CollectionIndexReference(
    collection_index_id="collectionIndexId",
    index_name="indexName"
)

Attributes

collection_index_id

The Id of the CollectionIndex resource.

index_name

The IndexName of the CollectionIndex resource.