Struct aws_sdk_ssm::types::InventoryItemSchema
source · #[non_exhaustive]pub struct InventoryItemSchema { /* private fields */ }
Expand description
The inventory item schema definition. Users can use this to compose inventory query filters.
Implementations§
source§impl InventoryItemSchema
impl InventoryItemSchema
sourcepub fn type_name(&self) -> Option<&str>
pub fn type_name(&self) -> Option<&str>
The name of the inventory type. Default inventory item type names start with Amazon Web Services. Custom inventory type names will start with Custom. Default inventory item types include the following: AWS:AWSComponent
, AWS:Application
, AWS:InstanceInformation
, AWS:Network
, and AWS:WindowsUpdate
.
sourcepub fn attributes(&self) -> Option<&[InventoryItemAttribute]>
pub fn attributes(&self) -> Option<&[InventoryItemAttribute]>
The schema attributes for inventory. This contains data type and attribute name.
sourcepub fn display_name(&self) -> Option<&str>
pub fn display_name(&self) -> Option<&str>
The alias name of the inventory type. The alias name is used for display purposes.
source§impl InventoryItemSchema
impl InventoryItemSchema
sourcepub fn builder() -> InventoryItemSchemaBuilder
pub fn builder() -> InventoryItemSchemaBuilder
Creates a new builder-style object to manufacture InventoryItemSchema
.
Trait Implementations§
source§impl Clone for InventoryItemSchema
impl Clone for InventoryItemSchema
source§fn clone(&self) -> InventoryItemSchema
fn clone(&self) -> InventoryItemSchema
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 InventoryItemSchema
impl Debug for InventoryItemSchema
source§impl PartialEq<InventoryItemSchema> for InventoryItemSchema
impl PartialEq<InventoryItemSchema> for InventoryItemSchema
source§fn eq(&self, other: &InventoryItemSchema) -> bool
fn eq(&self, other: &InventoryItemSchema) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InventoryItemSchema
Auto Trait Implementations§
impl RefUnwindSafe for InventoryItemSchema
impl Send for InventoryItemSchema
impl Sync for InventoryItemSchema
impl Unpin for InventoryItemSchema
impl UnwindSafe for InventoryItemSchema
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