LogTransformerTransformerConfigCopyValueEntry constructor

const LogTransformerTransformerConfigCopyValueEntry({
  1. Input<bool?>? overwriteIfExists,
  2. required Input<String> source,
  3. required Input<String> target,
})

Creates a new LogTransformerTransformerConfigCopyValueEntry. overwriteIfExists Specifies whether to overwrite the value if the destination key already exists. Defaults to false. source Specifies the key to modify. target Specifies the key to move to.

Implementation

const LogTransformerTransformerConfigCopyValueEntry({
  this.overwriteIfExists,
  required this.source,
  required this.target,
});