Show / Hide Table of Contents

Class CfnCluster.ScriptBootstrapActionConfigProperty

ScriptBootstrapActionConfig is a subproperty of the BootstrapActionConfig property type.

Inheritance
System.Object
CfnCluster.ScriptBootstrapActionConfigProperty
Implements
CfnCluster.IScriptBootstrapActionConfigProperty
Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public class ScriptBootstrapActionConfigProperty : Object, CfnCluster.IScriptBootstrapActionConfigProperty
Syntax (vb)
Public Class ScriptBootstrapActionConfigProperty
    Inherits Object
    Implements CfnCluster.IScriptBootstrapActionConfigProperty
Remarks

ScriptBootstrapActionConfig specifies the arguments and location of the bootstrap script for EMR to run on all cluster nodes before it installs open-source big data applications on them.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticmapreduce-cluster-scriptbootstrapactionconfig.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;

ScriptBootstrapActionConfigProperty scriptBootstrapActionConfigProperty = new ScriptBootstrapActionConfigProperty {
    Path = "path",

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

Synopsis

Constructors

ScriptBootstrapActionConfigProperty()

Properties

Args

A list of command line arguments to pass to the bootstrap action script.

Path

Location in Amazon S3 of the script to run during a bootstrap action.

Constructors

ScriptBootstrapActionConfigProperty()

public ScriptBootstrapActionConfigProperty()

Properties

Args

A list of command line arguments to pass to the bootstrap action script.

public string[] Args { get; set; }
Property Value

System.String[]

Remarks

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

Path

Location in Amazon S3 of the script to run during a bootstrap action.

public string Path { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnCluster.IScriptBootstrapActionConfigProperty
Back to top Generated by DocFX