:doc:`Transfer <../../transfer>` / Paginator / ListWebApps

***********
ListWebApps
***********



.. py:class:: Transfer.Paginator.ListWebApps

  ::

    
    paginator = client.get_paginator('list_web_apps')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`Transfer.Client.list_web_apps`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/ListWebApps>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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**

      
      ::

        {
            'WebApps': [
                {
                    'Arn': 'string',
                    'WebAppId': 'string',
                    'AccessEndpoint': 'string',
                    'WebAppEndpoint': 'string',
                    'EndpointType': 'PUBLIC'|'VPC'
                },
            ]
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **WebApps** *(list) --* 

          Returns, for each listed web app, a structure that contains details for the web app.

          
          

          - *(dict) --* 

            a structure that contains details for the web app.

            
            

            - **Arn** *(string) --* 

              The Amazon Resource Name (ARN) for the web app.

              
            

            - **WebAppId** *(string) --* 

              The unique identifier for the web app.

              
            

            - **AccessEndpoint** *(string) --* 

              The ``AccessEndpoint`` is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.

              
            

            - **WebAppEndpoint** *(string) --* 

              The ``WebAppEndpoint`` is the unique URL for your Transfer Family web app. This is the value that you use when you configure **Origins** on CloudFront.

              
            

            - **EndpointType** *(string) --* 

              The type of endpoint hosting the web app. Valid values are ``PUBLIC`` for publicly accessible endpoints and ``VPC`` for VPC-hosted endpoints.

              
        
      
    