Interface IMoveKeyEntryProperty
This object defines one key that will be moved with the moveKey processor.
Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMoveKeyEntryProperty
Syntax (vb)
Public Interface IMoveKeyEntryProperty
Remarks
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 moveKeyEntryProperty = new MoveKeyEntryProperty {
Source = "source",
Target = "target",
// the properties below are optional
OverwriteIfExists = false
};
Synopsis
Properties
OverwriteIfExists | Specifies whether to overwrite the value if the target key already exists. |
Source | The key to move. |
Target | The key to move to. |
Properties
OverwriteIfExists
Specifies whether to overwrite the value if the target key already exists.
bool? OverwriteIfExists { get; }
Property Value
bool?
Remarks
Default: false
Source
The key to move.
string Source { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Target
The key to move to.
string Target { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated