service_level_objective_budget_reports
Creates, updates, deletes, gets or lists a service_level_objective_budget_reports resource.
Overview
| Name | service_level_objective_budget_reports |
| Type | Resource |
| Id | aws.application_signals.service_level_objective_budget_reports |
Fields
The following fields are returned by SELECT queries:
- batch_get_service_level_objective_budget_report
| Name | Datatype | Description |
|---|---|---|
errors | array | An array of structures, where each structure includes an error indicating that one of the requests in the array was not valid. |
reports | array | An array of structures, where each structure is one budget report. |
timestamp | string (date-time) | The date and time that the report is for. It is expressed as the number of milliseconds since Jan 1, 1970 00:00:00 UTC. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
batch_get_service_level_objective_budget_report | select | region | Use this operation to retrieve one or more service level objective (SLO) budget reports. An error budget is the amount of time or requests in an unhealthy state that your service can accumulate during an interval before your overall SLO budget health is breached and the SLO is considered to be unmet. For example, an SLO with a threshold of 99.95% and a monthly interval translates to an error budget of 21.9 minutes of downtime in a 30-day month. Budget reports include a health indicator, the attainment value, and remaining budget. For more information about SLO error budgets, see SLO concepts. |
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
- batch_get_service_level_objective_budget_report
Use this operation to retrieve one or more service level objective (SLO) budget reports. An error budget is the amount of time or requests in an unhealthy state that your service can accumulate during an interval before your overall SLO budget health is breached and the SLO is considered to be unmet. For example, an SLO with a threshold of 99.95% and a monthly interval translates to an error budget of 21.9 minutes of downtime in a 30-day month. Budget reports include a health indicator, the attainment value, and remaining budget. For more information about SLO error budgets, see SLO concepts.
SELECT
errors,
reports,
timestamp
FROM aws.application_signals.service_level_objective_budget_reports
WHERE region = '{{ region }}' -- required
;