:doc:`SageMaker <../../sagemaker>` / Client / list_endpoint_configs

*********************
list_endpoint_configs
*********************



.. py:method:: SageMaker.Client.list_endpoint_configs(**kwargs)

  

  Lists endpoint configurations.

  

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


  **Request Syntax**
  ::

    response = client.list_endpoint_configs(
        SortBy='Name'|'CreationTime',
        SortOrder='Ascending'|'Descending',
        NextToken='string',
        MaxResults=123,
        NameContains='string',
        CreationTimeBefore=datetime(2015, 1, 1),
        CreationTimeAfter=datetime(2015, 1, 1)
    )
    
  :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 NextToken: string
  :param NextToken: 

    If the result of the previous ``ListEndpointConfig`` request was truncated, the response includes a ``NextToken``. To retrieve the next set of endpoint configurations, use the token in the next request.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of training jobs to return in the response.

    

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

    

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

    
    ::

      {
          'EndpointConfigs': [
              {
                  'EndpointConfigName': 'string',
                  'EndpointConfigArn': 'string',
                  'CreationTime': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **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.

            
      
    
      

      - **NextToken** *(string) --* 

        If the response is truncated, SageMaker returns this token. To retrieve the next set of endpoint configurations, use it in the subsequent request

        
  