aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.ApplicationConfigProperty

interface ApplicationConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.StepFunctions.Tasks.EmrCreateCluster.ApplicationConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsstepfunctionstasks#EmrCreateCluster_ApplicationConfigProperty
Javasoftware.amazon.awscdk.services.stepfunctions.tasks.EmrCreateCluster.ApplicationConfigProperty
Pythonaws_cdk.aws_stepfunctions_tasks.EmrCreateCluster.ApplicationConfigProperty
TypeScript (source)aws-cdk-lib » aws_stepfunctions_tasks » EmrCreateCluster » ApplicationConfigProperty

Properties for the EMR Cluster Applications.

Applies to Amazon EMR releases 4.0 and later. A case-insensitive list of applications for Amazon EMR to install and configure when launching the cluster.

See the RunJobFlow API for complete documentation on input parameters

See also: https://docs.aws.amazon.com/emr/latest/APIReference/API_Application.html

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_stepfunctions_tasks as stepfunctions_tasks } from 'aws-cdk-lib';
const applicationConfigProperty: stepfunctions_tasks.EmrCreateCluster.ApplicationConfigProperty = {
  name: 'name',

  // the properties below are optional
  additionalInfo: {
    additionalInfoKey: 'additionalInfo',
  },
  args: ['args'],
  version: 'version',
};

Properties

NameTypeDescription
namestringThe name of the application.
additionalInfo?{ [string]: string }This option is for advanced users only.
args?string[]Arguments for Amazon EMR to pass to the application.
version?stringThe version of the application.

name

Type: string

The name of the application.


additionalInfo?

Type: { [string]: string } (optional, default: No additionalInfo)

This option is for advanced users only.

This is meta information about third-party applications that third-party vendors use for testing purposes.


args?

Type: string[] (optional, default: No args)

Arguments for Amazon EMR to pass to the application.


version?

Type: string (optional, default: No version)

The version of the application.