Class MoveKeysProperty
This processor moves a key from one field to another.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MoveKeysProperty : IMoveKeysProperty
Syntax (vb)
Public Class MoveKeysProperty Implements IMoveKeysProperty
Remarks
The original key is deleted. For more information about this processor including examples, see moveKeys 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 moveKeysProperty = new MoveKeysProperty {
Entries = new [] { new MoveKeyEntryProperty {
Source = "source",
Target = "target",
// the properties below are optional
OverwriteIfExists = false
} }
};
Synopsis
Constructors
MoveKeysProperty() | This processor moves a key from one field to another. |
Properties
Entries | An array of objects, where each object contains information about one key to move. |
Constructors
MoveKeysProperty()
This processor moves a key from one field to another.
public MoveKeysProperty()
Remarks
The original key is deleted. For more information about this processor including examples, see moveKeys 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 moveKeysProperty = new MoveKeysProperty {
Entries = new [] { new MoveKeyEntryProperty {
Source = "source",
Target = "target",
// the properties below are optional
OverwriteIfExists = false
} }
};
Properties
Entries
An array of objects, where each object contains information about one key to move.
public IMoveKeyEntryProperty[] Entries { get; set; }
Property Value
Remarks
The original key is deleted. For more information about this processor including examples, see moveKeys in the CloudWatch Logs User Guide.
ExampleMetadata: fixture=_generated