pub struct BatchDeleteScheduledAction { /* private fields */ }Expand description
Fluent builder constructing a request to BatchDeleteScheduledAction.
Deletes one or more scheduled actions for the specified Auto Scaling group.
Implementations§
source§impl BatchDeleteScheduledAction
impl BatchDeleteScheduledAction
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<BatchDeleteScheduledAction, AwsResponseRetryClassifier>, SdkError<BatchDeleteScheduledActionError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<BatchDeleteScheduledAction, AwsResponseRetryClassifier>, SdkError<BatchDeleteScheduledActionError>>
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<BatchDeleteScheduledActionOutput, SdkError<BatchDeleteScheduledActionError>>
pub async fn send(
self
) -> Result<BatchDeleteScheduledActionOutput, SdkError<BatchDeleteScheduledActionError>>
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 scheduled_action_names(self, input: impl Into<String>) -> Self
pub fn scheduled_action_names(self, input: impl Into<String>) -> Self
Appends an item to ScheduledActionNames.
To override the contents of this collection use set_scheduled_action_names.
The names of the scheduled actions to delete. The maximum number allowed is 50.
sourcepub fn set_scheduled_action_names(self, input: Option<Vec<String>>) -> Self
pub fn set_scheduled_action_names(self, input: Option<Vec<String>>) -> Self
The names of the scheduled actions to delete. The maximum number allowed is 50.
Trait Implementations§
source§impl Clone for BatchDeleteScheduledAction
impl Clone for BatchDeleteScheduledAction
source§fn clone(&self) -> BatchDeleteScheduledAction
fn clone(&self) -> BatchDeleteScheduledAction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more