AssistantAssociationReference

class aws_cdk.aws_wisdom.AssistantAssociationReference(*, assistant_association_arn, assistant_association_id, assistant_id)

Bases: object

A reference to a AssistantAssociation resource.

Parameters:
  • assistant_association_arn (str) – The ARN of the AssistantAssociation resource.

  • assistant_association_id (str) – The AssistantAssociationId of the AssistantAssociation resource.

  • assistant_id (str) – The AssistantId of the AssistantAssociation 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_wisdom as wisdom

assistant_association_reference = wisdom.AssistantAssociationReference(
    assistant_association_arn="assistantAssociationArn",
    assistant_association_id="assistantAssociationId",
    assistant_id="assistantId"
)

Attributes

assistant_association_arn

The ARN of the AssistantAssociation resource.

assistant_association_id

The AssistantAssociationId of the AssistantAssociation resource.

assistant_id

The AssistantId of the AssistantAssociation resource.