Class: Aws::SimpleDB::Types::ReplaceableItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::ReplaceableItem
- Defined in:
- gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb
Overview
Note:
When making an API call, you may pass ReplaceableItem data as a hash:
{
name: "String", # required
attributes: [ # required
{
name: "String", # required
value: "String", # required
replace: false,
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::ReplaceableAttribute>
The list of attributes for a replaceable item.
-
#name ⇒ String
The name of the replaceable item.
Instance Attribute Details
#attributes ⇒ Array<Types::ReplaceableAttribute>
The list of attributes for a replaceable item.
659 660 661 662 663 664 |
# File 'gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb', line 659 class ReplaceableItem < Struct.new( :name, :attributes) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the replaceable item.
659 660 661 662 663 664 |
# File 'gems/aws-sdk-simpledb/lib/aws-sdk-simpledb/types.rb', line 659 class ReplaceableItem < Struct.new( :name, :attributes) SENSITIVE = [] include Aws::Structure end |