aws-cdk-lib.aws_stepfunctions_tasks.EmrCreateCluster.BootstrapActionConfigProperty

interface BootstrapActionConfigProperty

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

Configuration of a bootstrap action.

See the RunJobFlow API for complete documentation on input parameters

See also: https://docs.aws.amazon.com/emr/latest/APIReference/API_BootstrapActionConfig.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 bootstrapActionConfigProperty: stepfunctions_tasks.EmrCreateCluster.BootstrapActionConfigProperty = {
  name: 'name',
  scriptBootstrapAction: {
    path: 'path',

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

Properties

NameTypeDescription
namestringThe name of the bootstrap action.
scriptBootstrapActionScriptBootstrapActionConfigPropertyThe script run by the bootstrap action.

name

Type: string

The name of the bootstrap action.


scriptBootstrapAction

Type: ScriptBootstrapActionConfigProperty

The script run by the bootstrap action.