#[non_exhaustive]pub struct GetScheduleInputBuilder { /* private fields */ }Expand description
A builder for GetScheduleInput.
Implementations§
source§impl GetScheduleInputBuilder
impl GetScheduleInputBuilder
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, EventBridge Scheduler assumes that the schedule is associated with the default group.
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, EventBridge Scheduler assumes that the schedule is associated with the default group.
sourcepub fn get_group_name(&self) -> &Option<String>
pub fn get_group_name(&self) -> &Option<String>
The name of the schedule group associated with this schedule. If you omit this, EventBridge Scheduler assumes that the schedule is associated with the default group.
sourcepub fn build(self) -> Result<GetScheduleInput, BuildError>
pub fn build(self) -> Result<GetScheduleInput, BuildError>
Consumes the builder and constructs a GetScheduleInput.
source§impl GetScheduleInputBuilder
impl GetScheduleInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetScheduleOutput, SdkError<GetScheduleError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetScheduleOutput, SdkError<GetScheduleError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetScheduleInputBuilder
impl Clone for GetScheduleInputBuilder
source§fn clone(&self) -> GetScheduleInputBuilder
fn clone(&self) -> GetScheduleInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetScheduleInputBuilder
impl Debug for GetScheduleInputBuilder
source§impl Default for GetScheduleInputBuilder
impl Default for GetScheduleInputBuilder
source§fn default() -> GetScheduleInputBuilder
fn default() -> GetScheduleInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetScheduleInputBuilder> for GetScheduleInputBuilder
impl PartialEq<GetScheduleInputBuilder> for GetScheduleInputBuilder
source§fn eq(&self, other: &GetScheduleInputBuilder) -> bool
fn eq(&self, other: &GetScheduleInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetScheduleInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetScheduleInputBuilder
impl Send for GetScheduleInputBuilder
impl Sync for GetScheduleInputBuilder
impl Unpin for GetScheduleInputBuilder
impl UnwindSafe for GetScheduleInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more