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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forTransformerOptions
static final class
An implementation forTransformerOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic TransformerOptions.Builder
builder()
List of processors in a transformer.Name of the transformer.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTransformerConfig
List of processors in a transformer. -
getTransformerName
Name of the transformer. -
builder
- Returns:
- a
TransformerOptions.Builder
ofTransformerOptions
-