[][src]Struct rusoto_ssm::DeleteInventoryResult

pub struct DeleteInventoryResult {
    pub deletion_id: Option<String>,
    pub deletion_summary: Option<InventoryDeletionSummary>,
    pub type_name: Option<String>,
}

Fields

deletion_id: Option<String>

Every DeleteInventory action is assigned a unique ID. This option returns a unique ID. You can use this ID to query the status of a delete operation. This option is useful for ensuring that a delete operation has completed before you begin other actions.

deletion_summary: Option<InventoryDeletionSummary>

A summary of the delete operation. For more information about this summary, see Deleting custom inventory in the AWS Systems Manager User Guide.

type_name: Option<String>

The name of the inventory data type specified in the request.

Trait Implementations

impl Clone for DeleteInventoryResult[src]

impl Debug for DeleteInventoryResult[src]

impl Default for DeleteInventoryResult[src]

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

impl PartialEq<DeleteInventoryResult> for DeleteInventoryResult[src]

impl StructuralPartialEq for DeleteInventoryResult[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, 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.