Interface EmrCreateCluster.ScriptBootstrapActionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmrCreateCluster.ScriptBootstrapActionConfigProperty.Jsii$Proxy
- Enclosing class:
EmrCreateCluster
@Stability(Stable)
public static interface EmrCreateCluster.ScriptBootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration of the script to run during a bootstrap action.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.stepfunctions.tasks.*; ScriptBootstrapActionConfigProperty scriptBootstrapActionConfigProperty = ScriptBootstrapActionConfigProperty.builder() .path("path") // the properties below are optional .args(List.of("args")) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmrCreateCluster.ScriptBootstrapActionConfigProperty
static final class
An implementation forEmrCreateCluster.ScriptBootstrapActionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPath
Location of the script to run during a bootstrap action.Can be either a location in Amazon S3 or on a local file system.
-
getArgs
A list of command line arguments to pass to the bootstrap action script.Default: No args
-
builder
-