nodes_summaries
Creates, updates, deletes, gets or lists a nodes_summaries resource.
Overview
| Name | nodes_summaries |
| Type | Resource |
| Id | aws.ssm.nodes_summaries |
Fields
The following fields are returned by SELECT queries:
- list_nodes_summary
| Name | Datatype | Description |
|---|---|---|
summary | object | A collection of objects reporting information about your managed nodes, such as the count of nodes by operating system. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_nodes_summary | select | region | Generates a summary of managed instance/node metadata based on the filters and aggregators you specify. Results are grouped by the input aggregator you specify. |
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_nodes_summary
Generates a summary of managed instance/node metadata based on the filters and aggregators you specify. Results are grouped by the input aggregator you specify.
SELECT
summary
FROM aws.ssm.nodes_summaries
WHERE region = '{{ region }}' -- required
;