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

*******************
list_agent_runtimes
*******************



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

  

  Lists all Amazon Secure Agents in your account.

  

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


  **Request Syntax**
  ::

    response = client.list_agent_runtimes(
        maxResults=123,
        nextToken='string'
    )
    
  :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.

    

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

    
    ::

      {
          'agentRuntimes': [
              {
                  'agentRuntimeArn': 'string',
                  'agentRuntimeId': 'string',
                  'agentRuntimeVersion': 'string',
                  'agentRuntimeName': 'string',
                  'description': 'string',
                  'lastUpdatedAt': datetime(2015, 1, 1),
                  'status': 'CREATING'|'CREATE_FAILED'|'UPDATING'|'UPDATE_FAILED'|'READY'|'DELETING'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **agentRuntimes** *(list) --* 

        The list of AgentCore Runtime resources.

        
        

        - *(dict) --* 

          Contains information about an agent runtime. An agent runtime is the execution environment for a Amazon Bedrock AgentCore Agent.

          
          

          - **agentRuntimeArn** *(string) --* 

            The Amazon Resource Name (ARN) of the agent runtime.

            
          

          - **agentRuntimeId** *(string) --* 

            The unique identifier of the agent runtime.

            
          

          - **agentRuntimeVersion** *(string) --* 

            The version of the agent runtime.

            
          

          - **agentRuntimeName** *(string) --* 

            The name of the agent runtime.

            
          

          - **description** *(string) --* 

            The description of the agent runtime.

            
          

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

            The timestamp when the agent runtime was last updated.

            
          

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

            The current status of the agent runtime.

            
      
    
      

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

  