# DatadogAPIClient::V1::SLOCorrectionUpdateRequestAttributes ## Properties | Name | Type | Description | Notes | | --------------- | ----------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------- | | **category** | [**SLOCorrectionCategory**](SLOCorrectionCategory.md) | | [optional] | | **description** | **String** | Description of the correction being made. | [optional] | | **duration** | **Integer** | Length of time (in seconds) for a specified `rrule` recurring SLO correction. | [optional] | | **\_end** | **Integer** | Ending time of the correction in epoch seconds. | [optional] | | **rrule** | **String** | The recurrence rules as defined in the iCalendar RFC 5545. The supported rules for SLO corrections are `FREQ`, `INTERVAL`, `COUNT` and `UNTIL`. | [optional] | | **start** | **Integer** | Starting time of the correction in epoch seconds. | [optional] | | **timezone** | **String** | The timezone to display in the UI for the correction times (defaults to \"UTC\"). | [optional] | ## Example ```ruby require 'datadog_api_client/v1' instance = DatadogAPIClient::V1::SLOCorrectionUpdateRequestAttributes.new( category: null, description: null, duration: 3600, _end: 1600000000, rrule: FREQ=DAILY;INTERVAL=10;COUNT=5, start: 1600000000, timezone: UTC ) ```