ops_summaries
Creates, updates, deletes, gets or lists an ops_summaries resource.
Overview
| Name | ops_summaries |
| Type | Resource |
| Id | aws.ssm.ops_summaries |
Fields
The following fields are returned by SELECT queries:
- get_ops_summary
| Name | Datatype | Description |
|---|---|---|
data | object | The data returned by the query. |
id | string | The query ID. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_ops_summary | select | region | View a summary of operations metadata (OpsData) based on specified filters and aggregators. OpsData can include information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as well as information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services Systems Manager Explorer. |
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_ops_summary
View a summary of operations metadata (OpsData) based on specified filters and aggregators. OpsData can include information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as well as information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services Systems Manager Explorer.
SELECT
data,
id
FROM aws.ssm.ops_summaries
WHERE region = '{{ region }}' -- required
;