[][src]Struct rusoto_ssm::InventoryItem

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

Information collected from managed instances based on your inventory policy document

Fields

The time the inventory information was collected.

The inventory data of the inventory type.

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.

A map of associated properties for a specified inventory type. For example, with this attribute, you can specify the ExecutionId, ExecutionType, ComplianceType properties of the AWS:ComplianceItem type.

The schema version for the inventory item.

The name of the inventory type. Default inventory item type names start with AWS. Custom inventory type names will start with Custom. Default inventory item types include the following: AWS:AWSComponent, AWS:Application, AWS:InstanceInformation, AWS:Network, and AWS:WindowsUpdate.

Trait Implementations

impl Clone for InventoryItem
[src]

Performs copy-assignment from source. Read more

impl Default for InventoryItem
[src]

impl PartialEq<InventoryItem> for InventoryItem
[src]

impl Debug for InventoryItem
[src]

impl Serialize for InventoryItem
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T