Interface CfnTransformer.ISplitStringProperty
Use this processor to split a field into an array of strings using a delimiting character.
Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISplitStringProperty
Syntax (vb)
Public Interface ISplitStringProperty
Remarks
For more information about this processor including examples, see splitString in the CloudWatch Logs User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Logs;
var splitStringProperty = new SplitStringProperty {
Entries = new [] { new SplitStringEntryProperty {
Delimiter = "delimiter",
Source = "source"
} }
};
Synopsis
Properties
Entries | An array of |
Properties
Entries
An array of SplitStringEntry
objects, where each object contains the information about one field to split.
object Entries { get; }
Property Value
System.