[][src]Struct rusoto_license_manager::CreateLicenseVersionRequest

pub struct CreateLicenseVersionRequest {
    pub client_token: String,
    pub consumption_configuration: ConsumptionConfiguration,
    pub entitlements: Vec<Entitlement>,
    pub home_region: String,
    pub issuer: Issuer,
    pub license_arn: String,
    pub license_metadata: Option<Vec<Metadata>>,
    pub license_name: String,
    pub product_name: String,
    pub source_version: Option<String>,
    pub status: String,
    pub validity: DatetimeRange,
}

Fields

client_token: String

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

consumption_configuration: ConsumptionConfiguration

Configuration for consumption of the license. Choose a provisional configuration for workloads running with continuous connectivity. Choose a borrow configuration for workloads with offline usage.

entitlements: Vec<Entitlement>

License entitlements.

home_region: String

Home Region of the license.

issuer: Issuer

License issuer.

license_arn: String

Amazon Resource Name (ARN) of the license.

license_metadata: Option<Vec<Metadata>>

Information about the license.

license_name: String

License name.

product_name: String

Product name.

source_version: Option<String>

Current version of the license.

status: String

License status.

validity: DatetimeRange

Date and time range during which the license is valid, in ISO8601-UTC format.

Trait Implementations

impl Clone for CreateLicenseVersionRequest[src]

impl Debug for CreateLicenseVersionRequest[src]

impl Default for CreateLicenseVersionRequest[src]

impl PartialEq<CreateLicenseVersionRequest> for CreateLicenseVersionRequest[src]

impl Serialize for CreateLicenseVersionRequest[src]

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