:doc:`PartnerCentralSellingAPI <../../partnercentral-selling>` / Paginator / ListSolutions

*************
ListSolutions
*************



.. py:class:: PartnerCentralSellingAPI.Paginator.ListSolutions

  ::

    
    paginator = client.get_paginator('list_solutions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`PartnerCentralSellingAPI.Client.list_solutions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/partnercentral-selling-2022-07-26/ListSolutions>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          Catalog='string',
          Sort={
              'SortOrder': 'ASCENDING'|'DESCENDING',
              'SortBy': 'Identifier'|'Name'|'Status'|'Category'|'CreatedDate'
          },
          Status=[
              'Active'|'Inactive'|'Draft',
          ],
          Identifier=[
              'string',
          ],
          Category=[
              'string',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type Catalog: string
    :param Catalog: **[REQUIRED]** 

      Specifies the catalog associated with the request. This field takes a string value from a predefined list: ``AWS`` or ``Sandbox``. The catalog determines which environment the solutions are listed in. Use ``AWS`` to list solutions in the Amazon Web Services catalog, and ``Sandbox`` to list solutions in a secure and isolated testing environment.

      

    
    :type Sort: dict
    :param Sort: 

      Object that configures sorting done on the response. Default ``Sort.SortBy`` is ``Identifier``.

      

    
      - **SortOrder** *(string) --* **[REQUIRED]** 

        Specifies the sorting order, either ``Ascending`` or ``Descending``. The default is ``Descending``.

        

      
      - **SortBy** *(string) --* **[REQUIRED]** 

        Specifies the attribute to sort by, such as ``Name``, ``CreatedDate``, or ``Status``.

        

      
    
    :type Status: list
    :param Status: 

      Filters solutions based on their status. This filter helps partners manage their solution portfolios effectively.

      

    
      - *(string) --* 

      
  
    :type Identifier: list
    :param Identifier: 

      Filters the solutions based on their unique identifier. Use this filter to retrieve specific solutions by providing the solution's identifier for accurate results.

      

    
      - *(string) --* 

      
  
    :type Category: list
    :param Category: 

      Filters the solutions based on the category to which they belong. This allows partners to search for solutions within specific categories, such as ``Software``, ``Consulting``, or ``Managed Services``.

      

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

      
      ::

        {
            'SolutionSummaries': [
                {
                    'Catalog': 'string',
                    'Id': 'string',
                    'Arn': 'string',
                    'Name': 'string',
                    'Status': 'Active'|'Inactive'|'Draft',
                    'Category': 'string',
                    'CreatedDate': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **SolutionSummaries** *(list) --* 

          An array with minimal details for solutions matching the request criteria.

          
          

          - *(dict) --* 

            Specifies minimal information for the solution offered to solve the customer's business problem.

            
            

            - **Catalog** *(string) --* 

              Specifies the catalog in which the solution is hosted, either ``AWS`` or ``Sandbox``. This helps partners differentiate between live solutions and those in testing environments.

              
            

            - **Id** *(string) --* 

              Enables the association of solutions (offerings) to opportunities.

              
            

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

              The SolutionBase structure provides essential information about a solution.

              
            

            - **Name** *(string) --* 

              Specifies the solution name.

              
            

            - **Status** *(string) --* 

              Specifies the solution's current status, which indicates its state in the system. Valid values: ``Active`` | ``Inactive`` | ``Draft``. The status helps partners and Amazon Web Services track the solution's lifecycle and availability. Filter for ``Active`` solutions for association to an opportunity.

              
            

            - **Category** *(string) --* 

              Specifies the solution category, which helps to categorize and organize the solutions partners offer. Valid values: ``Software Product`` | ``Consulting Service`` | ``Hardware Product`` | ``Communications Product`` | ``Professional Service`` | ``Managed Service`` | ``Value-Added Resale Amazon Web Services Service`` | ``Distribution Service`` | ``Training Service`` | ``Merger and Acquisition Advising Service``.

              
            

            - **CreatedDate** *(datetime) --* 

              Indicates the solution creation date. This is useful to track and audit.

              
        
      
    