Struct cfn::aws::cloudwatch::AlarmProperties [] [src]

pub struct AlarmProperties {
    pub actions_enabled: Option<Value<bool>>,
    pub alarm_actions: Option<ValueList<String>>,
    pub alarm_description: Option<Value<String>>,
    pub alarm_name: Option<Value<String>>,
    pub comparison_operator: Value<String>,
    pub dimensions: Option<ValueList<Dimension>>,
    pub evaluate_low_sample_count_percentile: Option<Value<String>>,
    pub evaluation_periods: Value<u32>,
    pub extended_statistic: Option<Value<String>>,
    pub insufficient_data_actions: Option<ValueList<String>>,
    pub metric_name: Value<String>,
    pub namespace: Value<String>,
    pub ok_actions: Option<ValueList<String>>,
    pub period: Value<u32>,
    pub statistic: Option<Value<String>>,
    pub threshold: Value<f64>,
    pub treat_missing_data: Option<Value<String>>,
    pub unit: Option<Value<String>>,
}

Properties for the Alarm resource.

Fields

Property ActionsEnabled.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AlarmActions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AlarmDescription.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property AlarmName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ComparisonOperator.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Dimensions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EvaluateLowSampleCountPercentile.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property EvaluationPeriods.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ExtendedStatistic.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property InsufficientDataActions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property MetricName.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Namespace.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property OKActions.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Period.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Statistic.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Threshold.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property TreatMissingData.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Unit.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for AlarmProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for AlarmProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for AlarmProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for AlarmProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<AlarmProperties> for Alarm
[src]

[src]

Performs the conversion.

Auto Trait Implementations