Skip to main content

profile_templates

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

Overview

Nameprofile_templates
TypeResource
Idaws.wellarchitected.profile_templates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The date and time when the profile template was created.
template_namestringThe name of the profile template.
template_questionsarrayProfile template questions.
updated_atstring (date-time)The date and time when the profile template was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_profile_templateselectregionGet profile template.

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

Get profile template.

SELECT
created_at,
template_name,
template_questions,
updated_at
FROM aws.wellarchitected.profile_templates
WHERE region = '{{ region }}' -- required
;