[][src]Struct rusoto_ssm::InventoryItemSchema

pub struct InventoryItemSchema {
    pub attributes: Vec<InventoryItemAttribute>,
    pub display_name: Option<String>,
    pub type_name: String,
    pub version: Option<String>,
}

The inventory item schema definition. Users can use this to compose inventory query filters.

Fields

attributes: Vec<InventoryItemAttribute>

The schema attributes for inventory. This contains data type and attribute name.

display_name: Option<String>

The alias name of the inventory type. The alias name is used for display purposes.

type_name: String

The name of the inventory type. Default inventory item type names start with AWS. 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.

version: Option<String>

The schema version for the inventory item.

Trait Implementations

impl Clone for InventoryItemSchema[src]

impl Debug for InventoryItemSchema[src]

impl Default for InventoryItemSchema[src]

impl<'de> Deserialize<'de> for InventoryItemSchema[src]

impl PartialEq<InventoryItemSchema> for InventoryItemSchema[src]

impl StructuralPartialEq for InventoryItemSchema[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.