@Stability(value=Stable)
public static interface EmrCreateCluster.ScriptBootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EmrCreateCluster.ScriptBootstrapActionConfigProperty.Builder
A builder for
EmrCreateCluster.ScriptBootstrapActionConfigProperty |
static class |
EmrCreateCluster.ScriptBootstrapActionConfigProperty.Jsii$Proxy
An implementation for
EmrCreateCluster.ScriptBootstrapActionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static EmrCreateCluster.ScriptBootstrapActionConfigProperty.Builder |
builder() |
default List<String> |
getArgs()
A list of command line arguments to pass to the bootstrap action script.
|
String |
getPath()
Location of the script to run during a bootstrap action.
|
@Stability(value=Stable) @NotNull String getPath()
Can be either a location in Amazon S3 or on a local file system.
@Stability(value=Stable) @Nullable default List<String> getArgs()
Default: No args
@Stability(value=Stable) static EmrCreateCluster.ScriptBootstrapActionConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.