#[non_exhaustive]pub struct DeleteInventoryOutput {
pub deletion_id: Option<String>,
pub type_name: Option<String>,
pub deletion_summary: Option<InventoryDeletionSummary>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.deletion_id: Option<String>
Every DeleteInventory
operation 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 operations.
type_name: Option<String>
The name of the inventory data type specified in the request.
deletion_summary: Option<InventoryDeletionSummary>
A summary of the delete operation. For more information about this summary, see Understanding the delete inventory summary in the Amazon Web Services Systems Manager User Guide.
Implementations§
source§impl DeleteInventoryOutput
impl DeleteInventoryOutput
sourcepub fn deletion_id(&self) -> Option<&str>
pub fn deletion_id(&self) -> Option<&str>
Every DeleteInventory
operation 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 operations.
sourcepub fn type_name(&self) -> Option<&str>
pub fn type_name(&self) -> Option<&str>
The name of the inventory data type specified in the request.
sourcepub fn deletion_summary(&self) -> Option<&InventoryDeletionSummary>
pub fn deletion_summary(&self) -> Option<&InventoryDeletionSummary>
A summary of the delete operation. For more information about this summary, see Understanding the delete inventory summary in the Amazon Web Services Systems Manager User Guide.
source§impl DeleteInventoryOutput
impl DeleteInventoryOutput
sourcepub fn builder() -> DeleteInventoryOutputBuilder
pub fn builder() -> DeleteInventoryOutputBuilder
Creates a new builder-style object to manufacture DeleteInventoryOutput
.
Trait Implementations§
source§impl Clone for DeleteInventoryOutput
impl Clone for DeleteInventoryOutput
source§fn clone(&self) -> DeleteInventoryOutput
fn clone(&self) -> DeleteInventoryOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteInventoryOutput
impl Debug for DeleteInventoryOutput
source§impl PartialEq for DeleteInventoryOutput
impl PartialEq for DeleteInventoryOutput
source§impl RequestId for DeleteInventoryOutput
impl RequestId for DeleteInventoryOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for DeleteInventoryOutput
Auto Trait Implementations§
impl Freeze for DeleteInventoryOutput
impl RefUnwindSafe for DeleteInventoryOutput
impl Send for DeleteInventoryOutput
impl Sync for DeleteInventoryOutput
impl Unpin for DeleteInventoryOutput
impl UnwindSafe for DeleteInventoryOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more