:doc:`DeadlineCloud <../../deadline>` / Paginator / ListQueueFleetAssociations

**************************
ListQueueFleetAssociations
**************************



.. py:class:: DeadlineCloud.Paginator.ListQueueFleetAssociations

  ::

    
    paginator = client.get_paginator('list_queue_fleet_associations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`DeadlineCloud.Client.list_queue_fleet_associations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/deadline-2023-10-12/ListQueueFleetAssociations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          farmId='string',
          queueId='string',
          fleetId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type farmId: string
    :param farmId: **[REQUIRED]** 

      The farm ID for the queue-fleet association list.

      

    
    :type queueId: string
    :param queueId: 

      The queue ID for the queue-fleet association list.

      

    
    :type fleetId: string
    :param fleetId: 

      The fleet ID for the queue-fleet association list.

      

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

      
      ::

        {
            'queueFleetAssociations': [
                {
                    'queueId': 'string',
                    'fleetId': 'string',
                    'status': 'ACTIVE'|'STOP_SCHEDULING_AND_COMPLETE_TASKS'|'STOP_SCHEDULING_AND_CANCEL_TASKS'|'STOPPED',
                    'createdAt': datetime(2015, 1, 1),
                    'createdBy': 'string',
                    'updatedAt': datetime(2015, 1, 1),
                    'updatedBy': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **queueFleetAssociations** *(list) --* 

          The queue-fleet associations on the list.

          
          

          - *(dict) --* 

            The details of a queue-fleet association.

            
            

            - **queueId** *(string) --* 

              The queue ID.

              
            

            - **fleetId** *(string) --* 

              The fleet ID.

              
            

            - **status** *(string) --* 

              The status of task scheduling in the queue-fleet association.

               

              
              * ``ACTIVE``–Association is active.
               
              * ``STOP_SCHEDULING_AND_COMPLETE_TASKS``–Association has stopped scheduling new tasks and is completing current tasks.
               
              * ``STOP_SCHEDULING_AND_CANCEL_TASKS``–Association has stopped scheduling new tasks and is canceling current tasks.
               
              * ``STOPPED``–Association has been stopped.
              

              
            

            - **createdAt** *(datetime) --* 

              The date and time the resource was created.

              
            

            - **createdBy** *(string) --* 

              The user or system that created this resource.

              
            

            - **updatedAt** *(datetime) --* 

              The date and time the resource was updated.

              
            

            - **updatedBy** *(string) --* 

              The user or system that updated this resource.

              
        
      
        

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

          A token to resume pagination.

          
    