AWSSimpleDBDeleteAttributesRequest

Objective-C

@interface AWSSimpleDBDeleteAttributesRequest

Swift

class AWSSimpleDBDeleteAttributesRequest
  • A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSSimpleDBAttribute *> *_Nullable attributes;

    Swift

    var attributes: [AWSSimpleDBAttribute]? { get set }
  • The name of the domain in which to perform the operation.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable domainName;

    Swift

    var domainName: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSSimpleDBUpdateCondition *_Nullable expected;

    Swift

    var expected: AWSSimpleDBUpdateCondition? { get set }
  • The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable itemName;

    Swift

    var itemName: String? { get set }