1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub use crate::operation::put_alarm::_put_alarm_output::PutAlarmOutputBuilder;
pub use crate::operation::put_alarm::_put_alarm_input::PutAlarmInputBuilder;
impl PutAlarmInputBuilder {
/// Sends a request with this input using the given client.
pub async fn send_with(
self,
client: &crate::Client,
) -> ::std::result::Result<
crate::operation::put_alarm::PutAlarmOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::put_alarm::PutAlarmError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let mut fluent_builder = client.put_alarm();
fluent_builder.inner = self;
fluent_builder.send().await
}
}
/// Fluent builder constructing a request to `PutAlarm`.
///
/// <p>Creates or updates an alarm, and associates it with the specified metric.</p>
/// <p>An alarm is used to monitor a single metric for one of your resources. When a metric condition is met, the alarm can notify you by email, SMS text message, and a banner displayed on the Amazon Lightsail console. For more information, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-alarms">Alarms in Amazon Lightsail</a>.</p>
/// <p>When this action creates an alarm, the alarm state is immediately set to <code>INSUFFICIENT_DATA</code>. The alarm is then evaluated and its state is set appropriately. Any actions associated with the new state are then executed.</p>
/// <p>When you update an existing alarm, its state is left unchanged, but the update completely overwrites the previous configuration of the alarm. The alarm is then evaluated with the updated configuration.</p>
#[derive(::std::clone::Clone, ::std::fmt::Debug)]
pub struct PutAlarmFluentBuilder {
handle: ::std::sync::Arc<crate::client::Handle>,
inner: crate::operation::put_alarm::builders::PutAlarmInputBuilder,
config_override: ::std::option::Option<crate::config::Builder>,
}
impl crate::client::customize::internal::CustomizableSend<crate::operation::put_alarm::PutAlarmOutput, crate::operation::put_alarm::PutAlarmError>
for PutAlarmFluentBuilder
{
fn send(
self,
config_override: crate::config::Builder,
) -> crate::client::customize::internal::BoxFuture<
crate::client::customize::internal::SendResult<crate::operation::put_alarm::PutAlarmOutput, crate::operation::put_alarm::PutAlarmError>,
> {
::std::boxed::Box::pin(async move { self.config_override(config_override).send().await })
}
}
impl PutAlarmFluentBuilder {
/// Creates a new `PutAlarm`.
pub(crate) fn new(handle: ::std::sync::Arc<crate::client::Handle>) -> Self {
Self {
handle,
inner: ::std::default::Default::default(),
config_override: ::std::option::Option::None,
}
}
/// Access the PutAlarm as a reference.
pub fn as_input(&self) -> &crate::operation::put_alarm::builders::PutAlarmInputBuilder {
&self.inner
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> ::std::result::Result<
crate::operation::put_alarm::PutAlarmOutput,
::aws_smithy_runtime_api::client::result::SdkError<
crate::operation::put_alarm::PutAlarmError,
::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
>,
> {
let input = self
.inner
.build()
.map_err(::aws_smithy_runtime_api::client::result::SdkError::construction_failure)?;
let runtime_plugins = crate::operation::put_alarm::PutAlarm::operation_runtime_plugins(
self.handle.runtime_plugins.clone(),
&self.handle.conf,
self.config_override,
);
crate::operation::put_alarm::PutAlarm::orchestrate(&runtime_plugins, input).await
}
/// Consumes this builder, creating a customizable operation that can be modified before being sent.
pub fn customize(
self,
) -> crate::client::customize::CustomizableOperation<crate::operation::put_alarm::PutAlarmOutput, crate::operation::put_alarm::PutAlarmError, Self>
{
crate::client::customize::CustomizableOperation::new(self)
}
pub(crate) fn config_override(mut self, config_override: impl Into<crate::config::Builder>) -> Self {
self.set_config_override(Some(config_override.into()));
self
}
pub(crate) fn set_config_override(&mut self, config_override: Option<crate::config::Builder>) -> &mut Self {
self.config_override = config_override;
self
}
/// <p>The name for the alarm. Specify the name of an existing alarm to update, and overwrite the previous configuration of the alarm.</p>
pub fn alarm_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.alarm_name(input.into());
self
}
/// <p>The name for the alarm. Specify the name of an existing alarm to update, and overwrite the previous configuration of the alarm.</p>
pub fn set_alarm_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_alarm_name(input);
self
}
/// <p>The name for the alarm. Specify the name of an existing alarm to update, and overwrite the previous configuration of the alarm.</p>
pub fn get_alarm_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_alarm_name()
}
/// <p>The name of the metric to associate with the alarm.</p>
/// <p>You can configure up to two alarms per metric.</p>
/// <p>The following metrics are available for each resource type:</p>
/// <ul>
/// <li> <p> <b>Instances</b>: <code>BurstCapacityPercentage</code>, <code>BurstCapacityTime</code>, <code>CPUUtilization</code>, <code>NetworkIn</code>, <code>NetworkOut</code>, <code>StatusCheckFailed</code>, <code>StatusCheckFailed_Instance</code>, and <code>StatusCheckFailed_System</code>.</p> </li>
/// <li> <p> <b>Load balancers</b>: <code>ClientTLSNegotiationErrorCount</code>, <code>HealthyHostCount</code>, <code>UnhealthyHostCount</code>, <code>HTTPCode_LB_4XX_Count</code>, <code>HTTPCode_LB_5XX_Count</code>, <code>HTTPCode_Instance_2XX_Count</code>, <code>HTTPCode_Instance_3XX_Count</code>, <code>HTTPCode_Instance_4XX_Count</code>, <code>HTTPCode_Instance_5XX_Count</code>, <code>InstanceResponseTime</code>, <code>RejectedConnectionCount</code>, and <code>RequestCount</code>.</p> </li>
/// <li> <p> <b>Relational databases</b>: <code>CPUUtilization</code>, <code>DatabaseConnections</code>, <code>DiskQueueDepth</code>, <code>FreeStorageSpace</code>, <code>NetworkReceiveThroughput</code>, and <code>NetworkTransmitThroughput</code>.</p> </li>
/// </ul>
/// <p>For more information about these metrics, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-resource-health-metrics#available-metrics">Metrics available in Lightsail</a>.</p>
pub fn metric_name(mut self, input: crate::types::MetricName) -> Self {
self.inner = self.inner.metric_name(input);
self
}
/// <p>The name of the metric to associate with the alarm.</p>
/// <p>You can configure up to two alarms per metric.</p>
/// <p>The following metrics are available for each resource type:</p>
/// <ul>
/// <li> <p> <b>Instances</b>: <code>BurstCapacityPercentage</code>, <code>BurstCapacityTime</code>, <code>CPUUtilization</code>, <code>NetworkIn</code>, <code>NetworkOut</code>, <code>StatusCheckFailed</code>, <code>StatusCheckFailed_Instance</code>, and <code>StatusCheckFailed_System</code>.</p> </li>
/// <li> <p> <b>Load balancers</b>: <code>ClientTLSNegotiationErrorCount</code>, <code>HealthyHostCount</code>, <code>UnhealthyHostCount</code>, <code>HTTPCode_LB_4XX_Count</code>, <code>HTTPCode_LB_5XX_Count</code>, <code>HTTPCode_Instance_2XX_Count</code>, <code>HTTPCode_Instance_3XX_Count</code>, <code>HTTPCode_Instance_4XX_Count</code>, <code>HTTPCode_Instance_5XX_Count</code>, <code>InstanceResponseTime</code>, <code>RejectedConnectionCount</code>, and <code>RequestCount</code>.</p> </li>
/// <li> <p> <b>Relational databases</b>: <code>CPUUtilization</code>, <code>DatabaseConnections</code>, <code>DiskQueueDepth</code>, <code>FreeStorageSpace</code>, <code>NetworkReceiveThroughput</code>, and <code>NetworkTransmitThroughput</code>.</p> </li>
/// </ul>
/// <p>For more information about these metrics, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-resource-health-metrics#available-metrics">Metrics available in Lightsail</a>.</p>
pub fn set_metric_name(mut self, input: ::std::option::Option<crate::types::MetricName>) -> Self {
self.inner = self.inner.set_metric_name(input);
self
}
/// <p>The name of the metric to associate with the alarm.</p>
/// <p>You can configure up to two alarms per metric.</p>
/// <p>The following metrics are available for each resource type:</p>
/// <ul>
/// <li> <p> <b>Instances</b>: <code>BurstCapacityPercentage</code>, <code>BurstCapacityTime</code>, <code>CPUUtilization</code>, <code>NetworkIn</code>, <code>NetworkOut</code>, <code>StatusCheckFailed</code>, <code>StatusCheckFailed_Instance</code>, and <code>StatusCheckFailed_System</code>.</p> </li>
/// <li> <p> <b>Load balancers</b>: <code>ClientTLSNegotiationErrorCount</code>, <code>HealthyHostCount</code>, <code>UnhealthyHostCount</code>, <code>HTTPCode_LB_4XX_Count</code>, <code>HTTPCode_LB_5XX_Count</code>, <code>HTTPCode_Instance_2XX_Count</code>, <code>HTTPCode_Instance_3XX_Count</code>, <code>HTTPCode_Instance_4XX_Count</code>, <code>HTTPCode_Instance_5XX_Count</code>, <code>InstanceResponseTime</code>, <code>RejectedConnectionCount</code>, and <code>RequestCount</code>.</p> </li>
/// <li> <p> <b>Relational databases</b>: <code>CPUUtilization</code>, <code>DatabaseConnections</code>, <code>DiskQueueDepth</code>, <code>FreeStorageSpace</code>, <code>NetworkReceiveThroughput</code>, and <code>NetworkTransmitThroughput</code>.</p> </li>
/// </ul>
/// <p>For more information about these metrics, see <a href="https://lightsail.aws.amazon.com/ls/docs/en_us/articles/amazon-lightsail-resource-health-metrics#available-metrics">Metrics available in Lightsail</a>.</p>
pub fn get_metric_name(&self) -> &::std::option::Option<crate::types::MetricName> {
self.inner.get_metric_name()
}
/// <p>The name of the Lightsail resource that will be monitored.</p>
/// <p>Instances, load balancers, and relational databases are the only Lightsail resources that can currently be monitored by alarms.</p>
pub fn monitored_resource_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.inner = self.inner.monitored_resource_name(input.into());
self
}
/// <p>The name of the Lightsail resource that will be monitored.</p>
/// <p>Instances, load balancers, and relational databases are the only Lightsail resources that can currently be monitored by alarms.</p>
pub fn set_monitored_resource_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.inner = self.inner.set_monitored_resource_name(input);
self
}
/// <p>The name of the Lightsail resource that will be monitored.</p>
/// <p>Instances, load balancers, and relational databases are the only Lightsail resources that can currently be monitored by alarms.</p>
pub fn get_monitored_resource_name(&self) -> &::std::option::Option<::std::string::String> {
self.inner.get_monitored_resource_name()
}
/// <p>The arithmetic operation to use when comparing the specified statistic to the threshold. The specified statistic value is used as the first operand.</p>
pub fn comparison_operator(mut self, input: crate::types::ComparisonOperator) -> Self {
self.inner = self.inner.comparison_operator(input);
self
}
/// <p>The arithmetic operation to use when comparing the specified statistic to the threshold. The specified statistic value is used as the first operand.</p>
pub fn set_comparison_operator(mut self, input: ::std::option::Option<crate::types::ComparisonOperator>) -> Self {
self.inner = self.inner.set_comparison_operator(input);
self
}
/// <p>The arithmetic operation to use when comparing the specified statistic to the threshold. The specified statistic value is used as the first operand.</p>
pub fn get_comparison_operator(&self) -> &::std::option::Option<crate::types::ComparisonOperator> {
self.inner.get_comparison_operator()
}
/// <p>The value against which the specified statistic is compared.</p>
pub fn threshold(mut self, input: f64) -> Self {
self.inner = self.inner.threshold(input);
self
}
/// <p>The value against which the specified statistic is compared.</p>
pub fn set_threshold(mut self, input: ::std::option::Option<f64>) -> Self {
self.inner = self.inner.set_threshold(input);
self
}
/// <p>The value against which the specified statistic is compared.</p>
pub fn get_threshold(&self) -> &::std::option::Option<f64> {
self.inner.get_threshold()
}
/// <p>The number of most recent periods over which data is compared to the specified threshold. If you are setting an "M out of N" alarm, this value (<code>evaluationPeriods</code>) is the N.</p>
/// <p>If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies the rolling period of time in which data points are evaluated.</p>
/// <p>Each evaluation period is five minutes long. For example, specify an evaluation period of 24 to evaluate a metric over a rolling period of two hours.</p>
/// <p>You can specify a minimum valuation period of 1 (5 minutes), and a maximum evaluation period of 288 (24 hours).</p>
pub fn evaluation_periods(mut self, input: i32) -> Self {
self.inner = self.inner.evaluation_periods(input);
self
}
/// <p>The number of most recent periods over which data is compared to the specified threshold. If you are setting an "M out of N" alarm, this value (<code>evaluationPeriods</code>) is the N.</p>
/// <p>If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies the rolling period of time in which data points are evaluated.</p>
/// <p>Each evaluation period is five minutes long. For example, specify an evaluation period of 24 to evaluate a metric over a rolling period of two hours.</p>
/// <p>You can specify a minimum valuation period of 1 (5 minutes), and a maximum evaluation period of 288 (24 hours).</p>
pub fn set_evaluation_periods(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_evaluation_periods(input);
self
}
/// <p>The number of most recent periods over which data is compared to the specified threshold. If you are setting an "M out of N" alarm, this value (<code>evaluationPeriods</code>) is the N.</p>
/// <p>If you are setting an alarm that requires that a number of consecutive data points be breaching to trigger the alarm, this value specifies the rolling period of time in which data points are evaluated.</p>
/// <p>Each evaluation period is five minutes long. For example, specify an evaluation period of 24 to evaluate a metric over a rolling period of two hours.</p>
/// <p>You can specify a minimum valuation period of 1 (5 minutes), and a maximum evaluation period of 288 (24 hours).</p>
pub fn get_evaluation_periods(&self) -> &::std::option::Option<i32> {
self.inner.get_evaluation_periods()
}
/// <p>The number of data points that must be not within the specified threshold to trigger the alarm. If you are setting an "M out of N" alarm, this value (<code>datapointsToAlarm</code>) is the M.</p>
pub fn datapoints_to_alarm(mut self, input: i32) -> Self {
self.inner = self.inner.datapoints_to_alarm(input);
self
}
/// <p>The number of data points that must be not within the specified threshold to trigger the alarm. If you are setting an "M out of N" alarm, this value (<code>datapointsToAlarm</code>) is the M.</p>
pub fn set_datapoints_to_alarm(mut self, input: ::std::option::Option<i32>) -> Self {
self.inner = self.inner.set_datapoints_to_alarm(input);
self
}
/// <p>The number of data points that must be not within the specified threshold to trigger the alarm. If you are setting an "M out of N" alarm, this value (<code>datapointsToAlarm</code>) is the M.</p>
pub fn get_datapoints_to_alarm(&self) -> &::std::option::Option<i32> {
self.inner.get_datapoints_to_alarm()
}
/// <p>Sets how this alarm will handle missing data points.</p>
/// <p>An alarm can treat missing data in the following ways:</p>
/// <ul>
/// <li> <p> <code>breaching</code> - Assume the missing data is not within the threshold. Missing data counts towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>notBreaching</code> - Assume the missing data is within the threshold. Missing data does not count towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>ignore</code> - Ignore the missing data. Maintains the current alarm state.</p> </li>
/// <li> <p> <code>missing</code> - Missing data is treated as missing.</p> </li>
/// </ul>
/// <p>If <code>treatMissingData</code> is not specified, the default behavior of <code>missing</code> is used.</p>
pub fn treat_missing_data(mut self, input: crate::types::TreatMissingData) -> Self {
self.inner = self.inner.treat_missing_data(input);
self
}
/// <p>Sets how this alarm will handle missing data points.</p>
/// <p>An alarm can treat missing data in the following ways:</p>
/// <ul>
/// <li> <p> <code>breaching</code> - Assume the missing data is not within the threshold. Missing data counts towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>notBreaching</code> - Assume the missing data is within the threshold. Missing data does not count towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>ignore</code> - Ignore the missing data. Maintains the current alarm state.</p> </li>
/// <li> <p> <code>missing</code> - Missing data is treated as missing.</p> </li>
/// </ul>
/// <p>If <code>treatMissingData</code> is not specified, the default behavior of <code>missing</code> is used.</p>
pub fn set_treat_missing_data(mut self, input: ::std::option::Option<crate::types::TreatMissingData>) -> Self {
self.inner = self.inner.set_treat_missing_data(input);
self
}
/// <p>Sets how this alarm will handle missing data points.</p>
/// <p>An alarm can treat missing data in the following ways:</p>
/// <ul>
/// <li> <p> <code>breaching</code> - Assume the missing data is not within the threshold. Missing data counts towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>notBreaching</code> - Assume the missing data is within the threshold. Missing data does not count towards the number of times the metric is not within the threshold.</p> </li>
/// <li> <p> <code>ignore</code> - Ignore the missing data. Maintains the current alarm state.</p> </li>
/// <li> <p> <code>missing</code> - Missing data is treated as missing.</p> </li>
/// </ul>
/// <p>If <code>treatMissingData</code> is not specified, the default behavior of <code>missing</code> is used.</p>
pub fn get_treat_missing_data(&self) -> &::std::option::Option<crate::types::TreatMissingData> {
self.inner.get_treat_missing_data()
}
/// Appends an item to `contactProtocols`.
///
/// To override the contents of this collection use [`set_contact_protocols`](Self::set_contact_protocols).
///
/// <p>The contact protocols to use for the alarm, such as <code>Email</code>, <code>SMS</code> (text messaging), or both.</p>
/// <p>A notification is sent via the specified contact protocol if notifications are enabled for the alarm, and when the alarm is triggered.</p>
/// <p>A notification is not sent if a contact protocol is not specified, if the specified contact protocol is not configured in the Amazon Web Services Region, or if notifications are not enabled for the alarm using the <code>notificationEnabled</code> paramater.</p>
/// <p>Use the <code>CreateContactMethod</code> action to configure a contact protocol in an Amazon Web Services Region.</p>
pub fn contact_protocols(mut self, input: crate::types::ContactProtocol) -> Self {
self.inner = self.inner.contact_protocols(input);
self
}
/// <p>The contact protocols to use for the alarm, such as <code>Email</code>, <code>SMS</code> (text messaging), or both.</p>
/// <p>A notification is sent via the specified contact protocol if notifications are enabled for the alarm, and when the alarm is triggered.</p>
/// <p>A notification is not sent if a contact protocol is not specified, if the specified contact protocol is not configured in the Amazon Web Services Region, or if notifications are not enabled for the alarm using the <code>notificationEnabled</code> paramater.</p>
/// <p>Use the <code>CreateContactMethod</code> action to configure a contact protocol in an Amazon Web Services Region.</p>
pub fn set_contact_protocols(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::ContactProtocol>>) -> Self {
self.inner = self.inner.set_contact_protocols(input);
self
}
/// <p>The contact protocols to use for the alarm, such as <code>Email</code>, <code>SMS</code> (text messaging), or both.</p>
/// <p>A notification is sent via the specified contact protocol if notifications are enabled for the alarm, and when the alarm is triggered.</p>
/// <p>A notification is not sent if a contact protocol is not specified, if the specified contact protocol is not configured in the Amazon Web Services Region, or if notifications are not enabled for the alarm using the <code>notificationEnabled</code> paramater.</p>
/// <p>Use the <code>CreateContactMethod</code> action to configure a contact protocol in an Amazon Web Services Region.</p>
pub fn get_contact_protocols(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::ContactProtocol>> {
self.inner.get_contact_protocols()
}
/// Appends an item to `notificationTriggers`.
///
/// To override the contents of this collection use [`set_notification_triggers`](Self::set_notification_triggers).
///
/// <p>The alarm states that trigger a notification.</p>
/// <p>An alarm has the following possible states:</p>
/// <ul>
/// <li> <p> <code>ALARM</code> - The metric is outside of the defined threshold.</p> </li>
/// <li> <p> <code>INSUFFICIENT_DATA</code> - The alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.</p> </li>
/// <li> <p> <code>OK</code> - The metric is within the defined threshold.</p> </li>
/// </ul>
/// <p>When you specify a notification trigger, the <code>ALARM</code> state must be specified. The <code>INSUFFICIENT_DATA</code> and <code>OK</code> states can be specified in addition to the <code>ALARM</code> state.</p>
/// <ul>
/// <li> <p>If you specify <code>OK</code> as an alarm trigger, a notification is sent when the alarm switches from an <code>ALARM</code> or <code>INSUFFICIENT_DATA</code> alarm state to an <code>OK</code> state. This can be thought of as an <i>all clear</i> alarm notification.</p> </li>
/// <li> <p>If you specify <code>INSUFFICIENT_DATA</code> as the alarm trigger, a notification is sent when the alarm switches from an <code>OK</code> or <code>ALARM</code> alarm state to an <code>INSUFFICIENT_DATA</code> state.</p> </li>
/// </ul>
/// <p>The notification trigger defaults to <code>ALARM</code> if you don't specify this parameter.</p>
pub fn notification_triggers(mut self, input: crate::types::AlarmState) -> Self {
self.inner = self.inner.notification_triggers(input);
self
}
/// <p>The alarm states that trigger a notification.</p>
/// <p>An alarm has the following possible states:</p>
/// <ul>
/// <li> <p> <code>ALARM</code> - The metric is outside of the defined threshold.</p> </li>
/// <li> <p> <code>INSUFFICIENT_DATA</code> - The alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.</p> </li>
/// <li> <p> <code>OK</code> - The metric is within the defined threshold.</p> </li>
/// </ul>
/// <p>When you specify a notification trigger, the <code>ALARM</code> state must be specified. The <code>INSUFFICIENT_DATA</code> and <code>OK</code> states can be specified in addition to the <code>ALARM</code> state.</p>
/// <ul>
/// <li> <p>If you specify <code>OK</code> as an alarm trigger, a notification is sent when the alarm switches from an <code>ALARM</code> or <code>INSUFFICIENT_DATA</code> alarm state to an <code>OK</code> state. This can be thought of as an <i>all clear</i> alarm notification.</p> </li>
/// <li> <p>If you specify <code>INSUFFICIENT_DATA</code> as the alarm trigger, a notification is sent when the alarm switches from an <code>OK</code> or <code>ALARM</code> alarm state to an <code>INSUFFICIENT_DATA</code> state.</p> </li>
/// </ul>
/// <p>The notification trigger defaults to <code>ALARM</code> if you don't specify this parameter.</p>
pub fn set_notification_triggers(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::AlarmState>>) -> Self {
self.inner = self.inner.set_notification_triggers(input);
self
}
/// <p>The alarm states that trigger a notification.</p>
/// <p>An alarm has the following possible states:</p>
/// <ul>
/// <li> <p> <code>ALARM</code> - The metric is outside of the defined threshold.</p> </li>
/// <li> <p> <code>INSUFFICIENT_DATA</code> - The alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.</p> </li>
/// <li> <p> <code>OK</code> - The metric is within the defined threshold.</p> </li>
/// </ul>
/// <p>When you specify a notification trigger, the <code>ALARM</code> state must be specified. The <code>INSUFFICIENT_DATA</code> and <code>OK</code> states can be specified in addition to the <code>ALARM</code> state.</p>
/// <ul>
/// <li> <p>If you specify <code>OK</code> as an alarm trigger, a notification is sent when the alarm switches from an <code>ALARM</code> or <code>INSUFFICIENT_DATA</code> alarm state to an <code>OK</code> state. This can be thought of as an <i>all clear</i> alarm notification.</p> </li>
/// <li> <p>If you specify <code>INSUFFICIENT_DATA</code> as the alarm trigger, a notification is sent when the alarm switches from an <code>OK</code> or <code>ALARM</code> alarm state to an <code>INSUFFICIENT_DATA</code> state.</p> </li>
/// </ul>
/// <p>The notification trigger defaults to <code>ALARM</code> if you don't specify this parameter.</p>
pub fn get_notification_triggers(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::AlarmState>> {
self.inner.get_notification_triggers()
}
/// <p>Indicates whether the alarm is enabled.</p>
/// <p>Notifications are enabled by default if you don't specify this parameter.</p>
pub fn notification_enabled(mut self, input: bool) -> Self {
self.inner = self.inner.notification_enabled(input);
self
}
/// <p>Indicates whether the alarm is enabled.</p>
/// <p>Notifications are enabled by default if you don't specify this parameter.</p>
pub fn set_notification_enabled(mut self, input: ::std::option::Option<bool>) -> Self {
self.inner = self.inner.set_notification_enabled(input);
self
}
/// <p>Indicates whether the alarm is enabled.</p>
/// <p>Notifications are enabled by default if you don't specify this parameter.</p>
pub fn get_notification_enabled(&self) -> &::std::option::Option<bool> {
self.inner.get_notification_enabled()
}
}