:doc:`Bedrock <../../bedrock>` / Paginator / ListMarketplaceModelEndpoints

*****************************
ListMarketplaceModelEndpoints
*****************************



.. py:class:: Bedrock.Paginator.ListMarketplaceModelEndpoints

  ::

    
    paginator = client.get_paginator('list_marketplace_model_endpoints')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Bedrock.Client.list_marketplace_model_endpoints`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          modelSourceEquals='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type modelSourceEquals: string
    :param modelSourceEquals: 

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

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :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) --* 

          A token to resume pagination.

          
    