profile_templates
Creates, updates, deletes, gets or lists a profile_templates resource.
Overview
| Name | profile_templates |
| Type | Resource |
| Id | aws.wellarchitected.profile_templates |
Fields
The following fields are returned by SELECT queries:
- get_profile_template
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The date and time when the profile template was created. |
template_name | string | The name of the profile template. |
template_questions | array | Profile template questions. |
updated_at | string (date-time) | The date and time when the profile template was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_profile_template | select | region | Get 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_profile_template
Get profile template.
SELECT
created_at,
template_name,
template_questions,
updated_at
FROM aws.wellarchitected.profile_templates
WHERE region = '{{ region }}' -- required
;