Skip to content

Get Code Interpreter

bedrockagentcorecontrol_get_code_interpreter R Documentation

Gets information about a custom code interpreter

Description

Gets information about a custom code interpreter.

Usage

bedrockagentcorecontrol_get_code_interpreter(codeInterpreterId)

Arguments

codeInterpreterId

[required] The unique identifier of the code interpreter to retrieve.

Value

A list with the following syntax:

list(
  codeInterpreterId = "string",
  codeInterpreterArn = "string",
  name = "string",
  description = "string",
  executionRoleArn = "string",
  networkConfiguration = list(
    networkMode = "PUBLIC"|"SANDBOX"|"VPC",
    vpcConfig = list(
      securityGroups = list(
        "string"
      ),
      subnets = list(
        "string"
      ),
      requireServiceS3Endpoint = TRUE|FALSE
    )
  ),
  status = "CREATING"|"CREATE_FAILED"|"READY"|"DELETING"|"DELETE_FAILED"|"DELETED",
  certificates = list(
    list(
      location = list(
        secretsManager = list(
          secretArn = "string"
        )
      )
    )
  ),
  failureReason = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_code_interpreter(
  codeInterpreterId = "string"
)