Skip to main content

workload_deployment_patterns

Creates, updates, deletes, gets or lists a workload_deployment_patterns resource.

Overview

Nameworkload_deployment_patterns
TypeResource
Idaws.launch_wizard.workload_deployment_patterns

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
deployment_pattern_namestringThe name of the deployment pattern. (pattern: <code>[A-Za-z0-9][a-zA-Z0-9-]*</code>)
deployment_pattern_version_namestringThe version name of the deployment pattern. (pattern: <code>(([A-Za-z0-9][a-zA-Z0-9-]*)|(\d+.\d+.\d+))</code>)
descriptionstringThe description of the deployment pattern.
display_namestringThe display name of the deployment pattern.
specificationsarrayThe settings specified for the deployment. These settings define how to deploy and configure your resources created by the deployment. For more information about the specifications required for creating a deployment for a SAP workload, see SAP deployment specifications. To retrieve the specifications required to create a deployment for other workloads, use the GetWorkloadDeploymentPattern operation.
statusstringThe status of the deployment pattern. (ACTIVE, INACTIVE, DISABLED, DELETED)
status_messagestringThe status message of the deployment pattern.
workload_namestringThe workload name of the deployment pattern. (pattern: <code>[A-Za-z][a-zA-Z0-9-_]*</code>)
workload_version_namestringThe workload version name of the deployment pattern. (pattern: <code>(([A-Za-z0-9][a-zA-Z0-9-]*)|(\d+.\d+.\d+))</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workload_deployment_patternselectregionReturns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.
list_workload_deployment_patternsselectregionLists the workload deployment patterns for a given workload name. You can use the ListWorkloads operation to discover the available workload names.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns details for a given workload and deployment pattern, including the available specifications. You can use the ListWorkloads operation to discover the available workload names and the ListWorkloadDeploymentPatterns operation to discover the available deployment pattern names of a given workload.

SELECT
deployment_pattern_name,
deployment_pattern_version_name,
description,
display_name,
specifications,
status,
status_message,
workload_name,
workload_version_name
FROM aws.launch_wizard.workload_deployment_patterns
WHERE region = '{{ region }}' -- required
;