Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.awsnative.cloudwatch.kotlin
import com.pulumi.awsnative.cloudwatch.AlarmArgs.builder
import com.pulumi.awsnative.cloudwatch.kotlin.inputs.AlarmDimensionArgs
import com.pulumi.awsnative.cloudwatch.kotlin.inputs.AlarmDimensionArgsBuilder
import com.pulumi.awsnative.cloudwatch.kotlin.inputs.AlarmMetricDataQueryArgs
import com.pulumi.awsnative.cloudwatch.kotlin.inputs.AlarmMetricDataQueryArgsBuilder
import com.pulumi.awsnative.kotlin.inputs.TagArgs
import com.pulumi.awsnative.kotlin.inputs.TagArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Double
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The ``AWS::CloudWatch::Alarm`` type specifies an alarm and associates it with the specified metric or metric math expression.
* When this operation creates an alarm, the alarm state is immediately set to ``INSUFFICIENT_DATA``. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed.
* When you update an existing alarm, its state is left unchanged, but the update completely overwrites the previous configuration of the alarm.
* @property actionsEnabled Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
* @property alarmActions The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*.
* @property alarmDescription The description of the alarm.
* @property alarmName The name of the alarm. If you don't specify a name, CFN generates a unique physical ID and uses that ID for the alarm name.
* If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
* @property comparisonOperator The arithmetic operation to use when comparing the specified statistic and threshold. The specified statistic value is used as the first operand.
* @property datapointsToAlarm The number of datapoints that must be breaching to trigger the alarm. This is used only if you are setting an "M out of N" alarm. In that case, this value is the M, and the value that you set for ``EvaluationPeriods`` is the N value. For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
* If you omit this parameter, CW uses the same value here that you set for ``EvaluationPeriods``, and the alarm goes to alarm state if that many consecutive periods are breaching.
* @property dimensions The dimensions for the metric associated with the alarm. For an alarm based on a math expression, you can't specify ``Dimensions``. Instead, you use ``Metrics``.
* @property evaluateLowSampleCountPercentile Used only for alarms based on percentiles. If ``ignore``, the alarm state does not change during periods with too few data points to be statistically significant. If ``evaluate`` or this parameter is not used, the alarm is always evaluated and possibly changes state no matter how many data points are available.
* @property evaluationPeriods The number of periods over which data is compared to the specified threshold. If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies that number. If you are setting an "M out of N" alarm, this value is the N, and ``DatapointsToAlarm`` is the M.
* For more information, see [Evaluating an Alarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarm-evaluation) in the *User Guide*.
* @property extendedStatistic The percentile statistic for the metric associated with the alarm. Specify a value between p0.0 and p100.
* For an alarm based on a metric, you must specify either ``Statistic`` or ``ExtendedStatistic`` but not both.
* For an alarm based on a math expression, you can't specify ``ExtendedStatistic``. Instead, you use ``Metrics``.
* @property insufficientDataActions The actions to execute when this alarm transitions to the ``INSUFFICIENT_DATA`` state from any other state. Each action is specified as an Amazon Resource Name (ARN).
* @property metricName The name of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you use ``Metrics`` instead and you can't specify ``MetricName``.
* @property metrics An array that enables you to create an alarm based on the result of a metric math expression. Each item in the array either retrieves a metric or performs a math expression.
* If you specify the ``Metrics`` parameter, you cannot specify ``MetricName``, ``Dimensions``, ``Period``, ``Namespace``, ``Statistic``, ``ExtendedStatistic``, or ``Unit``.
* @property namespace The namespace of the metric associated with the alarm. This is required for an alarm based on a metric. For an alarm based on a math expression, you can't specify ``Namespace`` and you use ``Metrics`` instead.
* For a list of namespaces for metrics from AWS services, see [Services That Publish Metrics.](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/aws-services-cloudwatch-metrics.html)
* @property okActions The actions to execute when this alarm transitions to the ``OK`` state from any other state. Each action is specified as an Amazon Resource Name (ARN).
* @property period The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 30, 60, and any multiple of 60.
* For an alarm based on a math expression, you can't specify ``Period``, and instead you use the ``Metrics`` parameter.
* *Minimum:* 10
* @property statistic The statistic for the metric associated with the alarm, other than percentile. For percentile statistics, use ``ExtendedStatistic``.
* For an alarm based on a metric, you must specify either ``Statistic`` or ``ExtendedStatistic`` but not both.
* For an alarm based on a math expression, you can't specify ``Statistic``. Instead, you use ``Metrics``.
* @property tags A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm. To be able to associate tags with the alarm when you create the alarm, you must have the ``cloudwatch:TagResource`` permission.
* Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.
* @property threshold The value to compare with the specified statistic.
* @property thresholdMetricId In an alarm based on an anomaly detection model, this is the ID of the ``ANOMALY_DETECTION_BAND`` function used as the threshold for the alarm.
* @property treatMissingData Sets how this alarm is to handle missing data points. Valid values are ``breaching``, ``notBreaching``, ``ignore``, and ``missing``. For more information, see [Configuring How Alarms Treat Missing Data](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html#alarms-and-missing-data) in the *Amazon User Guide*.
* If you omit this parameter, the default behavior of ``missing`` is used.
* @property unit The unit of the metric associated with the alarm. Specify this only if you are creating an alarm based on a single metric. Do not specify this if you are specifying a ``Metrics`` array.
* You can specify the following values: Seconds, Microseconds, Milliseconds, Bytes, Kilobytes, Megabytes, Gigabytes, Terabytes, Bits, Kilobits, Megabits, Gigabits, Terabits, Percent, Count, Bytes/Second, Kilobytes/Second, Megabytes/Second, Gigabytes/Second, Terabytes/Second, Bits/Second, Kilobits/Second, Megabits/Second, Gigabits/Second, Terabits/Second, Count/Second, or None.
*/
public data class AlarmArgs(
public val actionsEnabled: Output? = null,
public val alarmActions: Output>? = null,
public val alarmDescription: Output? = null,
public val alarmName: Output? = null,
public val comparisonOperator: Output? = null,
public val datapointsToAlarm: Output? = null,
public val dimensions: Output>? = null,
public val evaluateLowSampleCountPercentile: Output? = null,
public val evaluationPeriods: Output? = null,
public val extendedStatistic: Output? = null,
public val insufficientDataActions: Output>? = null,
public val metricName: Output? = null,
public val metrics: Output>? = null,
public val namespace: Output? = null,
public val okActions: Output>? = null,
public val period: Output? = null,
public val statistic: Output? = null,
public val tags: Output>? = null,
public val threshold: Output? = null,
public val thresholdMetricId: Output? = null,
public val treatMissingData: Output? = null,
public val unit: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.awsnative.cloudwatch.AlarmArgs =
com.pulumi.awsnative.cloudwatch.AlarmArgs.builder()
.actionsEnabled(actionsEnabled?.applyValue({ args0 -> args0 }))
.alarmActions(alarmActions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.alarmDescription(alarmDescription?.applyValue({ args0 -> args0 }))
.alarmName(alarmName?.applyValue({ args0 -> args0 }))
.comparisonOperator(comparisonOperator?.applyValue({ args0 -> args0 }))
.datapointsToAlarm(datapointsToAlarm?.applyValue({ args0 -> args0 }))
.dimensions(
dimensions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.evaluateLowSampleCountPercentile(evaluateLowSampleCountPercentile?.applyValue({ args0 -> args0 }))
.evaluationPeriods(evaluationPeriods?.applyValue({ args0 -> args0 }))
.extendedStatistic(extendedStatistic?.applyValue({ args0 -> args0 }))
.insufficientDataActions(
insufficientDataActions?.applyValue({ args0 ->
args0.map({ args0 ->
args0
})
}),
)
.metricName(metricName?.applyValue({ args0 -> args0 }))
.metrics(
metrics?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.namespace(namespace?.applyValue({ args0 -> args0 }))
.okActions(okActions?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.period(period?.applyValue({ args0 -> args0 }))
.statistic(statistic?.applyValue({ args0 -> args0 }))
.tags(tags?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.threshold(threshold?.applyValue({ args0 -> args0 }))
.thresholdMetricId(thresholdMetricId?.applyValue({ args0 -> args0 }))
.treatMissingData(treatMissingData?.applyValue({ args0 -> args0 }))
.unit(unit?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AlarmArgs].
*/
@PulumiTagMarker
public class AlarmArgsBuilder internal constructor() {
private var actionsEnabled: Output? = null
private var alarmActions: Output>? = null
private var alarmDescription: Output? = null
private var alarmName: Output? = null
private var comparisonOperator: Output? = null
private var datapointsToAlarm: Output? = null
private var dimensions: Output>? = null
private var evaluateLowSampleCountPercentile: Output? = null
private var evaluationPeriods: Output? = null
private var extendedStatistic: Output? = null
private var insufficientDataActions: Output>? = null
private var metricName: Output? = null
private var metrics: Output>? = null
private var namespace: Output? = null
private var okActions: Output>? = null
private var period: Output? = null
private var statistic: Output? = null
private var tags: Output>? = null
private var threshold: Output? = null
private var thresholdMetricId: Output? = null
private var treatMissingData: Output? = null
private var unit: Output? = null
/**
* @param value Indicates whether actions should be executed during any changes to the alarm state. The default is TRUE.
*/
@JvmName("gdemgdsxakglgvcs")
public suspend fun actionsEnabled(`value`: Output) {
this.actionsEnabled = value
}
/**
* @param value The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*.
*/
@JvmName("gceapgophljfdwup")
public suspend fun alarmActions(`value`: Output>) {
this.alarmActions = value
}
@JvmName("daqmtamjmxftcktq")
public suspend fun alarmActions(vararg values: Output) {
this.alarmActions = Output.all(values.asList())
}
/**
* @param values The list of actions to execute when this alarm transitions into an ALARM state from any other state. Specify each action as an Amazon Resource Name (ARN). For more information about creating alarms and the actions that you can specify, see [PutMetricAlarm](https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_PutMetricAlarm.html) in the *API Reference*.
*/
@JvmName("lvtogsifxcackueb")
public suspend fun alarmActions(values: List