LogTransformerTransformerConfigSubstituteStringEntry constructor

const LogTransformerTransformerConfigSubstituteStringEntry({
  1. required Input<String> from,
  2. required Input<String> source,
  3. required Input<String> to,
})

Creates a new LogTransformerTransformerConfigSubstituteStringEntry. from Specifies the regular expression string to be replaced. source Specifies the key to modify. to Specifies the string to be substituted for each match of from.

Implementation

const LogTransformerTransformerConfigSubstituteStringEntry({
  required this.from,
  required this.source,
  required this.to,
});