[][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

capture_time: String

The time the inventory information was collected.

content: Option<Vec<HashMap<String, String>>>

The inventory data of the inventory type.

content_hash: Option<String>

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.

context: Option<HashMap<String, String>>

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.

schema_version: String

The schema version for the inventory item.

type_name: String

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]

impl Debug for InventoryItem[src]

impl Default for InventoryItem[src]

impl PartialEq<InventoryItem> for InventoryItem[src]

impl Serialize for InventoryItem[src]

impl StructuralPartialEq for InventoryItem[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.