[][src]Struct rusoto_license_manager::GetLicenseConfigurationResponse

pub struct GetLicenseConfigurationResponse {
    pub automated_discovery_information: Option<AutomatedDiscoveryInformation>,
    pub consumed_license_summary_list: Option<Vec<ConsumedLicenseSummary>>,
    pub consumed_licenses: Option<i64>,
    pub description: Option<String>,
    pub disassociate_when_not_found: Option<bool>,
    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>,
    pub tags: Option<Vec<Tag>>,
}

Fields

automated_discovery_information: Option<AutomatedDiscoveryInformation>

Automated discovery information.

consumed_license_summary_list: Option<Vec<ConsumedLicenseSummary>>

Summaries of the licenses consumed by resources.

consumed_licenses: Option<i64>

Number of licenses assigned to resources.

description: Option<String>

Description of the license configuration.

disassociate_when_not_found: Option<bool>

When true, disassociates a resource when software is uninstalled.

license_configuration_arn: Option<String>

Amazon Resource Name (ARN) of the license configuration.

license_configuration_id: Option<String>

Unique ID for the license configuration.

license_count: Option<i64>

Number of available licenses.

license_count_hard_limit: Option<bool>

Sets the number of available licenses as a hard limit.

license_counting_type: Option<String>

Dimension on which the licenses are counted.

license_rules: Option<Vec<String>>

License rules.

managed_resource_summary_list: Option<Vec<ManagedResourceSummary>>

Summaries of the managed resources.

name: Option<String>

Name of the license configuration.

owner_account_id: Option<String>

Account ID of the owner of the license configuration.

product_information_list: Option<Vec<ProductInformation>>

Product information.

status: Option<String>

License configuration status.

tags: Option<Vec<Tag>>

Tags for the license configuration.

Trait Implementations

impl Clone for GetLicenseConfigurationResponse[src]

impl Debug for GetLicenseConfigurationResponse[src]

impl Default for GetLicenseConfigurationResponse[src]

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

impl PartialEq<GetLicenseConfigurationResponse> for GetLicenseConfigurationResponse[src]

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