Class: Aws::MarketplaceEntitlementService::Types::EntitlementValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceEntitlementService::Types::EntitlementValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-marketplaceentitlementservice/types.rb
Overview
The EntitlementValue represents the amount of capacity that the customer is entitled to for the product.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#boolean_value ⇒ Boolean
The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type.
-
#double_value ⇒ Float
The DoubleValue field will be populated with a double value when the entitlement is a double type.
-
#integer_value ⇒ Integer
The IntegerValue field will be populated with an integer value when the entitlement is an integer type.
-
#string_value ⇒ String
The StringValue field will be populated with a string value when the entitlement is a string type.
Instance Attribute Details
#boolean_value ⇒ Boolean
The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.
89 90 91 92 93 94 95 96 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 89 class EntitlementValue < Struct.new( :integer_value, :double_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |
#double_value ⇒ Float
The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.
89 90 91 92 93 94 95 96 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 89 class EntitlementValue < Struct.new( :integer_value, :double_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |
#integer_value ⇒ Integer
The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.
89 90 91 92 93 94 95 96 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 89 class EntitlementValue < Struct.new( :integer_value, :double_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |
#string_value ⇒ String
The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.
89 90 91 92 93 94 95 96 |
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 89 class EntitlementValue < Struct.new( :integer_value, :double_value, :boolean_value, :string_value) SENSITIVE = [] include Aws::Structure end |