AWSSimpleDBPutAttributesRequest

Objective-C

@interface AWSSimpleDBPutAttributesRequest

Swift

class AWSSimpleDBPutAttributesRequest
  • The list of attributes.

    Declaration

    Objective-C

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

    Swift

    var attributes: [AWSSimpleDBReplaceableAttribute]? { 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 updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated.

    Declaration

    Objective-C

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

    Swift

    var expected: AWSSimpleDBUpdateCondition? { get set }
  • The name of the item.

    Declaration

    Objective-C

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

    Swift

    var itemName: String? { get set }