Interface MoveKeyEntryProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MoveKeyEntryProperty.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-29T17:51:03.402Z") @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();
 
  • Method Details