Interface SplitStringProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SplitStringProperty.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-24T11:33:17.365Z") @Stability(Stable) public interface SplitStringProperty extends software.amazon.jsii.JsiiSerializable
Use this processor to split a field into an array of strings using a delimiting character.

For more information about this processor including examples, see splitString in the CloudWatch Logs User Guide.

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.*;
 SplitStringProperty splitStringProperty = SplitStringProperty.builder()
         .entries(List.of(SplitStringEntryProperty.builder()
                 .delimiter(DelimiterCharacter.COMMA)
                 .source("source")
                 .build()))
         .build();