[][src]Struct rusoto_ssm::InventoryDeletionStatusItem

pub struct InventoryDeletionStatusItem {
    pub deletion_id: Option<String>,
    pub deletion_start_time: Option<f64>,
    pub deletion_summary: Option<InventoryDeletionSummary>,
    pub last_status: Option<String>,
    pub last_status_message: Option<String>,
    pub last_status_update_time: Option<f64>,
    pub type_name: Option<String>,
}

Status information returned by the DeleteInventory action.

Fields

deletion_id: Option<String>

The deletion ID returned by the DeleteInventory action.

deletion_start_time: Option<f64>

The UTC timestamp when the delete operation started.

deletion_summary: Option<InventoryDeletionSummary>

Information about the delete operation. For more information about this summary, see Understanding the delete inventory summary in the AWS Systems Manager User Guide.

last_status: Option<String>

The status of the operation. Possible values are InProgress and Complete.

last_status_message: Option<String>

Information about the status.

last_status_update_time: Option<f64>

The UTC timestamp of when the last status report.

type_name: Option<String>

The name of the inventory data type.

Trait Implementations

impl Clone for InventoryDeletionStatusItem[src]

impl Debug for InventoryDeletionStatusItem[src]

impl Default for InventoryDeletionStatusItem[src]

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

impl PartialEq<InventoryDeletionStatusItem> for InventoryDeletionStatusItem[src]

impl StructuralPartialEq for InventoryDeletionStatusItem[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.