Struct aws_sdk_autoscaling::client::fluent_builders::DeleteWarmPool
source · pub struct DeleteWarmPool { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteWarmPool.
Deletes the warm pool for the specified Auto Scaling group.
For more information, see Warm pools for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.
Implementations§
source§impl DeleteWarmPool
impl DeleteWarmPool
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DeleteWarmPool, AwsResponseRetryClassifier>, SdkError<DeleteWarmPoolError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DeleteWarmPool, AwsResponseRetryClassifier>, SdkError<DeleteWarmPoolError>>
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<DeleteWarmPoolOutput, SdkError<DeleteWarmPoolError>>
pub async fn send(
self
) -> Result<DeleteWarmPoolOutput, SdkError<DeleteWarmPoolError>>
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 force_delete(self, input: bool) -> Self
pub fn force_delete(self, input: bool) -> Self
Specifies that the warm pool is to be deleted along with all of its associated instances, without waiting for all instances to be terminated. This parameter also deletes any outstanding lifecycle actions associated with the warm pool instances.
sourcepub fn set_force_delete(self, input: Option<bool>) -> Self
pub fn set_force_delete(self, input: Option<bool>) -> Self
Specifies that the warm pool is to be deleted along with all of its associated instances, without waiting for all instances to be terminated. This parameter also deletes any outstanding lifecycle actions associated with the warm pool instances.
Trait Implementations§
source§impl Clone for DeleteWarmPool
impl Clone for DeleteWarmPool
source§fn clone(&self) -> DeleteWarmPool
fn clone(&self) -> DeleteWarmPool
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more