Class: Aws::MarketplaceEntitlementService::Types::EntitlementValue

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#boolean_valueBoolean

The BooleanValue field will be populated with a boolean value when the entitlement is a boolean type. Otherwise, the field will not be set.



95
96
97
98
99
100
101
102
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 95

class EntitlementValue < Struct.new(
  :integer_value,
  :double_value,
  :boolean_value,
  :string_value)
  SENSITIVE = []
  include Aws::Structure
end

#double_valueFloat

The DoubleValue field will be populated with a double value when the entitlement is a double type. Otherwise, the field will not be set.



95
96
97
98
99
100
101
102
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 95

class EntitlementValue < Struct.new(
  :integer_value,
  :double_value,
  :boolean_value,
  :string_value)
  SENSITIVE = []
  include Aws::Structure
end

#integer_valueInteger

The IntegerValue field will be populated with an integer value when the entitlement is an integer type. Otherwise, the field will not be set.



95
96
97
98
99
100
101
102
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 95

class EntitlementValue < Struct.new(
  :integer_value,
  :double_value,
  :boolean_value,
  :string_value)
  SENSITIVE = []
  include Aws::Structure
end

#string_valueString

The StringValue field will be populated with a string value when the entitlement is a string type. Otherwise, the field will not be set.



95
96
97
98
99
100
101
102
# File 'lib/aws-sdk-marketplaceentitlementservice/types.rb', line 95

class EntitlementValue < Struct.new(
  :integer_value,
  :double_value,
  :boolean_value,
  :string_value)
  SENSITIVE = []
  include Aws::Structure
end