AWSDynamoDBTransactGetItemsOutput
Objective-C
@interface AWSDynamoDBTransactGetItemsOutput
Swift
class AWSDynamoDBTransactGetItemsOutput
-
If the ReturnConsumedCapacity value was
TOTAL
, this is an array ofConsumedCapacity
objects, one for each table addressed byTransactGetItem
objects in the TransactItems parameter. TheseConsumedCapacity
objects report the read-capacity units consumed by theTransactGetItems
call in that table.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBConsumedCapacity *> *_Nullable consumedCapacity;
Swift
var consumedCapacity: [AWSDynamoDBConsumedCapacity]? { get set }
-
An ordered array of up to 100
ItemResponse
objects, each of which corresponds to theTransactGetItem
object in the same position in the TransactItems array. EachItemResponse
object contains a Map of the name-value pairs that are the projected attributes of the requested item.If a requested item could not be retrieved, the corresponding
ItemResponse
object is Null, or if the requested item has no projected attributes, the correspondingItemResponse
object is an empty Map.Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSDynamoDBItemResponse *> *_Nullable responses;
Swift
var responses: [AWSDynamoDBItemResponse]? { get set }