Class EmrCreateCluster.ScriptBootstrapActionConfigProperty
Configuration of the script to run during a bootstrap action.
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EmrCreateCluster.ScriptBootstrapActionConfigProperty : EmrCreateCluster.IScriptBootstrapActionConfigPropertySyntax (vb)
Public Class EmrCreateCluster.ScriptBootstrapActionConfigProperty Implements EmrCreateCluster.IScriptBootstrapActionConfigPropertyRemarks
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
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
Remarks
Can be either a location in Amazon S3 or on a local file system.