Interface AgentRuntimeAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AgentRuntimeAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-19T19:44:36.891Z") @Stability(Stable) public interface AgentRuntimeAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for importing an existing Agent Runtime.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrockagentcore.*;
 import software.amazon.awscdk.services.ec2.*;
 SecurityGroup securityGroup;
 AgentRuntimeAttributes agentRuntimeAttributes = AgentRuntimeAttributes.builder()
         .agentRuntimeArn("agentRuntimeArn")
         .agentRuntimeId("agentRuntimeId")
         .agentRuntimeName("agentRuntimeName")
         .roleArn("roleArn")
         // the properties below are optional
         .agentRuntimeVersion("agentRuntimeVersion")
         .agentStatus("agentStatus")
         .createdAt("createdAt")
         .description("description")
         .lastUpdatedAt("lastUpdatedAt")
         .securityGroups(List.of(securityGroup))
         .build();
 
  • Method Details

    • getAgentRuntimeArn

      @Stability(Stable) @NotNull String getAgentRuntimeArn()
      The ARN of the agent runtime.
    • getAgentRuntimeId

      @Stability(Stable) @NotNull String getAgentRuntimeId()
      The ID of the agent runtime.
    • getAgentRuntimeName

      @Stability(Stable) @NotNull String getAgentRuntimeName()
      The name of the agent runtime.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The IAM role ARN.
    • getAgentRuntimeVersion

      @Stability(Stable) @Nullable default String getAgentRuntimeVersion()
      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

    • getAgentStatus

      @Stability(Stable) @Nullable default String getAgentStatus()
      The current status of the agent runtime.

      Default: - Status not available

    • getCreatedAt

      @Stability(Stable) @Nullable default String getCreatedAt()
      The time at which the runtime was created.

      Default: - Creation time not available

    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The description of the agent runtime.

      Default: - No description

    • getLastUpdatedAt

      @Stability(Stable) @Nullable default String getLastUpdatedAt()
      The time at which the runtime was last updated.

      Default: - Last update time not available

    • getSecurityGroups

      @Stability(Stable) @Nullable default List<ISecurityGroup> getSecurityGroups()
      The security groups for this runtime, if in a VPC.

      Default: - By default, the runtime is not in a VPC.

    • builder

      @Stability(Stable) static AgentRuntimeAttributes.Builder builder()
      Returns:
      a AgentRuntimeAttributes.Builder of AgentRuntimeAttributes