Class: Aws::MarketplaceEntitlementService::Types::Entitlement
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceEntitlementService::Types::Entitlement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-marketplaceentitlementservice/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_identifier ⇒ String
The customer identifier is a handle to each unique customer in an application.
-
#dimension ⇒ String
The dimension for which the given entitlement applies.
-
#expiration_date ⇒ Time
The expiration date represents the minimum date through which this entitlement is expected to remain valid.
-
#product_code ⇒ String
The product code for which the given entitlement applies.
-
#value ⇒ Types::EntitlementValue
The EntitlementValue represents the amount of capacity that the customer is entitled to for the product.
Instance Attribute Details
#customer_identifier ⇒ String
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.
52 53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 52 class Entitlement < Struct.new( :product_code, :dimension, :customer_identifier, :value, :expiration_date) SENSITIVE = [] include Aws::Structure end |
#dimension ⇒ String
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.
52 53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 52 class Entitlement < Struct.new( :product_code, :dimension, :customer_identifier, :value, :expiration_date) SENSITIVE = [] include Aws::Structure end |
#expiration_date ⇒ Time
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.
52 53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 52 class Entitlement < Struct.new( :product_code, :dimension, :customer_identifier, :value, :expiration_date) SENSITIVE = [] include Aws::Structure end |
#product_code ⇒ String
The product code for which the given entitlement applies. Product codes are provided by AWS Marketplace when the product listing is created.
52 53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 52 class Entitlement < Struct.new( :product_code, :dimension, :customer_identifier, :value, :expiration_date) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Types::EntitlementValue
The EntitlementValue represents the amount of capacity that the customer is entitled to for the product.
52 53 54 55 56 57 58 59 60 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 52 class Entitlement < Struct.new( :product_code, :dimension, :customer_identifier, :value, :expiration_date) SENSITIVE = [] include Aws::Structure end |