IndexReference
- class aws_cdk.aws_opensearchserverless.IndexReference(*, collection_endpoint, index_name)
Bases:
object
A reference to a Index resource.
- Parameters:
collection_endpoint (
str
) – The CollectionEndpoint of the Index resource.index_name (
str
) – The IndexName of the Index 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 index_reference = opensearchserverless.IndexReference( collection_endpoint="collectionEndpoint", index_name="indexName" )
Attributes
- collection_endpoint
The CollectionEndpoint of the Index resource.
- index_name
The IndexName of the Index resource.