Interface CfnCluster.KeyValueProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.KeyValueProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCluster.KeyValuePropertystatic final classAn implementation forCfnCluster.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
-