Struct rusoto_ssm::ListInventoryEntriesResult[][src]

pub struct ListInventoryEntriesResult {
    pub capture_time: Option<String>,
    pub entries: Option<Vec<HashMap<String, String>>>,
    pub instance_id: Option<String>,
    pub next_token: Option<String>,
    pub schema_version: Option<String>,
    pub type_name: Option<String>,
}

Fields

The time that inventory information was collected for the instance(s).

A list of inventory items on the instance(s).

The instance ID targeted by the request to query inventory information.

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

The inventory schema version used by the instance(s).

The type of inventory item returned by the request.

Trait Implementations

impl Default for ListInventoryEntriesResult
[src]

Returns the "default value" for a type. Read more

impl Debug for ListInventoryEntriesResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListInventoryEntriesResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListInventoryEntriesResult
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations