Interface CloudWatchLogProcessorOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CloudWatchLogProcessorOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:44.108Z")
@Stability(Stable)
public interface CloudWatchLogProcessorOptions
extends software.amazon.jsii.JsiiSerializable
Options for CloudWatchLogProcessor.
Example:
Bucket bucket;
S3Bucket s3Destination = S3Bucket.Builder.create(bucket)
.processors(List.of(
new DecompressionProcessor(),
CloudWatchLogProcessor.Builder.create().dataMessageExtraction(true).build()))
.build();
DeliveryStream.Builder.create(this, "Delivery Stream")
.destination(s3Destination)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCloudWatchLogProcessorOptionsstatic final classAn implementation forCloudWatchLogProcessorOptions -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataMessageExtraction
Extract message from CloudWatch logs.This must be true.
-
builder
-