AIAgentVersionReference
- class aws_cdk.aws_wisdom.AIAgentVersionReference(*, ai_agent_id, assistant_id, version_number)
Bases:
object
A reference to a AIAgentVersion resource.
- Parameters:
ai_agent_id (
str
) – The AIAgentId of the AIAgentVersion resource.assistant_id (
str
) – The AssistantId of the AIAgentVersion resource.version_number (
str
) – The VersionNumber of the AIAgentVersion 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_version_reference = wisdom.AIAgentVersionReference( ai_agent_id="aiAgentId", assistant_id="assistantId", version_number="versionNumber" )
Attributes
- ai_agent_id
The AIAgentId of the AIAgentVersion resource.
- assistant_id
The AssistantId of the AIAgentVersion resource.
- version_number
The VersionNumber of the AIAgentVersion resource.