pub struct LicenseConfiguration {Show 15 fields
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>,
}Expand description
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§
Source§impl Clone for LicenseConfiguration
impl Clone for LicenseConfiguration
Source§fn clone(&self) -> LicenseConfiguration
fn clone(&self) -> LicenseConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more