logo
pub struct Alarm {
Show 20 fields pub arn: Option<String>, pub comparison_operator: Option<String>, pub contact_protocols: Option<Vec<String>>, pub created_at: Option<f64>, pub datapoints_to_alarm: Option<i64>, pub evaluation_periods: Option<i64>, pub location: Option<ResourceLocation>, pub metric_name: Option<String>, pub monitored_resource_info: Option<MonitoredResourceInfo>, pub name: Option<String>, pub notification_enabled: Option<bool>, pub notification_triggers: Option<Vec<String>>, pub period: Option<i64>, pub resource_type: Option<String>, pub state: Option<String>, pub statistic: Option<String>, pub support_code: Option<String>, pub threshold: Option<f64>, pub treat_missing_data: Option<String>, pub unit: Option<String>,
}
Expand description

Describes an alarm.

An alarm is a way to monitor your Amazon Lightsail resource metrics. For more information, see Alarms in Amazon Lightsail.

Fields

arn: Option<String>

The Amazon Resource Name (ARN) of the alarm.

comparison_operator: Option<String>

The arithmetic operation used when comparing the specified statistic and threshold.

contact_protocols: Option<Vec<String>>

The contact protocols for the alarm, such as Email, SMS (text messaging), or both.

created_at: Option<f64>

The timestamp when the alarm was created.

datapoints_to_alarm: Option<i64>

The number of data points that must not within the specified threshold to trigger the alarm.

evaluation_periods: Option<i64>

The number of periods over which data is compared to the specified threshold.

location: Option<ResourceLocation>

An object that lists information about the location of the alarm.

metric_name: Option<String>

The name of the metric associated with the alarm.

monitored_resource_info: Option<MonitoredResourceInfo>

An object that lists information about the resource monitored by the alarm.

name: Option<String>

The name of the alarm.

notification_enabled: Option<bool>

Indicates whether the alarm is enabled.

notification_triggers: Option<Vec<String>>

The alarm states that trigger a notification.

period: Option<i64>

The period, in seconds, over which the statistic is applied.

resource_type: Option<String>

The Lightsail resource type (e.g., Alarm).

state: Option<String>

The current state of the alarm.

An alarm has the following possible states:

  • ALARM - The metric is outside of the defined threshold.

  • INSUFFICIENT_DATA - The alarm has just started, the metric is not available, or not enough data is available for the metric to determine the alarm state.

  • OK - The metric is within the defined threshold.

statistic: Option<String>

The statistic for the metric associated with the alarm.

The following statistics are available:

  • Minimum - The lowest value observed during the specified period. Use this value to determine low volumes of activity for your application.

  • Maximum - The highest value observed during the specified period. Use this value to determine high volumes of activity for your application.

  • Sum - All values submitted for the matching metric added together. You can use this statistic to determine the total volume of a metric.

  • Average - The value of Sum / SampleCount during the specified period. By comparing this statistic with the Minimum and Maximum values, you can determine the full scope of a metric and how close the average use is to the Minimum and Maximum values. This comparison helps you to know when to increase or decrease your resources.

  • SampleCount - The count, or number, of data points used for the statistical calculation.

support_code: Option<String>

The support code. Include this code in your email to support when you have questions about your Lightsail alarm. This code enables our support team to look up your Lightsail information more easily.

threshold: Option<f64>

The value against which the specified statistic is compared.

treat_missing_data: Option<String>

Specifies how the alarm handles missing data points.

An alarm can treat missing data in the following ways:

  • breaching - Assume the missing data is not within the threshold. Missing data counts towards the number of times the metric is not within the threshold.

  • notBreaching - 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.

  • ignore - Ignore the missing data. Maintains the current alarm state.

  • missing - Missing data is treated as missing.

unit: Option<String>

The unit of the metric associated with the alarm.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more