AWSDynamoDBBatchStatementRequest

Objective-C

@interface AWSDynamoDBBatchStatementRequest

Swift

class AWSDynamoDBBatchStatementRequest

A PartiQL batch statement request.

Required parameters: [Statement]

  • The read consistency of the PartiQL batch request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable consistentRead;

    Swift

    var consistentRead: NSNumber? { get set }
  • The parameters associated with a PartiQL statement in the batch request.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<AWSDynamoDBAttributeValue *> *_Nullable parameters;

    Swift

    var parameters: [AWSDynamoDBAttributeValue]? { get set }
  • An optional parameter that returns the item attributes for a PartiQL batch request operation that failed a condition check.

    There is no additional cost associated with requesting a return value aside from the small network and processing overhead of receiving a larger response. No read capacity units are consumed.

    Declaration

    Objective-C

    @property (nonatomic) AWSDynamoDBReturnValuesOnConditionCheckFailure returnValuesOnConditionCheckFailure;

    Swift

    var returnValuesOnConditionCheckFailure: AWSDynamoDBReturnValuesOnConditionCheckFailure { get set }
  • A valid PartiQL statement.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable statement;

    Swift

    var statement: String? { get set }