[][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 PartialEq<DeleteInventoryRequest> for DeleteInventoryRequest[src]

impl Default for DeleteInventoryRequest[src]

impl Clone for DeleteInventoryRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DeleteInventoryRequest[src]

impl Serialize for DeleteInventoryRequest[src]

Auto Trait Implementations

impl Send for DeleteInventoryRequest

impl Sync for DeleteInventoryRequest

Blanket Implementations

impl<T> From for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self