:doc:`LaunchWizard <../../launch-wizard>` / Paginator / ListDeploymentPatternVersions

*****************************
ListDeploymentPatternVersions
*****************************



.. py:class:: LaunchWizard.Paginator.ListDeploymentPatternVersions

  ::

    
    paginator = client.get_paginator('list_deployment_pattern_versions')

  
  

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

    Creates an iterator that will paginate through responses from :py:meth:`LaunchWizard.Client.list_deployment_pattern_versions`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/launch-wizard-2018-05-10/ListDeploymentPatternVersions>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          workloadName='string',
          deploymentPatternName='string',
          filters=[
              {
                  'name': 'updateFromVersion',
                  'values': [
                      'string',
                  ]
              },
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type workloadName: string
    :param workloadName: **[REQUIRED]** 

      The name of the workload. You can use the `ListWorkloads <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html>`__ operation to discover supported values for this parameter.

      

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

      The name of the deployment pattern. You can use the `ListWorkloadDeploymentPatterns <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloadDeploymentPatterns.html>`__ operation to discover supported values for this parameter.

      

    
    :type filters: list
    :param filters: 

      Filters to apply when listing deployment pattern versions.

      

    
      - *(dict) --* 

        A filter for deployment pattern versions. Use this filter to specify criteria for querying deployment pattern versions in Launch Wizard.

        

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

          The name of the filter attribute. Specifies which attribute to filter on when querying deployment pattern versions.

          

        
        - **values** *(list) --* **[REQUIRED]** 

          The values to filter by. Contains the specific values to match against when filtering deployment pattern versions.

          

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

      
      ::

        {
            'deploymentPatternVersions': [
                {
                    'deploymentPatternVersionName': 'string',
                    'description': 'string',
                    'documentationUrl': 'string',
                    'workloadName': 'string',
                    'deploymentPatternName': 'string'
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **deploymentPatternVersions** *(list) --* 

          The deployment pattern versions.

          
          

          - *(dict) --* 

            Describes a deployment pattern version summary.

            
            

            - **deploymentPatternVersionName** *(string) --* 

              The name of the deployment pattern version.

              
            

            - **description** *(string) --* 

              The description of the deployment pattern version.

              
            

            - **documentationUrl** *(string) --* 

              The URL of the documentation for the deployment pattern version.

              
            

            - **workloadName** *(string) --* 

              The name of the workload.

              
            

            - **deploymentPatternName** *(string) --* 

              The name of the deployment pattern.

              
        
      
        

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

          A token to resume pagination.

          
    