:doc:`SageMaker <../../sagemaker>` / Paginator / ListEndpointConfigs

*******************
ListEndpointConfigs
*******************



.. py:class:: SageMaker.Paginator.ListEndpointConfigs

  ::

    
    paginator = client.get_paginator('list_endpoint_configs')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`SageMaker.Client.list_endpoint_configs`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ListEndpointConfigs>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          SortBy='Name'|'CreationTime',
          SortOrder='Ascending'|'Descending',
          NameContains='string',
          CreationTimeBefore=datetime(2015, 1, 1),
          CreationTimeAfter=datetime(2015, 1, 1),
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type SortBy: string
    :param SortBy: 

      The field to sort results by. The default is ``CreationTime``.

      

    
    :type SortOrder: string
    :param SortOrder: 

      The sort order for results. The default is ``Descending``.

      

    
    :type NameContains: string
    :param NameContains: 

      A string in the endpoint configuration name. This filter returns only endpoint configurations whose name contains the specified string.

      

    
    :type CreationTimeBefore: datetime
    :param CreationTimeBefore: 

      A filter that returns only endpoint configurations created before the specified time (timestamp).

      

    
    :type CreationTimeAfter: datetime
    :param CreationTimeAfter: 

      A filter that returns only endpoint configurations with a creation time greater than or equal to the specified time (timestamp).

      

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

      
      ::

        {
            'EndpointConfigs': [
                {
                    'EndpointConfigName': 'string',
                    'EndpointConfigArn': 'string',
                    'CreationTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **EndpointConfigs** *(list) --* 

          An array of endpoint configurations.

          
          

          - *(dict) --* 

            Provides summary information for an endpoint configuration.

            
            

            - **EndpointConfigName** *(string) --* 

              The name of the endpoint configuration.

              
            

            - **EndpointConfigArn** *(string) --* 

              The Amazon Resource Name (ARN) of the endpoint configuration.

              
            

            - **CreationTime** *(datetime) --* 

              A timestamp that shows when the endpoint configuration was created.

              
        
      
    