[][src]Struct rusoto_license_manager::UpdateLicenseConfigurationRequest

pub struct UpdateLicenseConfigurationRequest {
    pub description: Option<String>,
    pub disassociate_when_not_found: Option<bool>,
    pub license_configuration_arn: String,
    pub license_configuration_status: Option<String>,
    pub license_count: Option<i64>,
    pub license_count_hard_limit: Option<bool>,
    pub license_rules: Option<Vec<String>>,
    pub name: Option<String>,
    pub product_information_list: Option<Vec<ProductInformation>>,
}

Fields

description: Option<String>

New description of the license configuration.

disassociate_when_not_found: Option<bool>

When true, disassociates a resource when software is uninstalled.

license_configuration_arn: String

Amazon Resource Name (ARN) of the license configuration.

license_configuration_status: Option<String>

New status of the license configuration.

license_count: Option<i64>

New number of licenses managed by the license configuration.

license_count_hard_limit: Option<bool>

New hard limit of the number of available licenses.

license_rules: Option<Vec<String>>

New license rule. The only rule that you can add after you create a license configuration is licenseAffinityToHost.

name: Option<String>

New name of the license configuration.

product_information_list: Option<Vec<ProductInformation>>

New product information.

Trait Implementations

impl Clone for UpdateLicenseConfigurationRequest[src]

impl Debug for UpdateLicenseConfigurationRequest[src]

impl Default for UpdateLicenseConfigurationRequest[src]

impl PartialEq<UpdateLicenseConfigurationRequest> for UpdateLicenseConfigurationRequest[src]

impl Serialize for UpdateLicenseConfigurationRequest[src]

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