AgentReference
- class aws_cdk.aws_bedrock.AgentReference(*, agent_arn, agent_id)
Bases:
object
A reference to a Agent resource.
- Parameters:
agent_arn (
str
) – The ARN of the Agent resource.agent_id (
str
) – The AgentId of the Agent 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_reference = bedrock.AgentReference( agent_arn="agentArn", agent_id="agentId" )
Attributes
- agent_arn
The ARN of the Agent resource.
- agent_id
The AgentId of the Agent resource.