:doc:`CloudFront <../../cloudfront>` / Paginator / ListInvalidationsForDistributionTenant

**************************************
ListInvalidationsForDistributionTenant
**************************************



.. py:class:: CloudFront.Paginator.ListInvalidationsForDistributionTenant

  ::

    
    paginator = client.get_paginator('list_invalidations_for_distribution_tenant')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`CloudFront.Client.list_invalidations_for_distribution_tenant`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cloudfront-2020-05-31/ListInvalidationsForDistributionTenant>`_    


    **Request Syntax**
    ::

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

      The ID of the distribution tenant.

      

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

      
      ::

        {
            'InvalidationList': {
                'Marker': 'string',
                'NextMarker': 'string',
                'MaxItems': 123,
                'IsTruncated': True|False,
                'Quantity': 123,
                'Items': [
                    {
                        'Id': 'string',
                        'CreateTime': datetime(2015, 1, 1),
                        'Status': 'string'
                    },
                ]
            },
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **InvalidationList** *(dict) --* 

          The ``InvalidationList`` complex type describes the list of invalidation objects. For more information about invalidation, see `Invalidating Objects (Web Distributions Only) <https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html>`__ in the *Amazon CloudFront Developer Guide*.

          
          

          - **Marker** *(string) --* 

            The value that you provided for the ``Marker`` request parameter.

            
          

          - **NextMarker** *(string) --* 

            If ``IsTruncated`` is ``true``, this element is present and contains the value that you can use for the ``Marker`` request parameter to continue listing your invalidation batches where they left off.

            
          

          - **MaxItems** *(integer) --* 

            The value that you provided for the ``MaxItems`` request parameter.

            
          

          - **IsTruncated** *(boolean) --* 

            A flag that indicates whether more invalidation batch requests remain to be listed. If your results were truncated, you can make a follow-up pagination request using the ``Marker`` request parameter to retrieve more invalidation batches in the list.

            
          

          - **Quantity** *(integer) --* 

            The number of invalidation batches that were created by the current Amazon Web Services account.

            
          

          - **Items** *(list) --* 

            A complex type that contains one ``InvalidationSummary`` element for each invalidation batch created by the current Amazon Web Services account.

            
            

            - *(dict) --* 

              A summary of an invalidation request.

              
              

              - **Id** *(string) --* 

                The unique ID for an invalidation request.

                
              

              - **CreateTime** *(datetime) --* 

                The time that an invalidation request was created.

                
              

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

                The status of an invalidation request.

                
          
        
      
        

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

          A token to resume pagination.

          
    