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]

[src]

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

impl Debug for ListInventoryEntriesResult
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListInventoryEntriesResult
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations