Class: Aws::Billing::Types::BillingPreferenceForKey
- Inherits:
-
Struct
- Object
- Struct
- Aws::Billing::Types::BillingPreferenceForKey
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-billing/types.rb
Overview
A single key/value entry used to update a billing preference.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The preference key.
-
#value ⇒ String
The preference value.
Instance Attribute Details
#key ⇒ String
The preference key. Format depends on the feature being updated.
150 151 152 153 154 155 |
# File 'lib/aws-sdk-billing/types.rb', line 150 class BillingPreferenceForKey < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The preference value. Valid values: ENABLED or DISABLED.
150 151 152 153 154 155 |
# File 'lib/aws-sdk-billing/types.rb', line 150 class BillingPreferenceForKey < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |