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

***************************
GetVpnConnectionDeviceTypes
***************************



.. py:class:: EC2.Paginator.GetVpnConnectionDeviceTypes

  ::

    
    paginator = client.get_paginator('get_vpn_connection_device_types')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          DryRun=True|False,
          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 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**

      
      ::

        {
            'VpnConnectionDeviceTypes': [
                {
                    'VpnConnectionDeviceTypeId': 'string',
                    'Vendor': 'string',
                    'Platform': 'string',
                    'Software': 'string'
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **VpnConnectionDeviceTypes** *(list) --* 

          List of customer gateway devices that have a sample configuration file available for use.

          
          

          - *(dict) --* 

            List of customer gateway devices that have a sample configuration file available for use. You can also see the list of device types with sample configuration files available under `Your customer gateway device <https://docs.aws.amazon.com/vpn/latest/s2svpn/your-cgw.html>`__ in the *Amazon Web Services Site-to-Site VPN User Guide*.

            
            

            - **VpnConnectionDeviceTypeId** *(string) --* 

              Customer gateway device identifier.

              
            

            - **Vendor** *(string) --* 

              Customer gateway device vendor.

              
            

            - **Platform** *(string) --* 

              Customer gateway device platform.

              
            

            - **Software** *(string) --* 

              Customer gateway device software version.

              
        
      
    