:doc:`BedrockAgentCoreControl <../../bedrock-agentcore-control>` / Client / list_code_interpreters

**********************
list_code_interpreters
**********************



.. py:method:: BedrockAgentCoreControl.Client.list_code_interpreters(**kwargs)

  

  Lists all custom code interpreters in your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListCodeInterpreters>`_  


  **Request Syntax**
  ::

    response = client.list_code_interpreters(
        maxResults=123,
        nextToken='string',
        type='SYSTEM'|'CUSTOM'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return in the response.

    

  
  :type nextToken: string
  :param nextToken: 

    A token to retrieve the next page of results.

    

  
  :type type: string
  :param type: 

    The type of code interpreters to list.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'codeInterpreterSummaries': [
              {
                  'codeInterpreterId': 'string',
                  'codeInterpreterArn': 'string',
                  'name': 'string',
                  'description': 'string',
                  'status': 'CREATING'|'CREATE_FAILED'|'READY'|'DELETING'|'DELETE_FAILED'|'DELETED',
                  'createdAt': datetime(2015, 1, 1),
                  'lastUpdatedAt': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **codeInterpreterSummaries** *(list) --* 

        The list of code interpreter summaries.

        
        

        - *(dict) --* 

          Contains summary information about a code interpreter. A code interpreter enables Amazon Bedrock AgentCore Agent to execute code.

          
          

          - **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.

            
          

          - **status** *(string) --* 

            The current status of the code interpreter.

            
          

          - **createdAt** *(datetime) --* 

            The timestamp when the code interpreter was created.

            
          

          - **lastUpdatedAt** *(datetime) --* 

            The timestamp when the code interpreter was last updated.

            
      
    
      

      - **nextToken** *(string) --* 

        A token to retrieve the next page of results.

        
  
  **Exceptions**
  
  *   :py:class:`BedrockAgentCoreControl.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`BedrockAgentCoreControl.Client.exceptions.ValidationException`

  
  *   :py:class:`BedrockAgentCoreControl.Client.exceptions.ThrottlingException`

  
  *   :py:class:`BedrockAgentCoreControl.Client.exceptions.InternalServerException`

  