Class CfnCluster.BootstrapActionConfigProperty
BootstrapActionConfig is a property of AWS::EMR::Cluster that can be used to run bootstrap actions on EMR clusters.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.BootstrapActionConfigProperty : CfnCluster.IBootstrapActionConfigProperty
Syntax (vb)
Public Class CfnCluster.BootstrapActionConfigProperty Implements CfnCluster.IBootstrapActionConfigProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EMR;
var bootstrapActionConfigProperty = new BootstrapActionConfigProperty {
Name = "name",
ScriptBootstrapAction = new ScriptBootstrapActionConfigProperty {
Path = "path",
// the properties below are optional
Args = new [] { "args" }
}
};
Synopsis
Constructors
| BootstrapActionConfigProperty() |
|
Properties
| Name | The name of the bootstrap action. |
| ScriptBootstrapAction | The script run by the bootstrap action. |
Constructors
BootstrapActionConfigProperty()
BootstrapActionConfig is a property of AWS::EMR::Cluster that can be used to run bootstrap actions on EMR clusters.
public BootstrapActionConfigProperty()
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EMR;
var bootstrapActionConfigProperty = new BootstrapActionConfigProperty {
Name = "name",
ScriptBootstrapAction = new ScriptBootstrapActionConfigProperty {
Path = "path",
// the properties below are optional
Args = new [] { "args" }
}
};
Properties
Name
The name of the bootstrap action.
public string Name { get; set; }
Property Value
Remarks
ScriptBootstrapAction
The script run by the bootstrap action.
public object ScriptBootstrapAction { get; set; }