:doc:`ServiceCatalog <../../servicecatalog>` / Paginator / ListLaunchPaths

***************
ListLaunchPaths
***************



.. py:class:: ServiceCatalog.Paginator.ListLaunchPaths

  ::

    
    paginator = client.get_paginator('list_launch_paths')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`ServiceCatalog.Client.list_launch_paths`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/servicecatalog-2015-12-10/ListLaunchPaths>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          AcceptLanguage='string',
          ProductId='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type AcceptLanguage: string
    :param AcceptLanguage: 

      The language code.

       

      
      * ``jp`` - Japanese
       
      * ``zh`` - Chinese
      

      

    
    :type ProductId: string
    :param ProductId: **[REQUIRED]** 

      The product identifier.

      

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

      
      ::

        {
            'LaunchPathSummaries': [
                {
                    'Id': 'string',
                    'ConstraintSummaries': [
                        {
                            'Type': 'string',
                            'Description': 'string'
                        },
                    ],
                    'Tags': [
                        {
                            'Key': 'string',
                            'Value': 'string'
                        },
                    ],
                    'Name': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **LaunchPathSummaries** *(list) --* 

          Information about the launch path.

          
          

          - *(dict) --* 

            Summary information about a product path for a user.

            
            

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

              The identifier of the product path.

              
            

            - **ConstraintSummaries** *(list) --* 

              The constraints on the portfolio-product relationship.

              
              

              - *(dict) --* 

                Summary information about a constraint.

                
                

                - **Type** *(string) --* 

                  The type of constraint.

                   

                  
                  * ``LAUNCH``
                   
                  * ``NOTIFICATION``
                   
                  * STACKSET
                   
                  * ``TEMPLATE``
                  

                  
                

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

                  The description of the constraint.

                  
            
          
            

            - **Tags** *(list) --* 

              The tags associated with this product path.

              
              

              - *(dict) --* 

                Information about a tag. A tag is a key-value pair. Tags are propagated to the resources created when provisioning a product.

                
                

                - **Key** *(string) --* 

                  The tag key.

                  
                

                - **Value** *(string) --* 

                  The value for this key.

                  
            
          
            

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

              The name of the portfolio that contains the product.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    