Show / Hide Table of Contents

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 CfnTransformer.ISplitStringProperty
Syntax (vb)
Public Interface CfnTransformer.ISplitStringProperty
Remarks

For more information about this processor including examples, see splitString in the CloudWatch Logs User Guide .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstring.html

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 SplitStringEntry objects, where each object contains the information about one field to split.

Properties

Entries

An array of SplitStringEntry objects, where each object contains the information about one field to split.

object Entries { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-splitstring.html#cfn-logs-transformer-splitstring-entries

Back to top Generated by DocFX