:doc:`ECS <../../ecs>` / Paginator / ListServices

************
ListServices
************



.. py:class:: ECS.Paginator.ListServices

  ::

    
    paginator = client.get_paginator('list_services')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ECS.Client.list_services`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/ListServices>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          cluster='string',
          launchType='EC2'|'FARGATE'|'EXTERNAL'|'MANAGED_INSTANCES',
          schedulingStrategy='REPLICA'|'DAEMON',
          resourceManagementType='CUSTOMER'|'ECS',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type cluster: string
    :param cluster: 

      The short name or full Amazon Resource Name (ARN) of the cluster to use when filtering the ``ListServices`` results. If you do not specify a cluster, the default cluster is assumed.

      

    
    :type launchType: string
    :param launchType: 

      The launch type to use when filtering the ``ListServices`` results.

      

    
    :type schedulingStrategy: string
    :param schedulingStrategy: 

      The scheduling strategy to use when filtering the ``ListServices`` results.

      

    
    :type resourceManagementType: string
    :param resourceManagementType: 

      The resourceManagementType type to use when filtering the ``ListServices`` results.

      

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

      
      ::

        {
            'serviceArns': [
                'string',
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **serviceArns** *(list) --* 

          The list of full ARN entries for each service that's associated with the specified cluster.

          
          

          - *(string) --* 
      
        

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

          A token to resume pagination.

          
    