AWSDynamoDBExecuteStatementInput
Objective-C
@interface AWSDynamoDBExecuteStatementInput
Swift
class AWSDynamoDBExecuteStatementInput
-
The consistency of a read operation. If set to
true
, then a strongly consistent read is used; otherwise, an eventually consistent read is used.Declaration
Objective-C
@property (nonatomic, strong) NSNumber *_Nullable consistentRead;
Swift
var consistentRead: NSNumber? { get set }
-
Set this value to get remaining results, if
NextToken
was returned in the statement response.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }
-
The parameters for the PartiQL statement, if any.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBAttributeValue *> *_Nullable parameters;
Swift
var parameters: [AWSDynamoDBAttributeValue]? { get set }
-
The PartiQL statement representing the operation to run.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable statement;
Swift
var statement: String? { get set }