DynamoDBAction constructor

DynamoDBAction({
  1. required String hashKeyField,
  2. required String hashKeyValue,
  3. required String tableName,
  4. String? hashKeyType,
  5. String? operation,
  6. Payload? payload,
  7. String? payloadField,
  8. String? rangeKeyField,
  9. String? rangeKeyType,
  10. String? rangeKeyValue,
})

Implementation

DynamoDBAction({
  required this.hashKeyField,
  required this.hashKeyValue,
  required this.tableName,
  this.hashKeyType,
  this.operation,
  this.payload,
  this.payloadField,
  this.rangeKeyField,
  this.rangeKeyType,
  this.rangeKeyValue,
});