Interface MoveKeyEntryProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MoveKeyEntryProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:13.228Z")
@Stability(Stable)
public interface MoveKeyEntryProperty
extends software.amazon.jsii.JsiiSerializable
This object defines one key that will be moved with the moveKey processor.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.logs.*;
MoveKeyEntryProperty moveKeyEntryProperty = MoveKeyEntryProperty.builder()
.source("source")
.target("target")
// the properties below are optional
.overwriteIfExists(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMoveKeyEntryPropertystatic final classAn implementation forMoveKeyEntryProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic MoveKeyEntryProperty.Builderbuilder()default BooleanSpecifies whether to overwrite the value if the target key already exists.The key to move.The key to move to.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSource
The key to move. -
getTarget
The key to move to. -
getOverwriteIfExists
Specifies whether to overwrite the value if the target key already exists.Default: false
-
builder
- Returns:
- a
MoveKeyEntryProperty.BuilderofMoveKeyEntryProperty
-