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.112.0 (build de1bc80)",
date="2025-07-29T17:51:03.370Z")
@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.InitializationMode
Nested 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.protected
DataConverterProcessor
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
DataConverterProcessor
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetType()
The type of data conversion operation.void
setType
(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, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods 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.
-