Struct aws_sdk_scheduler::operation::delete_schedule_group::builders::DeleteScheduleGroupFluentBuilder
source · pub struct DeleteScheduleGroupFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to DeleteScheduleGroup.
Deletes the specified schedule group. Deleting a schedule group results in EventBridge Scheduler deleting all schedules associated with the group. When you delete a group, it remains in a DELETING state until all of its associated schedules are deleted. Schedules associated with the group that are set to run while the schedule group is in the process of being deleted might continue to invoke their targets until the schedule group and its associated schedules are deleted.
This operation is eventually consistent.
Implementations§
source§impl DeleteScheduleGroupFluentBuilder
impl DeleteScheduleGroupFluentBuilder
sourcepub fn as_input(&self) -> &DeleteScheduleGroupInputBuilder
pub fn as_input(&self) -> &DeleteScheduleGroupInputBuilder
Access the DeleteScheduleGroup as a reference.
sourcepub async fn send(
self
) -> Result<DeleteScheduleGroupOutput, SdkError<DeleteScheduleGroupError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteScheduleGroupOutput, SdkError<DeleteScheduleGroupError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<DeleteScheduleGroupOutput, DeleteScheduleGroupError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteScheduleGroupOutput, DeleteScheduleGroupError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
Trait Implementations§
source§impl Clone for DeleteScheduleGroupFluentBuilder
impl Clone for DeleteScheduleGroupFluentBuilder
source§fn clone(&self) -> DeleteScheduleGroupFluentBuilder
fn clone(&self) -> DeleteScheduleGroupFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more