Class: Aws::Billing::Types::BillingPreferenceForKey

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

Instance Attribute Details

#keyString

The preference key. Format depends on the feature being updated.

Returns:

  • (String)


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

#valueString

The preference value. Valid values: ENABLED or DISABLED.

Returns:

  • (String)


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