AlarmMetricStatArgs

data class AlarmMetricStatArgs(val metric: Output<AlarmMetricArgs>, val period: Output<Int>, val stat: Output<String>, val unit: Output<String>? = null) : ConvertibleToJava<AlarmMetricStatArgs>

This structure defines the metric to be returned, along with the statistics, period, and units.

Constructors

Link copied to clipboard
fun AlarmMetricStatArgs(metric: Output<AlarmMetricArgs>, period: Output<Int>, stat: Output<String>, unit: Output<String>? = null)

Functions

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

Properties

Link copied to clipboard
val metric: Output<AlarmMetricArgs>

The metric to return, including the metric name, namespace, and dimensions.

Link copied to clipboard
val period: Output<Int>

The granularity, in seconds, of the returned data points.

Link copied to clipboard
val stat: Output<String>

The statistic to return.

Link copied to clipboard
val unit: Output<String>? = null

The unit to use for the returned data points.