Skip to main content

workloads

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

Overview

Nameworkloads
TypeResource
Idaws.launch_wizard.workloads

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
descriptionstringThe description of a workload.
display_namestringThe display name of a workload.
documentation_urlstringThe URL of a workload document.
icon_urlstringThe URL of a workload icon.
statusstringThe status of a workload. You can list deployments in the DISABLED status. (ACTIVE, INACTIVE, DISABLED, DELETED)
status_messagestringThe message about a workload's status.
workload_namestringThe name of the workload. (pattern: <code>[A-Za-z][a-zA-Z0-9-_]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workloadselectregionReturns information about a workload.
list_workloadsselectregionLists the available workload names. You can use the ListWorkloadDeploymentPatterns operation to discover the available deployment patterns for a given workload.

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 information about a workload.

SELECT
description,
display_name,
documentation_url,
icon_url,
status,
status_message,
workload_name
FROM aws.launch_wizard.workloads
WHERE region = '{{ region }}' -- required
;