CfnRuntimeEndpointMixinProps
- class aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnRuntimeEndpointMixinProps(*, agent_runtime_id=None, agent_runtime_version=None, description=None, name=None, tags=None)
Bases:
objectProperties for CfnRuntimeEndpointPropsMixin.
- Parameters:
agent_runtime_id (
Optional[str]) – The agent runtime ID.agent_runtime_version (
Optional[str]) – The version of the agent.description (
Optional[str]) – Contains information about an agent runtime endpoint. An agent runtime is the execution environment for a Amazon Bedrock Agent.name (
Optional[str]) – The name of the AgentCore Runtime endpoint.tags (
Optional[Mapping[str,str]]) – The tags for the AgentCore Runtime endpoint.
- See:
- 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.mixins_preview.aws_bedrockagentcore import mixins as bedrockagentcore_mixins cfn_runtime_endpoint_mixin_props = bedrockagentcore_mixins.CfnRuntimeEndpointMixinProps( agent_runtime_id="agentRuntimeId", agent_runtime_version="agentRuntimeVersion", description="description", name="name", tags={ "tags_key": "tags" } )
Attributes
- agent_runtime_id
The agent runtime ID.
- agent_runtime_version
The version of the agent.
- description
Contains information about an agent runtime endpoint.
An agent runtime is the execution environment for a Amazon Bedrock Agent.
- name
The name of the AgentCore Runtime endpoint.
- tags
The tags for the AgentCore Runtime endpoint.