#[non_exhaustive]pub struct GetInventoryOutputBuilder { /* private fields */ }Expand description
A builder for GetInventoryOutput.
Implementations§
source§impl GetInventoryOutputBuilder
impl GetInventoryOutputBuilder
sourcepub fn entities(self, input: InventoryResultEntity) -> Self
pub fn entities(self, input: InventoryResultEntity) -> Self
Appends an item to entities.
To override the contents of this collection use set_entities.
Collection of inventory entities such as a collection of managed node inventory.
sourcepub fn set_entities(self, input: Option<Vec<InventoryResultEntity>>) -> Self
pub fn set_entities(self, input: Option<Vec<InventoryResultEntity>>) -> Self
Collection of inventory entities such as a collection of managed node inventory.
sourcepub fn get_entities(&self) -> &Option<Vec<InventoryResultEntity>>
pub fn get_entities(&self) -> &Option<Vec<InventoryResultEntity>>
Collection of inventory entities such as a collection of managed node inventory.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
sourcepub fn build(self) -> GetInventoryOutput
pub fn build(self) -> GetInventoryOutput
Consumes the builder and constructs a GetInventoryOutput.
Trait Implementations§
source§impl Clone for GetInventoryOutputBuilder
impl Clone for GetInventoryOutputBuilder
source§fn clone(&self) -> GetInventoryOutputBuilder
fn clone(&self) -> GetInventoryOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetInventoryOutputBuilder
impl Debug for GetInventoryOutputBuilder
source§impl Default for GetInventoryOutputBuilder
impl Default for GetInventoryOutputBuilder
source§fn default() -> GetInventoryOutputBuilder
fn default() -> GetInventoryOutputBuilder
source§impl PartialEq for GetInventoryOutputBuilder
impl PartialEq for GetInventoryOutputBuilder
source§fn eq(&self, other: &GetInventoryOutputBuilder) -> bool
fn eq(&self, other: &GetInventoryOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetInventoryOutputBuilder
Auto Trait Implementations§
impl Freeze for GetInventoryOutputBuilder
impl RefUnwindSafe for GetInventoryOutputBuilder
impl Send for GetInventoryOutputBuilder
impl Sync for GetInventoryOutputBuilder
impl Unpin for GetInventoryOutputBuilder
impl UnwindSafe for GetInventoryOutputBuilder
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