interface SplitStringProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Logs.SplitStringProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#SplitStringProperty |
![]() | software.amazon.awscdk.services.logs.SplitStringProperty |
![]() | aws_cdk.aws_logs.SplitStringProperty |
![]() | aws-cdk-lib » aws_logs » SplitStringProperty |
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 { aws_logs as logs } from 'aws-cdk-lib';
const splitStringProperty: logs.SplitStringProperty = {
entries: [{
delimiter: logs.DelimiterCharacter.COMMA,
source: 'source',
}],
};
Properties
Name | Type | Description |
---|---|---|
entries | Split [] | An array of SplitStringEntry objects, where each object contains information about one field to split. |
entries
Type:
Split
[]
An array of SplitStringEntry objects, where each object contains information about one field to split.