AWSDynamoDBBatchExecuteStatementInput
Objective-C
@interface AWSDynamoDBBatchExecuteStatementInput
Swift
class AWSDynamoDBBatchExecuteStatementInput
-
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response:
INDEXES
- The response includes the aggregateConsumedCapacity
for the operation, together withConsumedCapacity
for each table and secondary index that was accessed.Note that some operations, such as
GetItem
andBatchGetItem
, do not access any indexes at all. In these cases, specifyingINDEXES
will only returnConsumedCapacity
information for table(s).TOTAL
- The response includes only the aggregateConsumedCapacity
for the operation.NONE
- NoConsumedCapacity
details are included in the response.
Declaration
Objective-C
@property (nonatomic) AWSDynamoDBReturnConsumedCapacity returnConsumedCapacity;
Swift
var returnConsumedCapacity: AWSDynamoDBReturnConsumedCapacity { get set }
-
The list of PartiQL statements representing the batch to run.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBBatchStatementRequest *> *_Nullable statements;
Swift
var statements: [AWSDynamoDBBatchStatementRequest]? { get set }