#[non_exhaustive]pub struct ListSchedulesOutputBuilder { /* private fields */ }
Expand description
A builder for ListSchedulesOutput
.
Implementations§
source§impl ListSchedulesOutputBuilder
impl ListSchedulesOutputBuilder
sourcepub fn schedules(self, input: Schedule) -> Self
pub fn schedules(self, input: Schedule) -> Self
Appends an item to schedules
.
To override the contents of this collection use set_schedules
.
A list of schedules that are defined.
sourcepub fn set_schedules(self, input: Option<Vec<Schedule>>) -> Self
pub fn set_schedules(self, input: Option<Vec<Schedule>>) -> Self
A list of schedules that are defined.
sourcepub fn get_schedules(&self) -> &Option<Vec<Schedule>>
pub fn get_schedules(&self) -> &Option<Vec<Schedule>>
A list of schedules that are defined.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that you can use in a subsequent call to retrieve the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that you can use in a subsequent call to retrieve the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that you can use in a subsequent call to retrieve the next set of results.
sourcepub fn build(self) -> ListSchedulesOutput
pub fn build(self) -> ListSchedulesOutput
Consumes the builder and constructs a ListSchedulesOutput
.
Trait Implementations§
source§impl Clone for ListSchedulesOutputBuilder
impl Clone for ListSchedulesOutputBuilder
source§fn clone(&self) -> ListSchedulesOutputBuilder
fn clone(&self) -> ListSchedulesOutputBuilder
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 ListSchedulesOutputBuilder
impl Debug for ListSchedulesOutputBuilder
source§impl Default for ListSchedulesOutputBuilder
impl Default for ListSchedulesOutputBuilder
source§fn default() -> ListSchedulesOutputBuilder
fn default() -> ListSchedulesOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListSchedulesOutputBuilder> for ListSchedulesOutputBuilder
impl PartialEq<ListSchedulesOutputBuilder> for ListSchedulesOutputBuilder
source§fn eq(&self, other: &ListSchedulesOutputBuilder) -> bool
fn eq(&self, other: &ListSchedulesOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListSchedulesOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListSchedulesOutputBuilder
impl Send for ListSchedulesOutputBuilder
impl Sync for ListSchedulesOutputBuilder
impl Unpin for ListSchedulesOutputBuilder
impl UnwindSafe for ListSchedulesOutputBuilder
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