interface SplitStringEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.SplitStringEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#SplitStringEntryProperty |
Java | software.amazon.awscdk.services.logs.SplitStringEntryProperty |
Python | aws_cdk.aws_logs.SplitStringEntryProperty |
TypeScript (source) | aws-cdk-lib » aws_logs » SplitStringEntryProperty |
This object defines one log field that will be split with the splitString processor.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const splitStringEntryProperty: logs.SplitStringEntryProperty = {
delimiter: logs.DelimiterCharacter.COMMA,
source: 'source',
};
Properties
| Name | Type | Description |
|---|---|---|
| delimiter | Delimiter | The separator character to split the string on. |
| source | string | The key of the field to split. |
delimiter
Type:
Delimiter
The separator character to split the string on.
source
Type:
string
The key of the field to split.

.NET
Go
Java
Python
TypeScript (