AWSSimpleDBReplaceableAttribute
Objective-C
@interface AWSSimpleDBReplaceableAttribute
Swift
class AWSSimpleDBReplaceableAttribute
Required parameters: [Name, Value]
-
The name of the replaceable attribute.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable name;
Swift
var name: String? { get set }
-
A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is
false
.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable replace;
Swift
var replace: NSNumber? { get set }
-
The value of the replaceable attribute.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable value;
Swift
var value: String? { get set }