[−][src]Struct rusoto_ssm::DeleteInventoryRequest
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]
fn eq(&self, other: &DeleteInventoryRequest) -> bool
[src]
fn ne(&self, other: &DeleteInventoryRequest) -> bool
[src]
impl Default for DeleteInventoryRequest
[src]
fn default() -> DeleteInventoryRequest
[src]
impl Clone for DeleteInventoryRequest
[src]
fn clone(&self) -> 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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self