#[non_exhaustive]pub struct ListCommandsOutputBuilder { /* private fields */ }
Expand description
A builder for ListCommandsOutput
.
Implementations§
source§impl ListCommandsOutputBuilder
impl ListCommandsOutputBuilder
sourcepub fn commands(self, input: Command) -> Self
pub fn commands(self, input: Command) -> Self
Appends an item to commands
.
To override the contents of this collection use set_commands
.
(Optional) The list of commands requested by the user.
sourcepub fn set_commands(self, input: Option<Vec<Command>>) -> Self
pub fn set_commands(self, input: Option<Vec<Command>>) -> Self
(Optional) The list of commands requested by the user.
sourcepub fn get_commands(&self) -> &Option<Vec<Command>>
pub fn get_commands(&self) -> &Option<Vec<Command>>
(Optional) The list of commands requested by the user.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
(Optional) The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn build(self) -> ListCommandsOutput
pub fn build(self) -> ListCommandsOutput
Consumes the builder and constructs a ListCommandsOutput
.
Trait Implementations§
source§impl Clone for ListCommandsOutputBuilder
impl Clone for ListCommandsOutputBuilder
source§fn clone(&self) -> ListCommandsOutputBuilder
fn clone(&self) -> ListCommandsOutputBuilder
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 ListCommandsOutputBuilder
impl Debug for ListCommandsOutputBuilder
source§impl Default for ListCommandsOutputBuilder
impl Default for ListCommandsOutputBuilder
source§fn default() -> ListCommandsOutputBuilder
fn default() -> ListCommandsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListCommandsOutputBuilder
impl PartialEq for ListCommandsOutputBuilder
source§fn eq(&self, other: &ListCommandsOutputBuilder) -> bool
fn eq(&self, other: &ListCommandsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListCommandsOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListCommandsOutputBuilder
impl Send for ListCommandsOutputBuilder
impl Sync for ListCommandsOutputBuilder
impl Unpin for ListCommandsOutputBuilder
impl UnwindSafe for ListCommandsOutputBuilder
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
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>
Creates a shared type from an unshared type.