Interface TransformerOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
TransformerOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-24T11:33:17.375Z") @Stability(Stable) public interface TransformerOptions extends software.amazon.jsii.JsiiSerializable
Properties for Transformer created from LogGroup.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.logs.*;
 IProcessor processor;
 TransformerOptions transformerOptions = TransformerOptions.builder()
         .transformerConfig(List.of(processor))
         .transformerName("transformerName")
         .build();