AIAgentReference
- class aws_cdk.interfaces.aws_wisdom.AIAgentReference(*, ai_agent_arn, ai_agent_id, assistant_id)
Bases:
objectA 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.interfaces import aws_wisdom as interfaces_aws_wisdom a_iAgent_reference = interfaces_aws_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.