AWSDynamoDBExecuteStatementOutput
Objective-C
@interface AWSDynamoDBExecuteStatementOutput
Swift
class AWSDynamoDBExecuteStatementOutput
-
If a read operation was used, this property will contain the result of the reade operation; a map of attribute names and their values. For the write operations this value will be empty.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<NSDictionary<NSString *, AWSDynamoDBAttributeValue *> *> *_Nullable items;
Swift
var items: [[String : AWSDynamoDBAttributeValue]]? { get set }
-
If the response of a read request exceeds the response payload limit DynamoDB will set this value in the response. If set, you can use that this value in the subsequent request to get the remaining results.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable nextToken;
Swift
var nextToken: String? { get set }