Struct aws_sdk_migrationhub::operation::list_progress_update_streams::builders::ListProgressUpdateStreamsOutputBuilder
source · #[non_exhaustive]pub struct ListProgressUpdateStreamsOutputBuilder { /* private fields */ }Expand description
A builder for ListProgressUpdateStreamsOutput.
Implementations§
source§impl ListProgressUpdateStreamsOutputBuilder
impl ListProgressUpdateStreamsOutputBuilder
sourcepub fn progress_update_stream_summary_list(
self,
input: ProgressUpdateStreamSummary
) -> Self
pub fn progress_update_stream_summary_list( self, input: ProgressUpdateStreamSummary ) -> Self
Appends an item to progress_update_stream_summary_list.
To override the contents of this collection use set_progress_update_stream_summary_list.
List of progress update streams up to the max number of results passed in the input.
sourcepub fn set_progress_update_stream_summary_list(
self,
input: Option<Vec<ProgressUpdateStreamSummary>>
) -> Self
pub fn set_progress_update_stream_summary_list( self, input: Option<Vec<ProgressUpdateStreamSummary>> ) -> Self
List of progress update streams up to the max number of results passed in the input.
sourcepub fn get_progress_update_stream_summary_list(
&self
) -> &Option<Vec<ProgressUpdateStreamSummary>>
pub fn get_progress_update_stream_summary_list( &self ) -> &Option<Vec<ProgressUpdateStreamSummary>>
List of progress update streams up to the max number of results passed in the input.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are more streams created than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are more streams created than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are more streams created than the max result, return the next token to be passed to the next call as a bookmark of where to start from.
sourcepub fn build(self) -> ListProgressUpdateStreamsOutput
pub fn build(self) -> ListProgressUpdateStreamsOutput
Consumes the builder and constructs a ListProgressUpdateStreamsOutput.
Trait Implementations§
source§impl Clone for ListProgressUpdateStreamsOutputBuilder
impl Clone for ListProgressUpdateStreamsOutputBuilder
source§fn clone(&self) -> ListProgressUpdateStreamsOutputBuilder
fn clone(&self) -> ListProgressUpdateStreamsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for ListProgressUpdateStreamsOutputBuilder
impl Default for ListProgressUpdateStreamsOutputBuilder
source§fn default() -> ListProgressUpdateStreamsOutputBuilder
fn default() -> ListProgressUpdateStreamsOutputBuilder
source§impl PartialEq for ListProgressUpdateStreamsOutputBuilder
impl PartialEq for ListProgressUpdateStreamsOutputBuilder
source§fn eq(&self, other: &ListProgressUpdateStreamsOutputBuilder) -> bool
fn eq(&self, other: &ListProgressUpdateStreamsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListProgressUpdateStreamsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListProgressUpdateStreamsOutputBuilder
impl RefUnwindSafe for ListProgressUpdateStreamsOutputBuilder
impl Send for ListProgressUpdateStreamsOutputBuilder
impl Sync for ListProgressUpdateStreamsOutputBuilder
impl Unpin for ListProgressUpdateStreamsOutputBuilder
impl UnwindSafe for ListProgressUpdateStreamsOutputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more