DynamoDBAction constructor

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

Implementation

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