:doc:`EC2 <../../ec2>` / Paginator / GetManagedPrefixListAssociations

********************************
GetManagedPrefixListAssociations
********************************



.. py:class:: EC2.Paginator.GetManagedPrefixListAssociations

  ::

    
    paginator = client.get_paginator('get_managed_prefix_list_associations')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`EC2.Client.get_managed_prefix_list_associations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetManagedPrefixListAssociations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          DryRun=True|False,
          PrefixListId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type DryRun: boolean
    :param DryRun: 

      Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ``DryRunOperation``. Otherwise, it is ``UnauthorizedOperation``.

      

    
    :type PrefixListId: string
    :param PrefixListId: **[REQUIRED]** 

      The ID of the prefix 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**

      
      ::

        {
            'PrefixListAssociations': [
                {
                    'ResourceId': 'string',
                    'ResourceOwner': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **PrefixListAssociations** *(list) --* 

          Information about the associations.

          
          

          - *(dict) --* 

            Describes the resource with which a prefix list is associated.

            
            

            - **ResourceId** *(string) --* 

              The ID of the resource.

              
            

            - **ResourceOwner** *(string) --* 

              The owner of the resource.

              
        
      
    