#[non_exhaustive]pub struct DeleteScheduleInputBuilder { /* private fields */ }Expand description
A builder for DeleteScheduleInput.
Implementations§
source§impl DeleteScheduleInputBuilder
impl DeleteScheduleInputBuilder
sourcepub fn group_name(self, input: impl Into<String>) -> Self
pub fn group_name(self, input: impl Into<String>) -> Self
The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.
sourcepub fn set_group_name(self, input: Option<String>) -> Self
pub fn set_group_name(self, input: Option<String>) -> Self
The name of the schedule group associated with this schedule. If you omit this, the default schedule group is used.
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 build(self) -> Result<DeleteScheduleInput, BuildError>
pub fn build(self) -> Result<DeleteScheduleInput, BuildError>
Consumes the builder and constructs a DeleteScheduleInput.
Trait Implementations§
source§impl Clone for DeleteScheduleInputBuilder
impl Clone for DeleteScheduleInputBuilder
source§fn clone(&self) -> DeleteScheduleInputBuilder
fn clone(&self) -> DeleteScheduleInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteScheduleInputBuilder
impl Debug for DeleteScheduleInputBuilder
source§impl Default for DeleteScheduleInputBuilder
impl Default for DeleteScheduleInputBuilder
source§fn default() -> DeleteScheduleInputBuilder
fn default() -> DeleteScheduleInputBuilder
source§impl PartialEq<DeleteScheduleInputBuilder> for DeleteScheduleInputBuilder
impl PartialEq<DeleteScheduleInputBuilder> for DeleteScheduleInputBuilder
source§fn eq(&self, other: &DeleteScheduleInputBuilder) -> bool
fn eq(&self, other: &DeleteScheduleInputBuilder) -> bool
self and other values to be equal, and is used
by ==.