[][src]Struct rusoto_autoscaling_plans::CustomizedScalingMetricSpecification

pub struct CustomizedScalingMetricSpecification {
    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 dynamic scaling as part of a target tracking scaling policy.

To create your customized scaling 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.

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 customized scaling metric specification.

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 CustomizedScalingMetricSpecification[src]

impl Debug for CustomizedScalingMetricSpecification[src]

impl Default for CustomizedScalingMetricSpecification[src]

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

impl PartialEq<CustomizedScalingMetricSpecification> for CustomizedScalingMetricSpecification[src]

impl Serialize for CustomizedScalingMetricSpecification[src]

impl StructuralPartialEq for CustomizedScalingMetricSpecification[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, 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> Sealed<T> for T where
    T: ?Sized

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.