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

*****************************
create_agent_runtime_endpoint
*****************************



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

  

  Creates an AgentCore Runtime endpoint.

  

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


  **Request Syntax**
  ::

    response = client.create_agent_runtime_endpoint(
        agentRuntimeId='string',
        name='string',
        agentRuntimeVersion='string',
        description='string',
        clientToken='string',
        tags={
            'string': 'string'
        }
    )
    
  :type agentRuntimeId: string
  :param agentRuntimeId: **[REQUIRED]** 

    The unique identifier of the AgentCore Runtime to create an endpoint for.

    

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

    The name of the AgentCore Runtime endpoint.

    

  
  :type agentRuntimeVersion: string
  :param agentRuntimeVersion: 

    The version of the AgentCore Runtime to use for the endpoint.

    

  
  :type description: string
  :param description: 

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

  
  :type tags: dict
  :param tags: 

    A map of tag keys and values to assign to the agent runtime endpoint. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


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

    
    ::

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

    

    - *(dict) --* 
      

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

        
      

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

        The unique identifier of the AgentCore Runtime.

        
      

      - **endpointName** *(string) --* 

        The name of the AgentCore Runtime endpoint.

        
      

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

        The current status of the AgentCore Runtime endpoint.

        
      

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

        The timestamp when the AgentCore Runtime endpoint was created.

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

  