Class DataConverterProcessor
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.logs.DataConverterProcessor
- All Implemented Interfaces:
IProcessor,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.197Z")
@Stability(Stable)
public class DataConverterProcessor
extends software.amazon.jsii.JsiiObject
implements IProcessor
Processor for data conversion operations.
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.*;
DataConverterProcessor dataConverterProcessor = DataConverterProcessor.Builder.create()
.type(DataConverterType.TYPE_CONVERTER)
// the properties below are optional
.dateTimeConverterOptions(DateTimeConverterProperty.builder()
.locale("locale")
.matchPatterns(List.of("matchPatterns"))
.source("source")
.target("target")
// the properties below are optional
.sourceTimezone("sourceTimezone")
.targetFormat("targetFormat")
.targetTimezone("targetTimezone")
.build())
.typeConverterOptions(TypeConverterProperty.builder()
.entries(List.of(TypeConverterEntryProperty.builder()
.key("key")
.type(TypeConverterType.BOOLEAN)
.build()))
.build())
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.logs.IProcessor
IProcessor.Jsii$Default, IProcessor.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionCreates a new data converter processor.protectedDataConverterProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedDataConverterProcessor(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetType()The type of data conversion operation.voidsetType(DataConverterType value) The type of data conversion operation.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
DataConverterProcessor
protected DataConverterProcessor(software.amazon.jsii.JsiiObjectRef objRef) -
DataConverterProcessor
protected DataConverterProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
DataConverterProcessor
Creates a new data converter processor.- Parameters:
props- This parameter is required.
-
-
Method Details
-
getType
The type of data conversion operation. -
setType
The type of data conversion operation.
-