recommended_action_summaries
Creates, updates, deletes, gets or lists a recommended_action_summaries resource.
Overview
| Name | recommended_action_summaries |
| Type | Resource |
| Id | aws.compute_optimizer_automation.recommended_action_summaries |
Fields
The following fields are returned by SELECT queries:
- list_recommended_action_summaries
| Name | Datatype | Description |
|---|---|---|
key | string | The grouping key used to categorize the recommended actions in this summary. |
total | object | Aggregate totals for the recommended actions in this group, including count and estimated savings. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_recommended_action_summaries | select | region | Provides a summary of recommended actions based on specified filters. Management accounts and delegated administrators can retrieve recommended actions that include associated member accounts. You can associate a member account using AssociateAccounts. |
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
- list_recommended_action_summaries
Provides a summary of recommended actions based on specified filters. Management accounts and delegated administrators can retrieve recommended actions that include associated member accounts. You can associate a member account using AssociateAccounts.
SELECT
key,
total
FROM aws.compute_optimizer_automation.recommended_action_summaries
WHERE region = '{{ region }}' -- required
;