[][src]Struct rusoto_application_autoscaling::CustomizedMetricSpecification

pub struct CustomizedMetricSpecification {
    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 for a target tracking scaling policy to use with Application Auto Scaling.

For information about the available metrics for a service, see AWS Services That Publish CloudWatch Metrics in the Amazon CloudWatch User Guide.

To create your customized metric specification:

  • Add values for each required parameter from CloudWatch. You can use an existing metric, or a new metric that you create. To use your own metric, you must first publish the metric to CloudWatch. For more information, see Publish Custom Metrics in the Amazon CloudWatch User Guide.

  • Choose a metric that changes proportionally with capacity. The value of the metric should increase or decrease in inverse proportion to the number of capacity units. That is, the value of the metric should decrease when capacity increases, and increase when capacity decreases.

For more information about CloudWatch, see Amazon CloudWatch Concepts.

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 scaling policy.

metric_name: String

The name of the metric.

namespace: String

The namespace of the metric.

statistic: String

The statistic of the metric.

unit: Option<String>

The unit of the metric.

Trait Implementations

impl Clone for CustomizedMetricSpecification[src]

impl Debug for CustomizedMetricSpecification[src]

impl Default for CustomizedMetricSpecification[src]

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

impl PartialEq<CustomizedMetricSpecification> for CustomizedMetricSpecification[src]

impl Serialize for CustomizedMetricSpecification[src]

impl StructuralPartialEq for CustomizedMetricSpecification[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.