Interface CfnTransformerPropsMixin.AddKeyEntryProperty

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

@Stability(Stable) public static interface CfnTransformerPropsMixin.AddKeyEntryProperty extends software.amazon.jsii.JsiiSerializable
This object defines one key that will be added with the addKeys 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.*;
 AddKeyEntryProperty addKeyEntryProperty = AddKeyEntryProperty.builder()
         .key("key")
         .overwriteIfExists(false)
         .value("value")
         .build();
 

See Also: