[−][src]Struct rusoto_autoscaling_plans::CustomizedLoadMetricSpecification
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]
fn eq(&self, other: &CustomizedLoadMetricSpecification) -> bool
[src]
fn ne(&self, other: &CustomizedLoadMetricSpecification) -> bool
[src]
impl Default for CustomizedLoadMetricSpecification
[src]
impl Clone for CustomizedLoadMetricSpecification
[src]
fn clone(&self) -> 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]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer,
[src]
__S: Serializer,
impl<'de> Deserialize<'de> for CustomizedLoadMetricSpecification
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self