IndexReference
- class aws_cdk.aws_kendra.IndexReference(*, index_arn, index_id)
Bases:
object
A reference to a Index resource.
- Parameters:
index_arn (
str
) – The ARN of the Index resource.index_id (
str
) – The Id 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_kendra as kendra index_reference = kendra.IndexReference( index_arn="indexArn", index_id="indexId" )
Attributes
- index_arn
The ARN of the Index resource.
- index_id
The Id of the Index resource.