Package-level declarations

Types

Link copied to clipboard
data class GetServiceLevelObjectivePlainArgs(val arn: String) : ConvertibleToJava<GetServiceLevelObjectivePlainArgs>
data class ServiceLevelObjectiveCalendarIntervalArgs(val duration: Output<Int>, val durationUnit: Output<ServiceLevelObjectiveDurationUnit>, val startTime: Output<Int>) : ConvertibleToJava<ServiceLevelObjectiveCalendarIntervalArgs>

If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.

Link copied to clipboard
data class ServiceLevelObjectiveDimensionArgs(val name: Output<String>, val value: Output<String>) : ConvertibleToJava<ServiceLevelObjectiveDimensionArgs>

A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish InstanceId as a dimension name, and the actual instance ID as the value for that dimension. You can assign up to 30 dimensions to a metric.

Link copied to clipboard
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.

Link copied to clipboard
data class ServiceLevelObjectiveIntervalArgs(val calendarInterval: Output<ServiceLevelObjectiveCalendarIntervalArgs>? = null, val rollingInterval: Output<ServiceLevelObjectiveRollingIntervalArgs>? = null) : ConvertibleToJava<ServiceLevelObjectiveIntervalArgs>

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
data class ServiceLevelObjectiveMetricArgs(val dimensions: Output<List<ServiceLevelObjectiveDimensionArgs>>? = null, val metricName: Output<String>? = null, val namespace: Output<String>? = null) : ConvertibleToJava<ServiceLevelObjectiveMetricArgs>

This structure defines the metric used for a service level indicator, including the metric name, namespace, and dimensions.

Link copied to clipboard
data class ServiceLevelObjectiveMetricDataQueryArgs(val accountId: Output<String>? = null, val expression: Output<String>? = null, val id: Output<String>, val metricStat: Output<ServiceLevelObjectiveMetricStatArgs>? = null, val returnData: Output<Boolean>? = null) : ConvertibleToJava<ServiceLevelObjectiveMetricDataQueryArgs>

Use this structure to define a metric or metric math expression that you want to use as for a service level objective. Each MetricDataQuery in the MetricDataQueries array specifies either a metric to retrieve, or a metric math expression to be performed on retrieved metrics. A single MetricDataQueries array can include as many as 20 MetricDataQuery structures in the array. The 20 structures can include as many as 10 structures that contain a MetricStat parameter to retrieve a metric, and as many as 10 structures that contain the Expression parameter to perform a math expression. Of those Expression structures, exactly one must have true as the value for ReturnData. The result of this expression used for the SLO.

Link copied to clipboard
data class ServiceLevelObjectiveMetricStatArgs(val metric: Output<ServiceLevelObjectiveMetricArgs>, val period: Output<Int>, val stat: Output<String>, val unit: Output<String>? = null) : ConvertibleToJava<ServiceLevelObjectiveMetricStatArgs>

A metric to be used directly for the SLO, or to be used in the math expression that will be used for the SLO. Within one MetricDataQuery object, you must specify either Expression or MetricStat but not both.

data class ServiceLevelObjectiveMonitoredRequestCountMetricArgs(val badCountMetric: Output<List<ServiceLevelObjectiveMetricDataQueryArgs>>? = null, val goodCountMetric: Output<List<ServiceLevelObjectiveMetricDataQueryArgs>>? = null) : ConvertibleToJava<ServiceLevelObjectiveMonitoredRequestCountMetricArgs>

This structure defines the metric that is used as the "good request" or "bad request" value for a request-based SLO. This value observed for the metric defined in TotalRequestCountMetric is divided by the number found for MonitoredRequestCountMetric to determine the percentage of successful requests that this SLO tracks.

Link copied to clipboard
data class ServiceLevelObjectiveRequestBasedSliArgs(val comparisonOperator: Output<ServiceLevelObjectiveRequestBasedSliComparisonOperator>? = null, val metricThreshold: Output<Double>? = null, val requestBasedSliMetric: Output<ServiceLevelObjectiveRequestBasedSliMetricArgs>) : ConvertibleToJava<ServiceLevelObjectiveRequestBasedSliArgs>

This structure contains information about the performance metric that a request-based SLO monitors.

data class ServiceLevelObjectiveRequestBasedSliMetricArgs(val keyAttributes: Output<Map<String, String>>? = null, val metricType: Output<ServiceLevelObjectiveRequestBasedSliMetricMetricType>? = null, val monitoredRequestCountMetric: Output<ServiceLevelObjectiveMonitoredRequestCountMetricArgs>? = null, val operationName: Output<String>? = null, val totalRequestCountMetric: Output<List<ServiceLevelObjectiveMetricDataQueryArgs>>? = null) : ConvertibleToJava<ServiceLevelObjectiveRequestBasedSliMetricArgs>

This structure contains the information about the metric that is used for a request-based SLO.

Link copied to clipboard
data class ServiceLevelObjectiveRollingIntervalArgs(val duration: Output<Int>, val durationUnit: Output<ServiceLevelObjectiveDurationUnit>) : ConvertibleToJava<ServiceLevelObjectiveRollingIntervalArgs>

If the interval is a calendar interval, this structure contains the interval specifications.

Link copied to clipboard
data class ServiceLevelObjectiveSliArgs(val comparisonOperator: Output<ServiceLevelObjectiveSliComparisonOperator>, val metricThreshold: Output<Double>, val sliMetric: Output<ServiceLevelObjectiveSliMetricArgs>) : ConvertibleToJava<ServiceLevelObjectiveSliArgs>

This structure contains information about the performance metric that an SLO monitors.

Link copied to clipboard
data class ServiceLevelObjectiveSliMetricArgs(val keyAttributes: Output<Map<String, String>>? = null, val metricDataQueries: Output<List<ServiceLevelObjectiveMetricDataQueryArgs>>? = null, val metricType: Output<ServiceLevelObjectiveSliMetricMetricType>? = null, val operationName: Output<String>? = null, val periodSeconds: Output<Int>? = null, val statistic: Output<String>? = null) : ConvertibleToJava<ServiceLevelObjectiveSliMetricArgs>

A structure that contains information about the metric that the SLO monitors.