aws-cdk-lib.aws_emr.CfnStep.KeyValueProperty

interface KeyValueProperty

LanguageType name
.NETAmazon.CDK.AWS.EMR.CfnStep.KeyValueProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnStep_KeyValueProperty
Javasoftware.amazon.awscdk.services.emr.CfnStep.KeyValueProperty
Pythonaws_cdk.aws_emr.CfnStep.KeyValueProperty
TypeScript aws-cdk-lib » aws_emr » CfnStep » 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 { aws_emr as emr } from 'aws-cdk-lib';
const keyValueProperty: emr.CfnStep.KeyValueProperty = {
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
key?stringThe unique identifier of a key-value pair.
value?stringThe 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.