Class EmrCreateCluster.ScriptBootstrapActionConfigProperty
Configuration of the script to run during a bootstrap action.
Inheritance
Namespace: Amazon.CDK.AWS.StepFunctions.Tasks
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ScriptBootstrapActionConfigProperty : Object, EmrCreateCluster.IScriptBootstrapActionConfigProperty
Syntax (vb)
Public Class ScriptBootstrapActionConfigProperty
Inherits Object
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
Script |
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()
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.
Remarks
Default: No args
Path
Location of the script to run during a bootstrap action.
public string Path { get; set; }
Property Value
System.
Remarks
Can be either a location in Amazon S3 or on a local file system.