Struct aws_sdk_ssm::types::InventoryResultItem
source · #[non_exhaustive]pub struct InventoryResultItem { /* private fields */ }
Expand description
The inventory result item.
Implementations§
source§impl InventoryResultItem
impl InventoryResultItem
sourcepub fn schema_version(&self) -> Option<&str>
pub fn schema_version(&self) -> Option<&str>
The schema version for the inventory result item/
sourcepub fn capture_time(&self) -> Option<&str>
pub fn capture_time(&self) -> Option<&str>
The time inventory item data was captured.
sourcepub fn content_hash(&self) -> Option<&str>
pub fn content_hash(&self) -> Option<&str>
MD5 hash of the inventory item type contents. The content hash is used to determine whether to update inventory information. The PutInventory API doesn't update the inventory item type contents if the MD5 hash hasn't changed since last update.
source§impl InventoryResultItem
impl InventoryResultItem
sourcepub fn builder() -> InventoryResultItemBuilder
pub fn builder() -> InventoryResultItemBuilder
Creates a new builder-style object to manufacture InventoryResultItem
.
Trait Implementations§
source§impl Clone for InventoryResultItem
impl Clone for InventoryResultItem
source§fn clone(&self) -> InventoryResultItem
fn clone(&self) -> InventoryResultItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InventoryResultItem
impl Debug for InventoryResultItem
source§impl PartialEq<InventoryResultItem> for InventoryResultItem
impl PartialEq<InventoryResultItem> for InventoryResultItem
source§fn eq(&self, other: &InventoryResultItem) -> bool
fn eq(&self, other: &InventoryResultItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InventoryResultItem
Auto Trait Implementations§
impl RefUnwindSafe for InventoryResultItem
impl Send for InventoryResultItem
impl Sync for InventoryResultItem
impl Unpin for InventoryResultItem
impl UnwindSafe for InventoryResultItem
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
Mutably borrows from an owned value. Read more