Struct rusoto_ssm::InventoryResultItem[][src]

pub struct InventoryResultItem {
    pub capture_time: Option<String>,
    pub content: Vec<HashMap<String, String>>,
    pub content_hash: Option<String>,
    pub schema_version: String,
    pub type_name: String,
}

The inventory result item.

Fields

The time inventory item data was captured.

Contains all the inventory data of the item type. Results include attribute names and values.

MD5 hash of the inventory item type contents. The content hash is used to determine whether to update inventory information. The PutInventory API does not update the inventory item type contents if the MD5 hash has not changed since last update.

The schema version for the inventory result item/

The name of the inventory result item type.

Trait Implementations

impl Default for InventoryResultItem
[src]

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

impl Debug for InventoryResultItem
[src]

Formats the value using the given formatter. Read more

impl Clone for InventoryResultItem
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for InventoryResultItem
[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