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

************************
ListApplicationProviders
************************



.. py:class:: SSOAdmin.Paginator.ListApplicationProviders

  ::

    
    paginator = client.get_paginator('list_application_providers')

  
  

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

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

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


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

      
      ::

        {
            'ApplicationProviders': [
                {
                    'ApplicationProviderArn': 'string',
                    'FederationProtocol': 'SAML'|'OAUTH',
                    'DisplayData': {
                        'DisplayName': 'string',
                        'IconUrl': 'string',
                        'Description': 'string'
                    },
                    'ResourceServerConfig': {
                        'Scopes': {
                            'string': {
                                'LongDescription': 'string',
                                'DetailedTitle': 'string'
                            }
                        }
                    }
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **ApplicationProviders** *(list) --* 

          An array list of structures that describe application providers.

          
          

          - *(dict) --* 

            A structure that describes a provider that can be used to connect an Amazon Web Services managed application or customer managed application to IAM Identity Center.

            
            

            - **ApplicationProviderArn** *(string) --* 

              The ARN of the application provider.

              
            

            - **FederationProtocol** *(string) --* 

              The protocol that the application provider uses to perform federation.

              
            

            - **DisplayData** *(dict) --* 

              A structure that describes how IAM Identity Center represents the application provider in the portal.

              
              

              - **DisplayName** *(string) --* 

                The name of the application provider that appears in the portal.

                
              

              - **IconUrl** *(string) --* 

                A URL that points to an icon that represents the application provider.

                
              

              - **Description** *(string) --* 

                The description of the application provider that appears in the portal.

                
          
            

            - **ResourceServerConfig** *(dict) --* 

              A structure that describes the application provider's resource server.

              
              

              - **Scopes** *(dict) --* 

                A list of the IAM Identity Center access scopes that are associated with this resource server.

                
                

                - *(string) --* 
                  

                  - *(dict) --* 

                    A structure that describes details for an IAM Identity Center access scope that is associated with a resource server.

                    
                    

                    - **LongDescription** *(string) --* 

                      The description of an access scope for a resource server.

                      
                    

                    - **DetailedTitle** *(string) --* 

                      The title of an access scope for a resource server.

                      
                
            
          
          
        
      
    