Interface CfnTransformerPropsMixin.MoveKeyEntryProperty

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

@Stability(Stable) public static interface CfnTransformerPropsMixin.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.mixins.preview.services.logs.mixins.*;
 MoveKeyEntryProperty moveKeyEntryProperty = MoveKeyEntryProperty.builder()
         .overwriteIfExists(false)
         .source("source")
         .target("target")
         .build();
 

See Also: