[][src]Struct rusoto_autoscaling_plans::CustomizedLoadMetricSpecification

pub struct CustomizedLoadMetricSpecification {
    pub dimensions: Option<Vec<MetricDimension>>,
    pub metric_name: String,
    pub namespace: String,
    pub statistic: String,
    pub unit: Option<String>,
}

Represents a CloudWatch metric of your choosing that can be used for predictive scaling.

For predictive scaling to work with a customized load metric specification, AWS Auto Scaling needs access to the Sum and Average statistics that CloudWatch computes from metric data. Statistics are calculations used to aggregate data over specified time periods.

When you choose a load metric, make sure that the required Sum and Average statistics for your metric are available in CloudWatch and that they provide relevant data for predictive scaling. The Sum statistic must represent the total load on the resource, and the Average statistic must represent the average load per capacity unit of the resource. For example, there is a metric that counts the number of requests processed by your Auto Scaling group. If the Sum statistic represents the total request count processed by the group, then the Average statistic for the specified metric must represent the average request count processed by each instance of the group.

For information about terminology, available metrics, or how to publish new metrics, see Amazon CloudWatch Concepts in the Amazon CloudWatch User Guide.

Fields

dimensions: Option<Vec<MetricDimension>>

The dimensions of the metric.

Conditional: If you published your metric with dimensions, you must specify the same dimensions in your customized load metric specification.

metric_name: String

The name of the metric.

namespace: String

The namespace of the metric.

statistic: String

The statistic of the metric. Currently, the value must always be Sum.

unit: Option<String>

The unit of the metric.

Trait Implementations

impl PartialEq<CustomizedLoadMetricSpecification> for CustomizedLoadMetricSpecification[src]

impl Default for CustomizedLoadMetricSpecification[src]

impl Clone for CustomizedLoadMetricSpecification[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CustomizedLoadMetricSpecification[src]

impl Serialize for CustomizedLoadMetricSpecification[src]

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

Auto Trait Implementations

impl Send for CustomizedLoadMetricSpecification

impl Sync for CustomizedLoadMetricSpecification

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self