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
object
CfnCluster.BootstrapActionConfigProperty
Implements
CfnCluster.IBootstrapActionConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-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;

             var bootstrapActionConfigProperty = new BootstrapActionConfigProperty {
                 Name = "name",
                 ScriptBootstrapAction = new ScriptBootstrapActionConfigProperty {
                     Path = "path",

                     // the properties below are optional
                     Args = new [] { "args" }
                 }
             };

Synopsis

Constructors

BootstrapActionConfigProperty()

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

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emr-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;

             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

string

Remarks

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

ScriptBootstrapAction

The script run by the bootstrap action.

public object ScriptBootstrapAction { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnCluster.IScriptBootstrapActionConfigProperty

Implements

CfnCluster.IBootstrapActionConfigProperty
Back to top Generated by DocFX