AgentRuntimeAttributes
- class aws_cdk.aws_bedrock_agentcore_alpha.AgentRuntimeAttributes(*, agent_runtime_arn, agent_runtime_id, agent_runtime_name, role_arn, agent_runtime_version=None, agent_status=None, created_at=None, description=None, last_updated_at=None, security_groups=None)
Bases:
object(experimental) Attributes for importing an existing Agent Runtime.
- Parameters:
agent_runtime_arn (
str) – (experimental) The ARN of the agent runtime.agent_runtime_id (
str) – (experimental) The ID of the agent runtime.agent_runtime_name (
str) – (experimental) The name of the agent runtime.role_arn (
str) – (experimental) The IAM role ARN.agent_runtime_version (
Optional[str]) – (experimental) The version of the agent runtime When importing a runtime and this is not specified or undefined, endpoints created on this runtime will point to version “1” unless explicitly overridden. Default: - undefinedagent_status (
Optional[str]) – (experimental) The current status of the agent runtime. Default: - Status not availablecreated_at (
Optional[str]) – (experimental) The time at which the runtime was created. Default: - Creation time not availabledescription (
Optional[str]) – (experimental) The description of the agent runtime. Default: - No descriptionlast_updated_at (
Optional[str]) – (experimental) The time at which the runtime was last updated. Default: - Last update time not availablesecurity_groups (
Optional[Sequence[ISecurityGroup]]) – (experimental) The security groups for this runtime, if in a VPC. Default: - By default, the runtime is not in a VPC.
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha from aws_cdk import aws_ec2 as ec2 # security_group: ec2.SecurityGroup agent_runtime_attributes = bedrock_agentcore_alpha.AgentRuntimeAttributes( agent_runtime_arn="agentRuntimeArn", agent_runtime_id="agentRuntimeId", agent_runtime_name="agentRuntimeName", role_arn="roleArn", # the properties below are optional agent_runtime_version="agentRuntimeVersion", agent_status="agentStatus", created_at="createdAt", description="description", last_updated_at="lastUpdatedAt", security_groups=[security_group] )
Attributes
- agent_runtime_arn
(experimental) The ARN of the agent runtime.
- Stability:
experimental
- agent_runtime_id
(experimental) The ID of the agent runtime.
- Stability:
experimental
- agent_runtime_name
(experimental) The name of the agent runtime.
- Stability:
experimental
- agent_runtime_version
(experimental) The version of the agent runtime When importing a runtime and this is not specified or undefined, endpoints created on this runtime will point to version “1” unless explicitly overridden.
- Default:
undefined
- Stability:
experimental
- agent_status
(experimental) The current status of the agent runtime.
- Default:
Status not available
- Stability:
experimental
- created_at
(experimental) The time at which the runtime was created.
- Default:
Creation time not available
- Stability:
experimental
- description
(experimental) The description of the agent runtime.
- Default:
No description
- Stability:
experimental
- last_updated_at
(experimental) The time at which the runtime was last updated.
- Default:
Last update time not available
- Stability:
experimental
- role_arn
(experimental) The IAM role ARN.
- Stability:
experimental
- security_groups
(experimental) The security groups for this runtime, if in a VPC.
- Default:
By default, the runtime is not in a VPC.
- Stability:
experimental