BedrockAgentCoreControl / Client / get_code_interpreter
get_code_interpreter¶
- BedrockAgentCoreControl.Client.get_code_interpreter(**kwargs)¶
Gets information about a custom code interpreter.
See also: AWS API Documentation
Request Syntax
response = client.get_code_interpreter( codeInterpreterId='string' )
- Parameters:
codeInterpreterId (string) –
[REQUIRED]
The unique identifier of the code interpreter to retrieve.
- Return type:
dict
- Returns:
Response Syntax
{ 'codeInterpreterId': 'string', 'codeInterpreterArn': 'string', 'name': 'string', 'description': 'string', 'executionRoleArn': 'string', 'networkConfiguration': { 'networkMode': 'PUBLIC'|'SANDBOX'|'VPC', 'vpcConfig': { 'securityGroups': [ 'string', ], 'subnets': [ 'string', ], 'requireServiceS3Endpoint': True|False } }, 'status': 'CREATING'|'CREATE_FAILED'|'READY'|'DELETING'|'DELETE_FAILED'|'DELETED', 'certificates': [ { 'location': { 'secretsManager': { 'secretArn': 'string' } } }, ], 'failureReason': 'string', 'createdAt': datetime(2015, 1, 1), 'lastUpdatedAt': datetime(2015, 1, 1) }
Response Structure
(dict) –
codeInterpreterId (string) –
The unique identifier of the code interpreter.
codeInterpreterArn (string) –
The Amazon Resource Name (ARN) of the code interpreter.
name (string) –
The name of the code interpreter.
description (string) –
The description of the code interpreter.
executionRoleArn (string) –
The IAM role ARN that provides permissions for the code interpreter.
networkConfiguration (dict) –
The network configuration for a code interpreter. This structure defines how the code interpreter connects to the network.
networkMode (string) –
The network mode for the code interpreter. This field specifies how the code interpreter connects to the network.
vpcConfig (dict) –
The VPC configuration for the code interpreter. This configuration is required when the network mode is set to
VPC.securityGroups (list) –
The security groups associated with the VPC configuration.
(string) –
subnets (list) –
The subnets associated with the VPC configuration.
(string) –
requireServiceS3Endpoint (boolean) –
Note
This field applies only to Agent Runtimes. It is not applicable to Browsers or Code Interpreters.
Controls whether a service-managed Amazon S3 gateway endpoint is provisioned in the VPC network topology for the agent runtime. This gateway is used by Amazon Bedrock AgentCore Runtime to download code and container images during agent startup.
Starting May 5, 2026, Amazon Bedrock AgentCore Runtime is gradually rolling out a change to how network isolation is configured for VPC mode agents. Agent runtimes created on or after this rollout will no longer include the service-managed Amazon S3 gateway. Instead, all network access, including to Amazon S3, is governed exclusively by your VPC configuration. This field cannot be set on agent runtimes created after the rollout. Passing this field in an
UpdateAgentRuntimerequest for these agent runtimes returns aValidationException.Agent runtimes created before the rollout are not affected and continue to operate with the service-managed Amazon S3 gateway. To enforce full VPC network isolation on these existing agent runtimes, set this field to
falsevia theUpdateAgentRuntimeAPI. Before opting out, ensure your VPC provides the Amazon S3 access required for agent startup. If this field is not specified or is set totrue, the service-managed Amazon S3 gateway remains provisioned.This field is only supported in the
UpdateAgentRuntimeAPI for pre-rollout agent runtimes. Passing this field in aCreateAgentRuntimerequest returns aValidationException.
status (string) –
The current status of the code interpreter.
certificates (list) –
The list of certificates configured for the code interpreter.
(dict) –
A certificate to install in the browser or code interpreter.
location (dict) –
The location of the certificate.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
secretsManager. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBERas the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBERis as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
secretsManager (dict) –
The Amazon Web Services Secrets Manager location of the certificate.
secretArn (string) –
The ARN of the Amazon Web Services Secrets Manager secret containing the certificate.
failureReason (string) –
The reason for failure if the code interpreter is in a failed state.
createdAt (datetime) –
The timestamp when the code interpreter was created.
lastUpdatedAt (datetime) –
The timestamp when the code interpreter was last updated.
Exceptions
BedrockAgentCoreControl.Client.exceptions.ServiceQuotaExceededExceptionBedrockAgentCoreControl.Client.exceptions.AccessDeniedExceptionBedrockAgentCoreControl.Client.exceptions.ResourceNotFoundExceptionBedrockAgentCoreControl.Client.exceptions.ThrottlingExceptionBedrockAgentCoreControl.Client.exceptions.InternalServerException