:doc:`Bedrock <../../bedrock>` / Client / list_marketplace_model_endpoints

********************************
list_marketplace_model_endpoints
********************************



.. py:method:: Bedrock.Client.list_marketplace_model_endpoints(**kwargs)

  

  Lists the endpoints for models from Amazon Bedrock Marketplace in your Amazon Web Services account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/bedrock-2023-04-20/ListMarketplaceModelEndpoints>`_  


  **Request Syntax**
  ::

    response = client.list_marketplace_model_endpoints(
        maxResults=123,
        nextToken='string',
        modelSourceEquals='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return in a single call. If more results are available, the operation returns a ``NextToken`` value.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next set of results. You receive this token from a previous ``ListMarketplaceModelEndpoints`` call.

    

  
  :type modelSourceEquals: string
  :param modelSourceEquals: 

    If specified, only endpoints for the given model source identifier are returned.

    

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

    
    ::

      {
          'marketplaceModelEndpoints': [
              {
                  'endpointArn': 'string',
                  'modelSourceIdentifier': 'string',
                  'status': 'REGISTERED'|'INCOMPATIBLE_ENDPOINT',
                  'statusMessage': 'string',
                  'createdAt': datetime(2015, 1, 1),
                  'updatedAt': datetime(2015, 1, 1)
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **marketplaceModelEndpoints** *(list) --* 

        An array of endpoint summaries.

        
        

        - *(dict) --* 

          Provides a summary of an endpoint for a model from Amazon Bedrock Marketplace.

          
          

          - **endpointArn** *(string) --* 

            The Amazon Resource Name (ARN) of the endpoint.

            
          

          - **modelSourceIdentifier** *(string) --* 

            The ARN of the model from Amazon Bedrock Marketplace that is deployed on this endpoint.

            
          

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

            The overall status of the endpoint in Amazon Bedrock Marketplace.

            
          

          - **statusMessage** *(string) --* 

            Additional information about the overall status, if available.

            
          

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

            The timestamp when the endpoint was created.

            
          

          - **updatedAt** *(datetime) --* 

            The timestamp when the endpoint was last updated.

            
      
    
      

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

        The token for the next set of results. Use this token to get the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`Bedrock.Client.exceptions.ResourceNotFoundException`

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

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

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

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

  