pub struct EnableMetricsCollection { /* private fields */ }
Expand description
Fluent builder constructing a request to EnableMetricsCollection
.
Enables group metrics collection for the specified Auto Scaling group.
You can use these metrics to track changes in an Auto Scaling group and to set alarms on threshold values. You can view group metrics using the Amazon EC2 Auto Scaling console or the CloudWatch console. For more information, see Monitor CloudWatch metrics for your Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.
Implementations
sourceimpl EnableMetricsCollection
impl EnableMetricsCollection
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<EnableMetricsCollection, AwsResponseRetryClassifier>, SdkError<EnableMetricsCollectionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<EnableMetricsCollection, AwsResponseRetryClassifier>, SdkError<EnableMetricsCollectionError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<EnableMetricsCollectionOutput, SdkError<EnableMetricsCollectionError>>
pub async fn send(
self
) -> Result<EnableMetricsCollectionOutput, SdkError<EnableMetricsCollectionError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn auto_scaling_group_name(self, input: impl Into<String>) -> Self
pub fn auto_scaling_group_name(self, input: impl Into<String>) -> Self
The name of the Auto Scaling group.
sourcepub fn set_auto_scaling_group_name(self, input: Option<String>) -> Self
pub fn set_auto_scaling_group_name(self, input: Option<String>) -> Self
The name of the Auto Scaling group.
sourcepub fn metrics(self, input: impl Into<String>) -> Self
pub fn metrics(self, input: impl Into<String>) -> Self
Appends an item to Metrics
.
To override the contents of this collection use set_metrics
.
Identifies the metrics to enable.
You can specify one or more of the following metrics:
-
GroupMinSize
-
GroupMaxSize
-
GroupDesiredCapacity
-
GroupInServiceInstances
-
GroupPendingInstances
-
GroupStandbyInstances
-
GroupTerminatingInstances
-
GroupTotalInstances
-
GroupInServiceCapacity
-
GroupPendingCapacity
-
GroupStandbyCapacity
-
GroupTerminatingCapacity
-
GroupTotalCapacity
-
WarmPoolDesiredCapacity
-
WarmPoolWarmedCapacity
-
WarmPoolPendingCapacity
-
WarmPoolTerminatingCapacity
-
WarmPoolTotalCapacity
-
GroupAndWarmPoolDesiredCapacity
-
GroupAndWarmPoolTotalCapacity
If you specify Granularity
and don't specify any metrics, all metrics are enabled.
For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.
sourcepub fn set_metrics(self, input: Option<Vec<String>>) -> Self
pub fn set_metrics(self, input: Option<Vec<String>>) -> Self
Identifies the metrics to enable.
You can specify one or more of the following metrics:
-
GroupMinSize
-
GroupMaxSize
-
GroupDesiredCapacity
-
GroupInServiceInstances
-
GroupPendingInstances
-
GroupStandbyInstances
-
GroupTerminatingInstances
-
GroupTotalInstances
-
GroupInServiceCapacity
-
GroupPendingCapacity
-
GroupStandbyCapacity
-
GroupTerminatingCapacity
-
GroupTotalCapacity
-
WarmPoolDesiredCapacity
-
WarmPoolWarmedCapacity
-
WarmPoolPendingCapacity
-
WarmPoolTerminatingCapacity
-
WarmPoolTotalCapacity
-
GroupAndWarmPoolDesiredCapacity
-
GroupAndWarmPoolTotalCapacity
If you specify Granularity
and don't specify any metrics, all metrics are enabled.
For more information, see Auto Scaling group metrics in the Amazon EC2 Auto Scaling User Guide.
sourcepub fn granularity(self, input: impl Into<String>) -> Self
pub fn granularity(self, input: impl Into<String>) -> Self
The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is 1Minute
.
sourcepub fn set_granularity(self, input: Option<String>) -> Self
pub fn set_granularity(self, input: Option<String>) -> Self
The frequency at which Amazon EC2 Auto Scaling sends aggregated data to CloudWatch. The only valid value is 1Minute
.
Trait Implementations
sourceimpl Clone for EnableMetricsCollection
impl Clone for EnableMetricsCollection
sourcefn clone(&self) -> EnableMetricsCollection
fn clone(&self) -> EnableMetricsCollection
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more