[][src]Struct rusoto_ssm::ListInventoryEntriesResult

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

capture_time: Option<String>

The time that inventory information was collected for the instance(s).

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

A list of inventory items on the instance(s).

instance_id: Option<String>

The instance ID targeted by the request to query inventory information.

next_token: Option<String>

The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.

schema_version: Option<String>

The inventory schema version used by the instance(s).

type_name: Option<String>

The type of inventory item returned by the request.

Trait Implementations

impl Clone for ListInventoryEntriesResult[src]

impl Default for ListInventoryEntriesResult[src]

impl PartialEq<ListInventoryEntriesResult> for ListInventoryEntriesResult[src]

impl Debug for ListInventoryEntriesResult[src]

impl StructuralPartialEq for ListInventoryEntriesResult[src]

impl<'de> Deserialize<'de> for ListInventoryEntriesResult[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self