[][src]Struct rusoto_license_manager::CreateLicenseConfigurationRequest

pub struct CreateLicenseConfigurationRequest {
    pub description: Option<String>,
    pub license_count: Option<i64>,
    pub license_count_hard_limit: Option<bool>,
    pub license_counting_type: String,
    pub license_rules: Option<Vec<String>>,
    pub name: String,
    pub product_information_list: Option<Vec<ProductInformation>>,
    pub tags: Option<Vec<Tag>>,
}

Fields

description: Option<String>

Description of the license configuration.

license_count: Option<i64>

Number of licenses managed by the license configuration.

license_count_hard_limit: Option<bool>

Indicates whether hard or soft license enforcement is used. Exceeding a hard limit blocks the launch of new instances.

license_counting_type: String

Dimension used to track the license inventory.

license_rules: Option<Vec<String>>

License rules. The syntax is #name=value (for example, #allowedTenancy=EC2-DedicatedHost). Available rules vary by dimension.

  • Cores dimension: allowedTenancy | maximumCores | minimumCores

  • Instances dimension: allowedTenancy | maximumCores | minimumCores | maximumSockets | minimumSockets | maximumVcpus | minimumVcpus

  • Sockets dimension: allowedTenancy | maximumSockets | minimumSockets

  • vCPUs dimension: allowedTenancy | honorVcpuOptimization | maximumVcpus | minimumVcpus

name: String

Name of the license configuration.

product_information_list: Option<Vec<ProductInformation>>

Product information.

tags: Option<Vec<Tag>>

Tags to add to the license configuration.

Trait Implementations

impl Clone for CreateLicenseConfigurationRequest[src]

impl Debug for CreateLicenseConfigurationRequest[src]

impl Default for CreateLicenseConfigurationRequest[src]

impl PartialEq<CreateLicenseConfigurationRequest> for CreateLicenseConfigurationRequest[src]

impl Serialize for CreateLicenseConfigurationRequest[src]

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