interface ScriptBootstrapActionConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.StepFunctions.Tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty | 
|  Java | software.amazon.awscdk.services.stepfunctions.tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty | 
|  Python | aws_cdk.aws_stepfunctions_tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty | 
|  TypeScript (source) | @aws-cdk/aws-stepfunctions-tasks»EmrCreateCluster»ScriptBootstrapActionConfigProperty | 
Configuration of the script to run during a bootstrap action.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as stepfunctions_tasks from '@aws-cdk/aws-stepfunctions-tasks';
const scriptBootstrapActionConfigProperty: stepfunctions_tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty = {
  path: 'path',
  // the properties below are optional
  args: ['args'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| path | string | Location 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 of the script to run during a bootstrap action.
Can be either a location in Amazon S3 or on a local file system.
args?
Type:
string[]
(optional, default: No args)
A list of command line arguments to pass to the bootstrap action script.
