AWS SDK Version 2 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

.NET Framework 3.5
 
Class that provides helper methods for constructing predefined bootstrap actions.

Inheritance Hierarchy

System.Object
  Amazon.ElasticMapReduce.Model.BootstrapActions

Namespace: Amazon.ElasticMapReduce.Model
Assembly: AWSSDK.dll
Version: (assembly version)

Syntax

C#
public class BootstrapActions : Object

The BootstrapActions type exposes the following members

Constructors

NameDescription
Public Method BootstrapActions() Creates a new default BootstrapActions for us in us-east-1.
Public Method BootstrapActions(string) Creates a new BootstrapActions.

Methods

NameDescription
Public Method NewConfigureDaemons() Create a new bootstrap action which lets you configure Hadoop's daemons. The options are written to the hadoop-user-env.sh file.
Public Method NewConfigureHadoop() Create a new bootstrap action which lets you configure Hadoop's XML files.
Public Method NewRunIf(string, BootstrapActionConfig) Create a new run-if bootstrap action which lets you conditionally run bootstrap actions.

Examples

IAmazonElasticMapReduce emr = TestUtil.EMRClient;
            
BootstrapActions bootstrapActions = new BootstrapActions();
            
var daemons = bootstrapActions.NewConfigureDaemons();
daemons.AddHeapSize(Daemon.JobTracker, 2048);
            
RunJobFlowRequest request = new RunJobFlowRequest
{
   Name = "Job Flow With Bootstrap Actions",
   BootstrapActions = new List<BootstrapActionConfig> 
   {
       bootstrapActions.NewRunIf("instance.isMaster=true", daemons.Build())
   },
   LogUri = "s3://log-bucket/",
   Instances = new JobFlowInstancesConfig
   {
       Ec2KeyName = "keypair",
       HadoopVersion = "0.20",
       InstanceCount = 5,
       KeepJobFlowAliveWhenNoSteps = true,
       MasterInstanceType = "m1.small",
       SlaveInstanceType = "m1.small"
   }
};
            
RunJobFlowResponse response = emr.RunJobFlow(request);
             

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

.NET for Windows Store apps:
Supported in: Windows 8