Class StringMutatorProcessor
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.logs.StringMutatorProcessor
- All Implemented Interfaces:
IProcessor,software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.236Z")
@Stability(Stable)
public class StringMutatorProcessor
extends software.amazon.jsii.JsiiObject
implements IProcessor
Processor for string mutation 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.*;
StringMutatorProcessor stringMutatorProcessor = StringMutatorProcessor.Builder.create()
.type(StringMutatorType.LOWER_CASE)
// the properties below are optional
.lowerCaseKeys(List.of("lowerCaseKeys"))
.splitOptions(SplitStringProperty.builder()
.entries(List.of(SplitStringEntryProperty.builder()
.delimiter(DelimiterCharacter.COMMA)
.source("source")
.build()))
.build())
.substituteOptions(SubstituteStringProperty.builder()
.entries(List.of(SubstituteStringEntryProperty.builder()
.from("from")
.source("source")
.to("to")
.build()))
.build())
.trimKeys(List.of("trimKeys"))
.upperCaseKeys(List.of("upperCaseKeys"))
.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 string mutator processor.protectedStringMutatorProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedStringMutatorProcessor(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetType()The type of string mutation operation.voidsetType(StringMutatorType value) The type of string mutation 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
-
StringMutatorProcessor
protected StringMutatorProcessor(software.amazon.jsii.JsiiObjectRef objRef) -
StringMutatorProcessor
protected StringMutatorProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
StringMutatorProcessor
Creates a new string mutator processor.- Parameters:
props- This parameter is required.
-
-
Method Details
-
getType
The type of string mutation operation. -
setType
The type of string mutation operation.
-