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

**************************
ListStudioLifecycleConfigs
**************************



.. py:class:: SageMaker.Paginator.ListStudioLifecycleConfigs

  ::

    
    paginator = client.get_paginator('list_studio_lifecycle_configs')

  
  

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

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

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


    **Request Syntax**
    ::

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

      A string in the Lifecycle Configuration name. This filter returns only Lifecycle Configurations whose name contains the specified string.

      

    
    :type AppTypeEquals: string
    :param AppTypeEquals: 

      A parameter to search for the App Type to which the Lifecycle Configuration is attached.

      

    
    :type CreationTimeBefore: datetime
    :param CreationTimeBefore: 

      A filter that returns only Lifecycle Configurations created on or before the specified time.

      

    
    :type CreationTimeAfter: datetime
    :param CreationTimeAfter: 

      A filter that returns only Lifecycle Configurations created on or after the specified time.

      

    
    :type ModifiedTimeBefore: datetime
    :param ModifiedTimeBefore: 

      A filter that returns only Lifecycle Configurations modified before the specified time.

      

    
    :type ModifiedTimeAfter: datetime
    :param ModifiedTimeAfter: 

      A filter that returns only Lifecycle Configurations modified after the specified time.

      

    
    :type SortBy: string
    :param SortBy: 

      The property used to sort results. The default value is CreationTime.

      

    
    :type SortOrder: string
    :param SortOrder: 

      The sort order. The default value is Descending.

      

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

      
      ::

        {
            'StudioLifecycleConfigs': [
                {
                    'StudioLifecycleConfigArn': 'string',
                    'StudioLifecycleConfigName': 'string',
                    'CreationTime': datetime(2015, 1, 1),
                    'LastModifiedTime': datetime(2015, 1, 1),
                    'StudioLifecycleConfigAppType': 'JupyterServer'|'KernelGateway'|'CodeEditor'|'JupyterLab'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **StudioLifecycleConfigs** *(list) --* 

          A list of Lifecycle Configurations and their properties.

          
          

          - *(dict) --* 

            Details of the Amazon SageMaker AI Studio Lifecycle Configuration.

            
            

            - **StudioLifecycleConfigArn** *(string) --* 

              The Amazon Resource Name (ARN) of the Lifecycle Configuration.

              
            

            - **StudioLifecycleConfigName** *(string) --* 

              The name of the Amazon SageMaker AI Studio Lifecycle Configuration.

              
            

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

              The creation time of the Amazon SageMaker AI Studio Lifecycle Configuration.

              
            

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

              This value is equivalent to CreationTime because Amazon SageMaker AI Studio Lifecycle Configurations are immutable.

              
            

            - **StudioLifecycleConfigAppType** *(string) --* 

              The App type to which the Lifecycle Configuration is attached.

              
        
      
    