:doc:`FMS <../../fms>` / Paginator / ListThirdPartyFirewallFirewallPolicies

**************************************
ListThirdPartyFirewallFirewallPolicies
**************************************



.. py:class:: FMS.Paginator.ListThirdPartyFirewallFirewallPolicies

  ::

    
    paginator = client.get_paginator('list_third_party_firewall_firewall_policies')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`FMS.Client.list_third_party_firewall_firewall_policies`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/fms-2018-01-01/ListThirdPartyFirewallFirewallPolicies>`_    


    **Request Syntax**
    ::

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

      The name of the third-party firewall vendor.

      

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

      
      ::

        {
            'ThirdPartyFirewallFirewallPolicies': [
                {
                    'FirewallPolicyId': 'string',
                    'FirewallPolicyName': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ThirdPartyFirewallFirewallPolicies** *(list) --* 

          A list that contains one ``ThirdPartyFirewallFirewallPolicies`` element for each third-party firewall policies that the specified third-party firewall vendor is associated with. Each ``ThirdPartyFirewallFirewallPolicies`` element contains the firewall policy name and ID.

          
          

          - *(dict) --* 

            Configures the third-party firewall's firewall policy.

            
            

            - **FirewallPolicyId** *(string) --* 

              The ID of the specified firewall policy.

              
            

            - **FirewallPolicyName** *(string) --* 

              The name of the specified firewall policy.

              
        
      
    