Interface RenameKeyEntryProperty

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-24T11:33:17.336Z") @Stability(Stable) public interface RenameKeyEntryProperty extends software.amazon.jsii.JsiiSerializable
This object defines one key that will be renamed with the renameKey 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.*;
 RenameKeyEntryProperty renameKeyEntryProperty = RenameKeyEntryProperty.builder()
         .key("key")
         .renameTo("renameTo")
         // the properties below are optional
         .overwriteIfExists(false)
         .build();