SplitStringEntryProperty
- class aws_cdk.aws_logs.SplitStringEntryProperty(*, delimiter, source)
Bases:
object
This object defines one log field that will be split with the splitString processor.
- Parameters:
delimiter (
DelimiterCharacter
) – The separator character to split the string on.source (
str
) – The key of the 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_entry_property = logs.SplitStringEntryProperty( delimiter=logs.DelimiterCharacter.COMMA, source="source" )
Attributes
- delimiter
The separator character to split the string on.
- source
The key of the field to split.