class Aws::SimpleDB::Types::DeleteAttributesRequest

@note When making an API call, you may pass DeleteAttributesRequest

data as a hash:

    {
      domain_name: "String", # required
      item_name: "String", # required
      attributes: [
        {
          name: "String", # required
          alternate_name_encoding: "String",
          value: "String", # required
          alternate_value_encoding: "String",
        },
      ],
      expected: {
        name: "String",
        value: "String",
        exists: false,
      },
    }

@!attribute [rw] domain_name

The name of the domain in which to perform the operation.
@return [String]

@!attribute [rw] item_name

The name of the item. Similar to rows on a spreadsheet, items
represent individual objects that contain one or more
value-attribute pairs.
@return [String]

@!attribute [rw] attributes

A list of Attributes. Similar to columns on a spreadsheet,
attributes represent categories of data that can be assigned to
items.
@return [Array<Types::Attribute>]

@!attribute [rw] expected

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.
@return [Types::UpdateCondition]

Constants

SENSITIVE