AWSDynamoDBTransactWriteItemsInput
Objective-C
@interface AWSDynamoDBTransactWriteItemsInput
Swift
class AWSDynamoDBTransactWriteItemsInput
-
Providing a
ClientRequestToken
makes the call toTransactWriteItems
idempotent, meaning that multiple identical calls have the same effect as one single call.Although multiple identical calls using the same client request token produce the same result on the server (no side effects), the responses to the calls might not be the same. If the
ReturnConsumedCapacity
parameter is set, then the initialTransactWriteItems
call returns the amount of write capacity units consumed in making the changes. SubsequentTransactWriteItems
calls with the same client token return the number of read capacity units consumed in reading the item.A client request token is valid for 10 minutes after the first request that uses it is completed. After 10 minutes, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 10 minutes, or the result might not be idempotent.
If you submit a request with the same client token but a change in other parameters within the 10-minute idempotency window, DynamoDB returns an
IdempotentParameterMismatch
exception.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientRequestToken;
Swift
var clientRequestToken: String? { get set }
-
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 }
-
Determines whether item collection metrics are returned. If set to
SIZE
, the response includes statistics about item collections (if any), that were modified during the operation and are returned in the response. If set toNONE
(the default), no statistics are returned.Declaration
Objective-C
@property (nonatomic) AWSDynamoDBReturnItemCollectionMetrics returnItemCollectionMetrics;
Swift
var returnItemCollectionMetrics: AWSDynamoDBReturnItemCollectionMetrics { get set }
-
An ordered array of up to 100
TransactWriteItem
objects, each of which contains aConditionCheck
,Put
,Update
, orDelete
object. These can operate on items in different tables, but the tables must reside in the same Amazon Web Services account and Region, and no two of them can operate on the same item.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBTransactWriteItem *> *_Nullable transactItems;
Swift
var transactItems: [AWSDynamoDBTransactWriteItem]? { get set }