interface BootstrapActionConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EMR.Mixins.CfnClusterPropsMixin.BootstrapActionConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsemr/mixins#CfnClusterPropsMixin_BootstrapActionConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.emr.mixins.CfnClusterPropsMixin.BootstrapActionConfigProperty |
Python | aws_cdk.mixins_preview.aws_emr.mixins.CfnClusterPropsMixin.BootstrapActionConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_emr » mixins » CfnClusterPropsMixin » BootstrapActionConfigProperty |
BootstrapActionConfig is a property of AWS::EMR::Cluster that can be used to run bootstrap actions on EMR clusters.
You can use a bootstrap action to install software and configure EC2 instances for all cluster nodes before EMR installs and configures open-source big data applications on cluster instances. For more information, see Create Bootstrap Actions to Install Additional Software in the Amazon EMR Management Guide .
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 bootstrapActionConfigProperty: emr_mixins.CfnClusterPropsMixin.BootstrapActionConfigProperty = {
name: 'name',
scriptBootstrapAction: {
args: ['args'],
path: 'path',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the bootstrap action. |
| script | IResolvable | Script | The script run by the bootstrap action. |
name?
Type:
string
(optional)
The name of the bootstrap action.
scriptBootstrapAction?
Type:
IResolvable | Script
(optional)
The script run by the bootstrap action.

.NET
Go
Java
Python
TypeScript