Interface MoveKeysProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MoveKeysProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:44.954Z")
@Stability(Stable)
public interface MoveKeysProperty
extends software.amazon.jsii.JsiiSerializable
This processor moves a key from one field to another.
The original key is deleted. For more information about this processor including examples, see moveKeys in the CloudWatch Logs User Guide.
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.*;
MoveKeysProperty moveKeysProperty = MoveKeysProperty.builder()
.entries(List.of(MoveKeyEntryProperty.builder()
.source("source")
.target("target")
// the properties below are optional
.overwriteIfExists(false)
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forMoveKeysPropertystatic final classAn implementation forMoveKeysProperty -
Method Summary
Modifier and TypeMethodDescriptionstatic MoveKeysProperty.Builderbuilder()An array of objects, where each object contains information about one key to move.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEntries
An array of objects, where each object contains information about one key to move. -
builder
- Returns:
- a
MoveKeysProperty.BuilderofMoveKeysProperty
-