ServiceLevelObjectiveGoalArgs

data class ServiceLevelObjectiveGoalArgs(val attainmentGoal: Output<Double>? = null, val interval: Output<ServiceLevelObjectiveIntervalArgs>? = null, val warningThreshold: Output<Double>? = null) : ConvertibleToJava<ServiceLevelObjectiveGoalArgs>

A structure that contains the attributes that determine the goal of the SLO. This includes the time period for evaluation and the attainment threshold.

Constructors

Link copied to clipboard
constructor(attainmentGoal: Output<Double>? = null, interval: Output<ServiceLevelObjectiveIntervalArgs>? = null, warningThreshold: Output<Double>? = null)

Properties

Link copied to clipboard
val attainmentGoal: Output<Double>? = null

The threshold that determines if the goal is being met. An attainment goal is the ratio of good periods that meet the threshold requirements to the total periods within the interval. For example, an attainment goal of 99.9% means that within your interval, you are targeting 99.9% of the periods to be in healthy state. If you omit this parameter, 99 is used to represent 99% as the attainment goal.

Link copied to clipboard

The time period used to evaluate the SLO. It can be either a calendar interval or rolling interval. If you omit this parameter, a rolling interval of 7 days is used.

Link copied to clipboard
val warningThreshold: Output<Double>? = null

The percentage of remaining budget over total budget that you want to get warnings for. If you omit this parameter, the default of 50.0 is used.

Functions

Link copied to clipboard
open override fun toJava(): ServiceLevelObjectiveGoalArgs