EventTargetInputTransformer constructor

const EventTargetInputTransformer({
  1. Input<Map<String, String>?>? inputPaths,
  2. required Input<String> inputTemplate,
})

Creates a new EventTargetInputTransformer. inputPaths Key value pairs specified in the form of JSONPath (for example, time = $.time) inputTemplate Template to customize data sent to the target. Must be valid JSON. To send a string value, the string value must include double quotes.

Implementation

const EventTargetInputTransformer({
  this.inputPaths,
  required this.inputTemplate,
});