Skip to main content

quick_setup_types

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

Overview

Namequick_setup_types
TypeResource
Idaws.ssm_quicksetup.quick_setup_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
quick_setup_type_listarrayAn array of Quick Setup types.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_quick_setup_typesselectregionReturns the available Quick Setup types.

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 the available Quick Setup types.

SELECT
quick_setup_type_list
FROM aws.ssm_quicksetup.quick_setup_types
WHERE region = '{{ region }}' -- required
;