Show / Hide Table of Contents

Class CfnCluster.BootstrapActionConfigProperty

BootstrapActionConfig is a property of AWS::EMR::Cluster that can be used to run bootstrap actions on EMR clusters.

Inheritance
System.Object
CfnCluster.BootstrapActionConfigProperty
Implements
CfnCluster.IBootstrapActionConfigProperty
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public class BootstrapActionConfigProperty : Object, CfnCluster.IBootstrapActionConfigProperty
Syntax (vb)
Public Class BootstrapActionConfigProperty
    Inherits Object
    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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html

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;

BootstrapActionConfigProperty 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()

public BootstrapActionConfigProperty()

Properties

Name

The name of the bootstrap action.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html#cfn-elasticmapreduce-cluster-bootstrapactionconfig-name

ScriptBootstrapAction

The script run by the bootstrap action.

public object ScriptBootstrapAction { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-bootstrapactionconfig.html#cfn-elasticmapreduce-cluster-bootstrapactionconfig-scriptbootstrapaction

Implements

CfnCluster.IBootstrapActionConfigProperty
Back to top Generated by DocFX