[][src]Struct rusoto_license_manager::GrantedLicense

pub struct GrantedLicense {
    pub beneficiary: Option<String>,
    pub consumption_configuration: Option<ConsumptionConfiguration>,
    pub create_time: Option<String>,
    pub entitlements: Option<Vec<Entitlement>>,
    pub home_region: Option<String>,
    pub issuer: Option<IssuerDetails>,
    pub license_arn: Option<String>,
    pub license_metadata: Option<Vec<Metadata>>,
    pub license_name: Option<String>,
    pub product_name: Option<String>,
    pub product_sku: Option<String>,
    pub received_metadata: Option<ReceivedMetadata>,
    pub status: Option<String>,
    pub validity: Option<DatetimeRange>,
    pub version: Option<String>,
}

Describes a license that is granted to a grantee.

Fields

beneficiary: Option<String>

Granted license beneficiary.

consumption_configuration: Option<ConsumptionConfiguration>

Configuration for consumption of the license.

create_time: Option<String>

Creation time of the granted license.

entitlements: Option<Vec<Entitlement>>

License entitlements.

home_region: Option<String>

Home Region of the granted license.

issuer: Option<IssuerDetails>

Granted license issuer.

license_arn: Option<String>

Amazon Resource Name (ARN) of the license.

license_metadata: Option<Vec<Metadata>>

Granted license metadata.

license_name: Option<String>

License name.

product_name: Option<String>

Product name.

product_sku: Option<String>

Product SKU.

received_metadata: Option<ReceivedMetadata>

Granted license received metadata.

status: Option<String>

Granted license status.

validity: Option<DatetimeRange>

Date and time range during which the granted license is valid, in ISO8601-UTC format.

version: Option<String>

Version of the granted license.

Trait Implementations

impl Clone for GrantedLicense[src]

impl Debug for GrantedLicense[src]

impl Default for GrantedLicense[src]

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

impl PartialEq<GrantedLicense> for GrantedLicense[src]

impl StructuralPartialEq for GrantedLicense[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.