AWSSimpleDBGetAttributesRequest

Objective-C

@interface AWSSimpleDBGetAttributesRequest

Swift

class AWSSimpleDBGetAttributesRequest
  • The names of the attributes.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable attributeNames;

    Swift

    var attributeNames: [String]? { get set }
  • Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If true, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable consistentRead;

    Swift

    var consistentRead: NSNumber? { 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 name of the item.

    Declaration

    Objective-C

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

    Swift

    var itemName: String? { get set }