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

********************
delete_agent_runtime
********************



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

  

  Deletes an Amazon Bedrock AgentCore Runtime.

  

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


  **Request Syntax**
  ::

    response = client.delete_agent_runtime(
        agentRuntimeId='string',
        clientToken='string'
    )
    
  :type agentRuntimeId: string
  :param agentRuntimeId: **[REQUIRED]** 

    The unique identifier of the AgentCore Runtime to delete.

    

  
  :type clientToken: string
  :param clientToken: 

    A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, the service ignores the request but does not return an error.

    This field is autopopulated if not provided.

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

    
    ::

      {
          'status': 'CREATING'|'CREATE_FAILED'|'UPDATING'|'UPDATE_FAILED'|'READY'|'DELETING',
          'agentRuntimeId': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The current status of the AgentCore Runtime deletion.

        
      

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

        The unique identifier of the AgentCore Runtime.

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

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

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

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

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

  