interface SplitStringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnTransformerPropsMixin.SplitStringProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnTransformerPropsMixin_SplitStringProperty |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnTransformerPropsMixin.SplitStringProperty |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnTransformerPropsMixin.SplitStringProperty |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnTransformerPropsMixin » 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 { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const splitStringProperty: logs_mixins.CfnTransformerPropsMixin.SplitStringProperty = {
entries: [{
delimiter: 'delimiter',
source: 'source',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entries? | IResolvable | (IResolvable | Split)[] | An array of SplitStringEntry objects, where each object contains the information about one field to split. |
entries?
Type:
IResolvable | (IResolvable | Split)[]
(optional)
An array of SplitStringEntry objects, where each object contains the information about one field to split.

.NET
Go
Java
Python
TypeScript