LaunchWizard / Client / list_deployment_pattern_versions

list_deployment_pattern_versions

LaunchWizard.Client.list_deployment_pattern_versions(**kwargs)

Lists the deployment pattern versions.

See also: AWS API Documentation

Request Syntax

response = client.list_deployment_pattern_versions(
    workloadName='string',
    deploymentPatternName='string',
    maxResults=123,
    nextToken='string',
    filters=[
        {
            'name': 'updateFromVersion',
            'values': [
                'string',
            ]
        },
    ]
)
Parameters:
  • workloadName (string) –

    [REQUIRED]

    The name of the workload. You can use the ListWorkloads operation to discover supported values for this parameter.

  • deploymentPatternName (string) –

    [REQUIRED]

    The name of the deployment pattern. You can use the ListWorkloadDeploymentPatterns operation to discover supported values for this parameter.

  • maxResults (integer) – The maximum number of deployment pattern versions to list.

  • nextToken (string) – The token for the next set of results.

  • filters (list) –

    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) –

Return type:

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) –

      The token for the next set of results.

Exceptions

  • LaunchWizard.Client.exceptions.InternalServerException

  • LaunchWizard.Client.exceptions.ValidationException

  • LaunchWizard.Client.exceptions.ResourceNotFoundException