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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCodeInterpreterCustomAttributesstatic final classAn implementation forCodeInterpreterCustomAttributes -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The ARN of the agent.default StringThe created timestamp of the code interpreter.default StringWhen this code interpreter was last updated.The ARN of the IAM role associated to the code interpreter.default List<ISecurityGroup> The security groups for this code interpreter, if in a VPC.default StringThe status of the code interpreter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCodeInterpreterArn
The ARN of the agent. -
getRoleArn
The ARN of the IAM role associated to the code interpreter. -
getCreatedAt
The created timestamp of the code interpreter.Default: undefined - No created timestamp is provided
-
getLastUpdatedAt
When this code interpreter was last updated.Default: undefined - No last updated timestamp is provided
-
getSecurityGroups
The security groups for this code interpreter, if in a VPC.Default: - By default, the code interpreter is not in a VPC.
-
getStatus
The status of the code interpreter.Default: undefined - No status is provided
-
builder
-