Interface CodeInterpreterCustomAttributes

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

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-19T19:44:37.064Z") @Stability(Stable) public interface CodeInterpreterCustomAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for specifying an imported Code Interpreter Custom.

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;
 CodeInterpreterCustomAttributes codeInterpreterCustomAttributes = CodeInterpreterCustomAttributes.builder()
         .codeInterpreterArn("codeInterpreterArn")
         .roleArn("roleArn")
         // the properties below are optional
         .createdAt("createdAt")
         .lastUpdatedAt("lastUpdatedAt")
         .securityGroups(List.of(securityGroup))
         .status("status")
         .build();
 
  • Method Details

    • getCodeInterpreterArn

      @Stability(Stable) @NotNull String getCodeInterpreterArn()
      The ARN of the agent.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The ARN of the IAM role associated to the code interpreter.
    • getCreatedAt

      @Stability(Stable) @Nullable default String getCreatedAt()
      The created timestamp of the code interpreter.

      Default: undefined - No created timestamp is provided

    • getLastUpdatedAt

      @Stability(Stable) @Nullable default String getLastUpdatedAt()
      When this code interpreter was last updated.

      Default: undefined - No last updated timestamp is provided

    • getSecurityGroups

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

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

    • getStatus

      @Stability(Stable) @Nullable default String getStatus()
      The status of the code interpreter.

      Default: undefined - No status is provided

    • builder

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