Struct rusoto_ssm::InventoryResultEntity[][src]

pub struct InventoryResultEntity {
    pub data: Option<HashMap<String, InventoryResultItem>>,
    pub id: Option<String>,
}

Inventory query results.

Fields

The data section in the inventory result entity JSON.

ID of the inventory result entity. For example, for managed instance inventory the result will be the managed instance ID. For EC2 instance inventory, the result will be the instance ID.

Trait Implementations

impl Default for InventoryResultEntity
[src]

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

impl Debug for InventoryResultEntity
[src]

Formats the value using the given formatter. Read more

impl Clone for InventoryResultEntity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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