:doc:`LaunchWizard <../../launch-wizard>` / Client / list_workload_deployment_patterns

*********************************
list_workload_deployment_patterns
*********************************



.. py:method:: LaunchWizard.Client.list_workload_deployment_patterns(**kwargs)

  

  Lists the workload deployment patterns for a given workload name. You can use the `ListWorkloads <https://docs.aws.amazon.com/launchwizard/latest/APIReference/API_ListWorkloads.html>`__ operation to discover the available workload names.

  

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


  **Request Syntax**
  ::

    response = client.list_workload_deployment_patterns(
        workloadName='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type workloadName: string
  :param workloadName: **[REQUIRED]** 

    The name of the workload.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output.

    

  
  :type nextToken: string
  :param nextToken: 

    The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

    

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

    
    ::

      {
          'workloadDeploymentPatterns': [
              {
                  'workloadName': 'string',
                  'deploymentPatternName': 'string',
                  'workloadVersionName': 'string',
                  'deploymentPatternVersionName': 'string',
                  'displayName': 'string',
                  'description': 'string',
                  'status': 'ACTIVE'|'INACTIVE'|'DISABLED'|'DELETED',
                  'statusMessage': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **workloadDeploymentPatterns** *(list) --* 

        Describes the workload deployment patterns.

        
        

        - *(dict) --* 

          Describes a workload deployment pattern.

          
          

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

            The name of the workload.

            
          

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

            The name of a workload deployment pattern.

            
          

          - **workloadVersionName** *(string) --* 

            The name of the workload deployment pattern version.

            
          

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

            The version name of a workload deployment pattern.

            
          

          - **displayName** *(string) --* 

            The display name of a workload deployment pattern.

            
          

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

            The description of a workload deployment pattern.

            
          

          - **status** *(string) --* 

            The status of a workload deployment pattern.

            
          

          - **statusMessage** *(string) --* 

            A message about a workload deployment pattern's status.

            
      
    
      

      - **nextToken** *(string) --* 

        The token to include in another request to get the next page of items. This value is ``null`` when there are no more items to return.

        
  
  **Exceptions**
  
  *   :py:class:`LaunchWizard.Client.exceptions.InternalServerException`

  
  *   :py:class:`LaunchWizard.Client.exceptions.ValidationException`

  
  *   :py:class:`LaunchWizard.Client.exceptions.ResourceNotFoundException`

  