Struct rusoto_marketplace_entitlement::Entitlement[][src]

pub struct Entitlement {
    pub customer_identifier: Option<String>,
    pub dimension: Option<String>,
    pub expiration_date: Option<f64>,
    pub product_code: Option<String>,
    pub value: Option<EntitlementValue>,
}

An entitlement represents capacity in a product owned by the customer. For example, a customer might own some number of users or seats in an SaaS application or some amount of data capacity in a multi-tenant database.

Fields

The customer identifier is a handle to each unique customer in an application. Customer identifiers are obtained through the ResolveCustomer operation in AWS Marketplace Metering Service.

The dimension for which the given entitlement applies. Dimensions represent categories of capacity in a product and are specified when the product is listed in AWS Marketplace.

The expiration date represents the minimum date through which this entitlement is expected to remain valid. For contractual products listed on AWS Marketplace, the expiration date is the date at which the customer will renew or cancel their contract. Customers who are opting to renew their contract will still have entitlements with an expiration date.

The product code for which the given entitlement applies. Product codes are provided by AWS Marketplace when the product listing is created.

The EntitlementValue represents the amount of capacity that the customer is entitled to for the product.

Trait Implementations

impl Default for Entitlement
[src]

Returns the "default value" for a type. Read more

impl Debug for Entitlement
[src]

Formats the value using the given formatter. Read more

impl Clone for Entitlement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Entitlement
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Entitlement

impl Sync for Entitlement