Skip to content

List Code Interpreters

bedrockagentcorecontrol_list_code_interpreters R Documentation

Lists all custom code interpreters in your account

Description

Lists all custom code interpreters in your account.

Usage

bedrockagentcorecontrol_list_code_interpreters(maxResults, nextToken,
  type)

Arguments

maxResults

The maximum number of results to return in the response.

nextToken

A token to retrieve the next page of results.

type

The type of code interpreters to list.

Value

A list with the following syntax:

list(
  codeInterpreterSummaries = list(
    list(
      codeInterpreterId = "string",
      codeInterpreterArn = "string",
      name = "string",
      description = "string",
      status = "CREATING"|"CREATE_FAILED"|"READY"|"DELETING"|"DELETE_FAILED"|"DELETED",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_code_interpreters(
  maxResults = 123,
  nextToken = "string",
  type = "SYSTEM"|"CUSTOM"
)