interface ScriptBootstrapActionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnClusterPropsMixin.ScriptBootstrapActionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnClusterPropsMixin_ScriptBootstrapActionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnClusterPropsMixin.ScriptBootstrapActionConfigProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnClusterPropsMixin.ScriptBootstrapActionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnClusterPropsMixin » 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 { mixins as emr_mixins } from '@aws-cdk/mixins-preview/aws-emr';
const scriptBootstrapActionConfigProperty: emr_mixins.CfnClusterPropsMixin.ScriptBootstrapActionConfigProperty = {
args: ['args'],
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| args? | string[] | A list of command line arguments to pass to the bootstrap action script. |
| path? | 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.
path?
Type:
string
(optional)
Location in Amazon S3 of the script to run during a bootstrap action.

.NET
Go
Java
Python
TypeScript