[][src]Struct rusoto_license_manager::LicenseConfiguration

pub struct LicenseConfiguration {
    pub automated_discovery_information: Option<AutomatedDiscoveryInformation>,
    pub consumed_license_summary_list: Option<Vec<ConsumedLicenseSummary>>,
    pub consumed_licenses: Option<i64>,
    pub description: Option<String>,
    pub license_configuration_arn: Option<String>,
    pub license_configuration_id: Option<String>,
    pub license_count: Option<i64>,
    pub license_count_hard_limit: Option<bool>,
    pub license_counting_type: Option<String>,
    pub license_rules: Option<Vec<String>>,
    pub managed_resource_summary_list: Option<Vec<ManagedResourceSummary>>,
    pub name: Option<String>,
    pub owner_account_id: Option<String>,
    pub product_information_list: Option<Vec<ProductInformation>>,
    pub status: Option<String>,
}

A license configuration is an abstraction of a customer license agreement that can be consumed and enforced by License Manager. Components include specifications for the license type (licensing by instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy, Dedicated Instance, Dedicated Host, or all of these), host affinity (how long a VM must be associated with a host), and the number of licenses purchased and used.

Fields

automated_discovery_information: Option<AutomatedDiscoveryInformation>

Automated discovery information.

consumed_license_summary_list: Option<Vec<ConsumedLicenseSummary>>

Summaries for licenses consumed by various resources.

consumed_licenses: Option<i64>

Number of licenses consumed.

description: Option<String>

Description of the license configuration.

license_configuration_arn: Option<String>

Amazon Resource Name (ARN) of the license configuration.

license_configuration_id: Option<String>

Unique ID of the license configuration.

license_count: Option<i64>

Number of licenses managed by the license configuration.

license_count_hard_limit: Option<bool>

Number of available licenses as a hard limit.

license_counting_type: Option<String>

Dimension to use to track the license inventory.

license_rules: Option<Vec<String>>

License rules.

managed_resource_summary_list: Option<Vec<ManagedResourceSummary>>

Summaries for managed resources.

name: Option<String>

Name of the license configuration.

owner_account_id: Option<String>

Account ID of the license configuration's owner.

product_information_list: Option<Vec<ProductInformation>>

Product information.

status: Option<String>

Status of the license configuration.

Trait Implementations

impl Clone for LicenseConfiguration[src]

impl Debug for LicenseConfiguration[src]

impl Default for LicenseConfiguration[src]

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

impl PartialEq<LicenseConfiguration> for LicenseConfiguration[src]

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