aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty

interface ScriptBootstrapActionConfigProperty

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

Configuration of the script to run during a bootstrap action.

See also: https://docs.aws.amazon.com/emr/latest/APIReference/API_ScriptBootstrapActionConfig.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 scriptBootstrapActionConfigProperty: stepfunctions_tasks.EmrCreateCluster.ScriptBootstrapActionConfigProperty = {
  path: 'path',

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

Properties

NameTypeDescription
pathstringLocation 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.