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.112.0 (build de1bc80)",
date="2025-07-24T11:33:17.366Z")
@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.InitializationMode
Nested 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.protected
StringMutatorProcessor
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
StringMutatorProcessor
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptiongetType()
The type of string mutation operation.void
setType
(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, 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
-
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.
-