interface SplitStringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Logs.CfnTransformerPropsMixin.SplitStringProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslogs#CfnTransformerPropsMixin_SplitStringProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.logs.CfnTransformerPropsMixin.SplitStringProperty |
Python | aws_cdk.cfn_property_mixins.aws_logs.CfnTransformerPropsMixin.SplitStringProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_logs » 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 { aws_logs as logs } from '@aws-cdk/cfn-property-mixins';
const splitStringProperty: logs.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