Show / Hide Table of Contents

Interface CfnCluster.IScriptBootstrapActionConfigProperty

ScriptBootstrapActionConfig is a subproperty of the BootstrapActionConfig property type.

Namespace: Amazon.CDK.AWS.EMR
Assembly: Amazon.CDK.AWS.EMR.dll
Syntax (csharp)
public interface IScriptBootstrapActionConfigProperty
Syntax (vb)
Public Interface 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

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.

Properties

Args

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

virtual string[] Args { get; }
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.

string Path { get; }
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

Back to top Generated by DocFX