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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStep.KeyValueProperty
static final class
An implementation forCfnStep.KeyValueProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The unique identifier of a key-value pair.- See Also:
-
getValue
The value part of the identified key.- See Also:
-
builder
- Returns:
- a
CfnStep.KeyValueProperty.Builder
ofCfnStep.KeyValueProperty
-