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.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:43.221Z")
@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 SummaryNested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObjectsoftware.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.services.logs.IProcessorIProcessor.Jsii$Default, IProcessor.Jsii$Proxy
- 
Constructor SummaryConstructorsModifierConstructorDescriptionCreates a new string mutator processor.protectedStringMutatorProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedStringMutatorProcessor(software.amazon.jsii.JsiiObjectRef objRef) 
- 
Method SummaryModifier and TypeMethodDescriptiongetType()The type of string mutation operation.voidsetType(StringMutatorType value) The type of string mutation operation.Methods inherited from class software.amazon.jsii.JsiiObjectjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Constructor Details- 
StringMutatorProcessorprotected StringMutatorProcessor(software.amazon.jsii.JsiiObjectRef objRef) 
- 
StringMutatorProcessorprotected StringMutatorProcessor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) 
- 
StringMutatorProcessorCreates a new string mutator processor.- Parameters:
- props- This parameter is required.
 
 
- 
- 
Method Details- 
getTypeThe type of string mutation operation.
- 
setTypeThe type of string mutation operation.
 
-