#[non_exhaustive]pub struct ListOperationsOutputBuilder { /* private fields */ }Expand description
A builder for ListOperationsOutput.
Implementations§
source§impl ListOperationsOutputBuilder
impl ListOperationsOutputBuilder
sourcepub fn operation_summary_list(self, input: OperationSummary) -> Self
pub fn operation_summary_list(self, input: OperationSummary) -> Self
Appends an item to operation_summary_list.
To override the contents of this collection use set_operation_summary_list.
A list of operation summary information records. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn set_operation_summary_list(
self,
input: Option<Vec<OperationSummary>>
) -> Self
pub fn set_operation_summary_list( self, input: Option<Vec<OperationSummary>> ) -> Self
A list of operation summary information records. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn get_operation_summary_list(&self) -> &Option<Vec<OperationSummary>>
pub fn get_operation_summary_list(&self) -> &Option<Vec<OperationSummary>>
A list of operation summary information records. In a paginated request, the request returns up to MaxResults records for each call.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.
sourcepub fn build(self) -> ListOperationsOutput
pub fn build(self) -> ListOperationsOutput
Consumes the builder and constructs a ListOperationsOutput.
Trait Implementations§
source§impl Clone for ListOperationsOutputBuilder
impl Clone for ListOperationsOutputBuilder
source§fn clone(&self) -> ListOperationsOutputBuilder
fn clone(&self) -> ListOperationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListOperationsOutputBuilder
impl Debug for ListOperationsOutputBuilder
source§impl Default for ListOperationsOutputBuilder
impl Default for ListOperationsOutputBuilder
source§fn default() -> ListOperationsOutputBuilder
fn default() -> ListOperationsOutputBuilder
source§impl PartialEq for ListOperationsOutputBuilder
impl PartialEq for ListOperationsOutputBuilder
source§fn eq(&self, other: &ListOperationsOutputBuilder) -> bool
fn eq(&self, other: &ListOperationsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListOperationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListOperationsOutputBuilder
impl RefUnwindSafe for ListOperationsOutputBuilder
impl Send for ListOperationsOutputBuilder
impl Sync for ListOperationsOutputBuilder
impl Unpin for ListOperationsOutputBuilder
impl UnwindSafe for ListOperationsOutputBuilder
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