interface KeyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnStepPropsMixin.KeyValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnStepPropsMixin_KeyValueProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnStepPropsMixin.KeyValueProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnStepPropsMixin.KeyValueProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnStepPropsMixin » KeyValueProperty |
KeyValue is a subproperty of the HadoopJarStepConfig property type.
KeyValue is used to pass parameters to a step.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-step-keyvalue.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const keyValueProperty: emr_mixins.CfnStepPropsMixin.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.

.NET
Go
Java
Python
TypeScript