#[non_exhaustive]pub struct GetInventoryInputBuilder { /* private fields */ }
Expand description
A builder for GetInventoryInput
.
Implementations§
source§impl GetInventoryInputBuilder
impl GetInventoryInputBuilder
sourcepub fn filters(self, input: InventoryFilter) -> Self
pub fn filters(self, input: InventoryFilter) -> Self
Appends an item to filters
.
To override the contents of this collection use set_filters
.
One or more filters. Use a filter to return a more specific list of results.
sourcepub fn set_filters(self, input: Option<Vec<InventoryFilter>>) -> Self
pub fn set_filters(self, input: Option<Vec<InventoryFilter>>) -> Self
One or more filters. Use a filter to return a more specific list of results.
sourcepub fn get_filters(&self) -> &Option<Vec<InventoryFilter>>
pub fn get_filters(&self) -> &Option<Vec<InventoryFilter>>
One or more filters. Use a filter to return a more specific list of results.
sourcepub fn aggregators(self, input: InventoryAggregator) -> Self
pub fn aggregators(self, input: InventoryAggregator) -> Self
Appends an item to aggregators
.
To override the contents of this collection use set_aggregators
.
Returns counts of inventory types based on one or more expressions. For example, if you aggregate by using an expression that uses the AWS:InstanceInformation.PlatformType
type, you can see a count of how many Windows and Linux managed nodes exist in your inventoried fleet.
sourcepub fn set_aggregators(self, input: Option<Vec<InventoryAggregator>>) -> Self
pub fn set_aggregators(self, input: Option<Vec<InventoryAggregator>>) -> Self
Returns counts of inventory types based on one or more expressions. For example, if you aggregate by using an expression that uses the AWS:InstanceInformation.PlatformType
type, you can see a count of how many Windows and Linux managed nodes exist in your inventoried fleet.
sourcepub fn get_aggregators(&self) -> &Option<Vec<InventoryAggregator>>
pub fn get_aggregators(&self) -> &Option<Vec<InventoryAggregator>>
Returns counts of inventory types based on one or more expressions. For example, if you aggregate by using an expression that uses the AWS:InstanceInformation.PlatformType
type, you can see a count of how many Windows and Linux managed nodes exist in your inventoried fleet.
sourcepub fn result_attributes(self, input: ResultAttribute) -> Self
pub fn result_attributes(self, input: ResultAttribute) -> Self
Appends an item to result_attributes
.
To override the contents of this collection use set_result_attributes
.
The list of inventory item types to return.
sourcepub fn set_result_attributes(self, input: Option<Vec<ResultAttribute>>) -> Self
pub fn set_result_attributes(self, input: Option<Vec<ResultAttribute>>) -> Self
The list of inventory item types to return.
sourcepub fn get_result_attributes(&self) -> &Option<Vec<ResultAttribute>>
pub fn get_result_attributes(&self) -> &Option<Vec<ResultAttribute>>
The list of inventory item types to return.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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
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>
The token for the next set of items to return. (You received this token from a previous call.)
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
sourcepub fn build(self) -> Result<GetInventoryInput, BuildError>
pub fn build(self) -> Result<GetInventoryInput, BuildError>
Consumes the builder and constructs a GetInventoryInput
.
source§impl GetInventoryInputBuilder
impl GetInventoryInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetInventoryOutput, SdkError<GetInventoryError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetInventoryOutput, SdkError<GetInventoryError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetInventoryInputBuilder
impl Clone for GetInventoryInputBuilder
source§fn clone(&self) -> GetInventoryInputBuilder
fn clone(&self) -> GetInventoryInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetInventoryInputBuilder
impl Debug for GetInventoryInputBuilder
source§impl Default for GetInventoryInputBuilder
impl Default for GetInventoryInputBuilder
source§fn default() -> GetInventoryInputBuilder
fn default() -> GetInventoryInputBuilder
source§impl PartialEq for GetInventoryInputBuilder
impl PartialEq for GetInventoryInputBuilder
source§fn eq(&self, other: &GetInventoryInputBuilder) -> bool
fn eq(&self, other: &GetInventoryInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.