[][src]Struct rusoto_license_manager::CheckoutBorrowLicenseRequest

pub struct CheckoutBorrowLicenseRequest {
    pub checkout_metadata: Option<Vec<Metadata>>,
    pub client_token: String,
    pub digital_signature_method: String,
    pub entitlements: Vec<EntitlementData>,
    pub license_arn: String,
    pub node_id: Option<String>,
}

Fields

checkout_metadata: Option<Vec<Metadata>>

Information about constraints.

client_token: String

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

digital_signature_method: String

Digital signature method. The possible value is JSON Web Signature (JWS) algorithm PS384. For more information, see RFC 7518 Digital Signature with RSASSA-PSS.

entitlements: Vec<EntitlementData>

License entitlements. Partial checkouts are not supported.

license_arn: String

Amazon Resource Name (ARN) of the license. The license must use the borrow consumption configuration.

node_id: Option<String>

Node ID.

Trait Implementations

impl Clone for CheckoutBorrowLicenseRequest[src]

impl Debug for CheckoutBorrowLicenseRequest[src]

impl Default for CheckoutBorrowLicenseRequest[src]

impl PartialEq<CheckoutBorrowLicenseRequest> for CheckoutBorrowLicenseRequest[src]

impl Serialize for CheckoutBorrowLicenseRequest[src]

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