SplitStringProperty

class aws_cdk.aws_logs.SplitStringProperty(*, entries)

Bases: object

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.

Parameters:

entries (Sequence[Union[SplitStringEntryProperty, Dict[str, Any]]]) – An array of SplitStringEntry objects, where each object contains information about one field to split.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_logs as logs

split_string_property = logs.SplitStringProperty(
    entries=[logs.SplitStringEntryProperty(
        delimiter=logs.DelimiterCharacter.COMMA,
        source="source"
    )]
)

Attributes

entries

An array of SplitStringEntry objects, where each object contains information about one field to split.