interface SplitStringEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.SplitStringEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_SplitStringEntryProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.SplitStringEntryProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.SplitStringEntryProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » CfnTransformerPropsMixin » 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/cfn-property-mixins';
const splitStringEntryProperty: logs.CfnTransformerPropsMixin.SplitStringEntryProperty = {
delimiter: 'delimiter',
source: 'source',
};
Properties
| Name | Type | Description |
|---|---|---|
| delimiter? | string | The separator characters to split the string entry on. |
| source? | string | The key of the field to split. |
delimiter?
Type:
string
(optional)
The separator characters to split the string entry on.
source?
Type:
string
(optional)
The key of the field to split.

.NET
Go
Java
Python
TypeScript