interface ScriptBootstrapActionConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EMR.CfnCluster.ScriptBootstrapActionConfigProperty |
Java | software.amazon.awscdk.services.emr.CfnCluster.ScriptBootstrapActionConfigProperty |
Python | aws_cdk.aws_emr.CfnCluster.ScriptBootstrapActionConfigProperty |
TypeScript | @aws-cdk/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 * as emr from '@aws-cdk/aws-emr';
const scriptBootstrapActionConfigProperty: emr.CfnCluster.ScriptBootstrapActionConfigProperty = {
path: 'path',
// the properties below are optional
args: ['args'],
};
Properties
Name | Type | Description |
---|---|---|
path | string | Location 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.