[][src]Struct rusoto_license_manager::ResourceInventory

pub struct ResourceInventory {
    pub platform: Option<String>,
    pub platform_version: Option<String>,
    pub resource_arn: Option<String>,
    pub resource_id: Option<String>,
    pub resource_owning_account_id: Option<String>,
    pub resource_type: Option<String>,
}

Details about a resource.

Fields

platform: Option<String>

Platform of the resource.

platform_version: Option<String>

Platform version of the resource in the inventory.

resource_arn: Option<String>

Amazon Resource Name (ARN) of the resource.

resource_id: Option<String>

ID of the resource.

resource_owning_account_id: Option<String>

ID of the account that owns the resource.

resource_type: Option<String>

Type of resource.

Trait Implementations

impl Clone for ResourceInventory[src]

impl Debug for ResourceInventory[src]

impl Default for ResourceInventory[src]

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

impl PartialEq<ResourceInventory> for ResourceInventory[src]

impl StructuralPartialEq for ResourceInventory[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, 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> Sealed<T> for T where
    T: ?Sized

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.