Show / Hide Table of Contents

Class EmrCreateCluster.ScriptBootstrapActionConfigProperty

Configuration of the script to run during a bootstrap action.

Inheritance
object
EmrCreateCluster.ScriptBootstrapActionConfigProperty
Implements
EmrCreateCluster.IScriptBootstrapActionConfigProperty
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.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EmrCreateCluster.ScriptBootstrapActionConfigProperty : EmrCreateCluster.IScriptBootstrapActionConfigProperty
Syntax (vb)
Public Class EmrCreateCluster.ScriptBootstrapActionConfigProperty Implements EmrCreateCluster.IScriptBootstrapActionConfigProperty
Remarks

See: https://docs.aws.amazon.com/emr/latest/APIReference/API_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.StepFunctions.Tasks;

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

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

Synopsis

Constructors

ScriptBootstrapActionConfigProperty()

Configuration of the script to run during a bootstrap action.

Properties

Args

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

Path

Location of the script to run during a bootstrap action.

Constructors

ScriptBootstrapActionConfigProperty()

Configuration of the script to run during a bootstrap action.

public ScriptBootstrapActionConfigProperty()
Remarks

See: https://docs.aws.amazon.com/emr/latest/APIReference/API_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.StepFunctions.Tasks;

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

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

Properties

Args

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

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

string[]

Remarks

Default: No args

Path

Location of the script to run during a bootstrap action.

public string Path { get; set; }
Property Value

string

Remarks

Can be either a location in Amazon S3 or on a local file system.

Implements

EmrCreateCluster.IScriptBootstrapActionConfigProperty
Back to top Generated by DocFX