Interface MoveKeysProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
MoveKeysProperty.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-24T11:33:17.323Z")
@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 class
A builder forMoveKeysProperty
static final class
An implementation forMoveKeysProperty
-
Method Summary
Modifier and TypeMethodDescriptionstatic MoveKeysProperty.Builder
builder()
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.Builder
ofMoveKeysProperty
-