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

******************************
list_cluster_scheduler_configs
******************************



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

  

  List the cluster policy configurations.

  

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


  **Request Syntax**
  ::

    response = client.list_cluster_scheduler_configs(
        CreatedAfter=datetime(2015, 1, 1),
        CreatedBefore=datetime(2015, 1, 1),
        NameContains='string',
        ClusterArn='string',
        Status='Creating'|'CreateFailed'|'CreateRollbackFailed'|'Created'|'Updating'|'UpdateFailed'|'UpdateRollbackFailed'|'Updated'|'Deleting'|'DeleteFailed'|'DeleteRollbackFailed'|'Deleted',
        SortBy='Name'|'CreationTime'|'Status',
        SortOrder='Ascending'|'Descending',
        NextToken='string',
        MaxResults=123
    )
    
  :type CreatedAfter: datetime
  :param CreatedAfter: 

    Filter for after this creation time. The input for this parameter is a Unix timestamp. To convert a date and time into a Unix timestamp, see `EpochConverter <https://www.epochconverter.com/>`__.

    

  
  :type CreatedBefore: datetime
  :param CreatedBefore: 

    Filter for before this creation time. The input for this parameter is a Unix timestamp. To convert a date and time into a Unix timestamp, see `EpochConverter <https://www.epochconverter.com/>`__.

    

  
  :type NameContains: string
  :param NameContains: 

    Filter for name containing this string.

    

  
  :type ClusterArn: string
  :param ClusterArn: 

    Filter for ARN of the cluster.

    

  
  :type Status: string
  :param Status: 

    Filter for status.

    

  
  :type SortBy: string
  :param SortBy: 

    Filter for sorting the list by a given value. For example, sort by name, creation time, or status.

    

  
  :type SortOrder: string
  :param SortOrder: 

    The order of the list. By default, listed in ``Descending`` order according to by ``SortBy``. To change the list order, you can specify ``SortOrder`` to be ``Ascending``.

    

  
  :type NextToken: string
  :param NextToken: 

    If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of cluster policies to list.

    

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

    
    ::

      {
          'ClusterSchedulerConfigSummaries': [
              {
                  'ClusterSchedulerConfigArn': 'string',
                  'ClusterSchedulerConfigId': 'string',
                  'ClusterSchedulerConfigVersion': 123,
                  'Name': 'string',
                  'CreationTime': datetime(2015, 1, 1),
                  'LastModifiedTime': datetime(2015, 1, 1),
                  'Status': 'Creating'|'CreateFailed'|'CreateRollbackFailed'|'Created'|'Updating'|'UpdateFailed'|'UpdateRollbackFailed'|'Updated'|'Deleting'|'DeleteFailed'|'DeleteRollbackFailed'|'Deleted',
                  'ClusterArn': 'string'
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ClusterSchedulerConfigSummaries** *(list) --* 

        Summaries of the cluster policies.

        
        

        - *(dict) --* 

          Summary of the cluster policy.

          
          

          - **ClusterSchedulerConfigArn** *(string) --* 

            ARN of the cluster policy.

            
          

          - **ClusterSchedulerConfigId** *(string) --* 

            ID of the cluster policy.

            
          

          - **ClusterSchedulerConfigVersion** *(integer) --* 

            Version of the cluster policy.

            
          

          - **Name** *(string) --* 

            Name of the cluster policy.

            
          

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

            Creation time of the cluster policy.

            
          

          - **LastModifiedTime** *(datetime) --* 

            Last modified time of the cluster policy.

            
          

          - **Status** *(string) --* 

            Status of the cluster policy.

            
          

          - **ClusterArn** *(string) --* 

            ARN of the cluster.

            
      
    
      

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

        If the previous response was truncated, you will receive this token. Use it in your next request to receive the next set of results.

        
  