Struct aws_sdk_ssm::input::GetInventoryInput
source · [−]#[non_exhaustive]pub struct GetInventoryInput {
pub filters: Option<Vec<InventoryFilter>>,
pub aggregators: Option<Vec<InventoryAggregator>>,
pub result_attributes: Option<Vec<ResultAttribute>>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.filters: Option<Vec<InventoryFilter>>
One or more filters. Use a filter to return a more specific list of results.
aggregators: 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.
result_attributes: Option<Vec<ResultAttribute>>
The list of inventory item types to return.
next_token: Option<String>
The token for the next set of items to return. (You received this token from a previous call.)
max_results: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInventory, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInventory, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetInventory
>
Creates a new builder-style object to manufacture GetInventoryInput
One or more filters. Use a filter to return a more specific list of results.
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.
The list of inventory item types to return.
The token for the next set of items to return. (You received this token from a previous call.)
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetInventoryInput
impl Send for GetInventoryInput
impl Sync for GetInventoryInput
impl Unpin for GetInventoryInput
impl UnwindSafe for GetInventoryInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more