IndexReference

class aws_cdk.aws_qbusiness.IndexReference(*, application_id, index_arn, index_id)

Bases: object

A reference to a Index resource.

Parameters:
  • application_id (str) – The ApplicationId of the Index resource.

  • index_arn (str) – The ARN of the Index resource.

  • index_id (str) – The IndexId 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_qbusiness as qbusiness

index_reference = qbusiness.IndexReference(
    application_id="applicationId",
    index_arn="indexArn",
    index_id="indexId"
)

Attributes

application_id

The ApplicationId of the Index resource.

index_arn

The ARN of the Index resource.

index_id

The IndexId of the Index resource.