Class: Aws::SimpleDB::Types::DeleteAttributesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SimpleDB::Types::DeleteAttributesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-simpledb/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Types::Attribute>
A list of Attributes.
-
#domain_name ⇒ String
The name of the domain in which to perform the operation.
-
#expected ⇒ Types::UpdateCondition
The update condition which, if specified, determines whether the specified attributes will be deleted or not.
-
#item_name ⇒ String
The name of the item.
Instance Attribute Details
#attributes ⇒ Array<Types::Attribute>
A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.
125 126 127 128 129 130 131 132 |
# File 'lib/aws-sdk-simpledb/types.rb', line 125 class DeleteAttributesRequest < Struct.new( :domain_name, :item_name, :attributes, :expected) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
The name of the domain in which to perform the operation.
125 126 127 128 129 130 131 132 |
# File 'lib/aws-sdk-simpledb/types.rb', line 125 class DeleteAttributesRequest < Struct.new( :domain_name, :item_name, :attributes, :expected) SENSITIVE = [] include Aws::Structure end |
#expected ⇒ Types::UpdateCondition
The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.
125 126 127 128 129 130 131 132 |
# File 'lib/aws-sdk-simpledb/types.rb', line 125 class DeleteAttributesRequest < Struct.new( :domain_name, :item_name, :attributes, :expected) SENSITIVE = [] include Aws::Structure end |
#item_name ⇒ String
The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.
125 126 127 128 129 130 131 132 |
# File 'lib/aws-sdk-simpledb/types.rb', line 125 class DeleteAttributesRequest < Struct.new( :domain_name, :item_name, :attributes, :expected) SENSITIVE = [] include Aws::Structure end |