aws-cdk-lib.aws_emr.CfnCluster.ScriptBootstrapActionConfigProperty

interface ScriptBootstrapActionConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.EMR.CfnCluster.ScriptBootstrapActionConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsemr#CfnCluster_ScriptBootstrapActionConfigProperty
Javasoftware.amazon.awscdk.services.emr.CfnCluster.ScriptBootstrapActionConfigProperty
Pythonaws_cdk.aws_emr.CfnCluster.ScriptBootstrapActionConfigProperty
TypeScript aws-cdk-lib » aws_emr » CfnCluster » ScriptBootstrapActionConfigProperty

ScriptBootstrapActionConfig is a subproperty of the BootstrapActionConfig property type.

ScriptBootstrapActionConfig specifies the arguments and location of the bootstrap script for EMR to run on all cluster nodes before it installs open-source big data applications on them.

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 scriptBootstrapActionConfigProperty: emr.CfnCluster.ScriptBootstrapActionConfigProperty = {
  path: 'path',

  // the properties below are optional
  args: ['args'],
};

Properties

NameTypeDescription
pathstringLocation in Amazon S3 of the script to run during a bootstrap action.
args?string[]A list of command line arguments to pass to the bootstrap action script.

path

Type: string

Location in Amazon S3 of the script to run during a bootstrap action.


args?

Type: string[] (optional)

A list of command line arguments to pass to the bootstrap action script.