Class: Aws::SimpleDB::Types::ReplaceableAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::ReplaceableAttribute
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simpledb/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the replaceable attribute.
-
#replace ⇒ Boolean
A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair.
-
#value ⇒ String
The value of the replaceable attribute.
Instance Attribute Details
#name ⇒ String
The name of the replaceable attribute.
476 477 478 479 480 481 482 |
# File 'lib/aws-sdk-simpledb/types.rb', line 476 class ReplaceableAttribute < Struct.new( :name, :value, :replace) SENSITIVE = [] include Aws::Structure end |
#replace ⇒ Boolean
A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is ‘false`.
476 477 478 479 480 481 482 |
# File 'lib/aws-sdk-simpledb/types.rb', line 476 class ReplaceableAttribute < Struct.new( :name, :value, :replace) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value of the replaceable attribute.
476 477 478 479 480 481 482 |
# File 'lib/aws-sdk-simpledb/types.rb', line 476 class ReplaceableAttribute < Struct.new( :name, :value, :replace) SENSITIVE = [] include Aws::Structure end |