interface KeyValueProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.EMR.CfnCluster.KeyValueProperty | 
|  Java | software.amazon.awscdk.services.emr.CfnCluster.KeyValueProperty | 
|  Python | aws_cdk.aws_emr.CfnCluster.KeyValueProperty | 
|  TypeScript | @aws-cdk/aws-emr»CfnCluster»KeyValueProperty | 
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 * as emr from '@aws-cdk/aws-emr';
const keyValueProperty: emr.CfnCluster.KeyValueProperty = {
  key: 'key',
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| key? | string | The unique identifier of a key-value pair. | 
| value? | string | The value part of the identified key. | 
key?
Type:
string
(optional)
The unique identifier of a key-value pair.
value?
Type:
string
(optional)
The value part of the identified key.
