AgentReference
- class aws_cdk.interfaces.aws_bedrock.AgentReference(*, agent_arn, agent_id)
Bases:
objectA 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.interfaces import aws_bedrock as interfaces_aws_bedrock agent_reference = interfaces_aws_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.