Interface CfnTransformerPropsMixin.RenameKeyEntryProperty

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

@Stability(Stable) public static interface CfnTransformerPropsMixin.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.cfnpropertymixins.services.logs.*;
 RenameKeyEntryProperty renameKeyEntryProperty = RenameKeyEntryProperty.builder()
         .key("key")
         .overwriteIfExists(false)
         .renameTo("renameTo")
         .build();
 

See Also: