[][src]Struct rusoto_ssm::DeleteInventoryRequest

pub struct DeleteInventoryRequest {
    pub client_token: Option<String>,
    pub dry_run: Option<bool>,
    pub schema_delete_option: Option<String>,
    pub type_name: String,
}

Fields

client_token: Option<String>

User-provided idempotency token.

dry_run: Option<bool>

Use this option to view a summary of the deletion request without deleting any data or the data type. This option is useful when you only want to understand what will be deleted. Once you validate that the data to be deleted is what you intend to delete, you can run the same command without specifying the DryRun option.

schema_delete_option: Option<String>

Use the SchemaDeleteOption to delete a custom inventory type (schema). If you don't choose this option, the system only deletes existing inventory data associated with the custom inventory type. Choose one of the following options:

DisableSchema: If you choose this option, the system ignores all inventory data for the specified version, and any earlier versions. To enable this schema again, you must call the PutInventory action for a version greater than the disabled version.

DeleteSchema: This option deletes the specified custom type from the Inventory service. You can recreate the schema later, if you want.

type_name: String

The name of the custom inventory type for which you want to delete either all previously collected data, or the inventory type itself.

Trait Implementations

impl Clone for DeleteInventoryRequest[src]

impl Debug for DeleteInventoryRequest[src]

impl Default for DeleteInventoryRequest[src]

impl PartialEq<DeleteInventoryRequest> for DeleteInventoryRequest[src]

impl Serialize for DeleteInventoryRequest[src]

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