AgentAliasReference
- class aws_cdk.aws_bedrock.AgentAliasReference(*, agent_alias_arn, agent_alias_id, agent_id)
Bases:
object
A reference to a AgentAlias resource.
- Parameters:
agent_alias_arn (
str
) – The ARN of the AgentAlias resource.agent_alias_id (
str
) – The AgentAliasId of the AgentAlias resource.agent_id (
str
) – The AgentId of the AgentAlias 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_bedrock as bedrock agent_alias_reference = bedrock.AgentAliasReference( agent_alias_arn="agentAliasArn", agent_alias_id="agentAliasId", agent_id="agentId" )
Attributes
- agent_alias_arn
The ARN of the AgentAlias resource.
- agent_alias_id
The AgentAliasId of the AgentAlias resource.
- agent_id
The AgentId of the AgentAlias resource.