Interface CfnStep.KeyValueProperty

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

@Stability(Stable) public static interface CfnStep.KeyValueProperty extends software.amazon.jsii.JsiiSerializable
KeyValue is a subproperty of the HadoopJarStepConfig property type.

KeyValue is used to pass parameters to a step.

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.emr.*;
 KeyValueProperty keyValueProperty = KeyValueProperty.builder()
         .key("key")
         .value("value")
         .build();