:doc:`SSOAdmin <../../sso-admin>` / Paginator / ListApplicationAuthenticationMethods

************************************
ListApplicationAuthenticationMethods
************************************



.. py:class:: SSOAdmin.Paginator.ListApplicationAuthenticationMethods

  ::

    
    paginator = client.get_paginator('list_application_authentication_methods')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`SSOAdmin.Client.list_application_authentication_methods`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sso-admin-2020-07-20/ListApplicationAuthenticationMethods>`_    


    **Request Syntax**
    ::

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

      Specifies the ARN of the application with the authentication methods you want to 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.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'AuthenticationMethods': [
                {
                    'AuthenticationMethodType': 'IAM',
                    'AuthenticationMethod': {
                        'Iam': {
                            'ActorPolicy': {...}|[...]|123|123.4|'string'|True|None
                        }
                    }
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **AuthenticationMethods** *(list) --* 

          An array list of authentication methods for the specified application.

          
          

          - *(dict) --* 

            A structure that describes an authentication method and its type.

            
            

            - **AuthenticationMethodType** *(string) --* 

              The type of authentication that is used by this method.

              
            

            - **AuthenticationMethod** *(dict) --* 

              A structure that describes an authentication method. The contents of this structure is determined by the ``AuthenticationMethodType``.

              .. note::    This is a Tagged Union structure. Only one of the     following top level keys will be set: ``Iam``.     If a client receives an unknown member it will     set ``SDK_UNKNOWN_MEMBER`` as the top level key,     which maps to the name or tag of the unknown     member. The structure of ``SDK_UNKNOWN_MEMBER`` is     as follows::

                            'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}


            
              

              - **Iam** *(dict) --* 

                A structure that describes details for IAM authentication.

                
                

                - **ActorPolicy** (:ref:`document<document>`) -- 

                  An IAM policy document in JSON.

                  
            
          
        
      
    