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

*****************************
update_agent_runtime_endpoint
*****************************



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

  

  Updates an existing Amazon Bedrock AgentCore Runtime endpoint.

  

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


  **Request Syntax**
  ::

    response = client.update_agent_runtime_endpoint(
        agentRuntimeId='string',
        endpointName='string',
        agentRuntimeVersion='string',
        description='string',
        clientToken='string'
    )
    
  :type agentRuntimeId: string
  :param agentRuntimeId: **[REQUIRED]** 

    The unique identifier of the AgentCore Runtime associated with the endpoint.

    

  
  :type endpointName: string
  :param endpointName: **[REQUIRED]** 

    The name of the AgentCore Runtime endpoint to update.

    

  
  :type agentRuntimeVersion: string
  :param agentRuntimeVersion: 

    The updated version of the AgentCore Runtime for the endpoint.

    

  
  :type description: string
  :param description: 

    The updated description of the AgentCore Runtime endpoint.

    

  
  :type clientToken: string
  :param clientToken: 

    A unique, case-sensitive identifier to ensure idempotency of the request.

    This field is autopopulated if not provided.

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

    
    ::

      {
          'liveVersion': 'string',
          'targetVersion': 'string',
          'agentRuntimeEndpointArn': 'string',
          'agentRuntimeArn': 'string',
          'status': 'CREATING'|'CREATE_FAILED'|'UPDATING'|'UPDATE_FAILED'|'READY'|'DELETING',
          'createdAt': datetime(2015, 1, 1),
          'lastUpdatedAt': datetime(2015, 1, 1)
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **liveVersion** *(string) --* 

        The currently deployed version of the AgentCore Runtime on the endpoint.

        
      

      - **targetVersion** *(string) --* 

        The target version of the AgentCore Runtime for the endpoint.

        
      

      - **agentRuntimeEndpointArn** *(string) --* 

        The Amazon Resource Name (ARN) of the AgentCore Runtime endpoint.

        
      

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

        The Amazon Resource Name (ARN) of the AgentCore Runtime.

        
      

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

        The current status of the updated AgentCore Runtime endpoint.

        
      

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

        The timestamp when the AgentCore Runtime endpoint was created.

        
      

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

        The timestamp when the AgentCore Runtime endpoint was last updated.

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

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

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

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

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

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

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

  