CfnRuntimeEndpointProps
- class aws_cdk.aws_bedrockagentcore.CfnRuntimeEndpointProps(*, agent_runtime_id, name, agent_runtime_version=None, description=None, tags=None)
Bases:
object
Properties for defining a
CfnRuntimeEndpoint
.- Parameters:
agent_runtime_id (
str
) – The ID of the parent Agent Runtime.name (
str
)agent_runtime_version (
Optional
[str
])description (
Optional
[str
])tags (
Optional
[Mapping
[str
,str
]]) – A map of tag keys and values.
- 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 import aws_bedrockagentcore as bedrockagentcore cfn_runtime_endpoint_props = bedrockagentcore.CfnRuntimeEndpointProps( agent_runtime_id="agentRuntimeId", name="name", # the properties below are optional agent_runtime_version="agentRuntimeVersion", description="description", tags={ "tags_key": "tags" } )
Attributes
- agent_runtime_id
The ID of the parent Agent Runtime.
- agent_runtime_version
-
- Type:
see
- description
-
- Type:
see
- name
-
- Type:
see
- tags
A map of tag keys and values.