Struct aws_sdk_ssm::client::fluent_builders::GetInventory
source · [−]pub struct GetInventory { /* private fields */ }
Expand description
Fluent builder constructing a request to GetInventory
.
Query inventory information. This includes managed node status, such as Stopped
or Terminated
.
Implementations
sourceimpl GetInventory
impl GetInventory
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<GetInventory, AwsResponseRetryClassifier>, SdkError<GetInventoryError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<GetInventory, AwsResponseRetryClassifier>, SdkError<GetInventoryError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<GetInventoryOutput, SdkError<GetInventoryError>>
pub async fn send(
self
) -> Result<GetInventoryOutput, SdkError<GetInventoryError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> GetInventoryPaginator
pub fn into_paginator(self) -> GetInventoryPaginator
Create a paginator for this request
Paginators are used by calling send().await
which returns a Stream
.
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 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 result_attributes(self, input: ResultAttribute) -> Self
pub fn result_attributes(self, input: ResultAttribute) -> Self
Appends an item to ResultAttributes
.
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 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 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.
Trait Implementations
sourceimpl Clone for GetInventory
impl Clone for GetInventory
sourcefn clone(&self) -> GetInventory
fn clone(&self) -> GetInventory
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more