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.Lib.dll
Syntax (csharp)
public interface CfnCluster.IScriptBootstrapActionConfigProperty
Syntax (vb)
Public Interface 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.

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

             var 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.

string[]? Args { get; }
Property Value

string[]

Remarks

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

Path

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

string Path { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX