AIAgentReference

class aws_cdk.aws_wisdom.AIAgentReference(*, ai_agent_arn, ai_agent_id, assistant_id)

Bases: object

A reference to a AIAgent resource.

Parameters:
  • ai_agent_arn (str) – The ARN of the AIAgent resource.

  • ai_agent_id (str) – The AIAgentId of the AIAgent resource.

  • assistant_id (str) – The AssistantId of the AIAgent 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

a_iAgent_reference = wisdom.AIAgentReference(
    ai_agent_arn="aiAgentArn",
    ai_agent_id="aiAgentId",
    assistant_id="assistantId"
)

Attributes

ai_agent_arn

The ARN of the AIAgent resource.

ai_agent_id

The AIAgentId of the AIAgent resource.

assistant_id

The AssistantId of the AIAgent resource.