interface KeyValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EMR.CfnStepPropsMixin.KeyValueProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsemr#CfnStepPropsMixin_KeyValueProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.emr.CfnStepPropsMixin.KeyValueProperty |
Python | aws_cdk.cfn_property_mixins.aws_emr.CfnStepPropsMixin.KeyValueProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_emr » 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 { aws_emr as emr } from '@aws-cdk/cfn-property-mixins';
const keyValueProperty: emr.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