Interface TransformerOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TransformerOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:41.809Z")
@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 classA builder forTransformerOptionsstatic final classAn implementation forTransformerOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic TransformerOptions.Builderbuilder()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.BuilderofTransformerOptions
-