@Stability(value=Stable)
public static interface CfnCluster.ScriptBootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
ScriptBootstrapActionConfig specifies the arguments and location of the bootstrap script for EMR to run on all cluster nodes before it installs open-source big data applications on them.
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.emr.*;
ScriptBootstrapActionConfigProperty scriptBootstrapActionConfigProperty = ScriptBootstrapActionConfigProperty.builder()
.path("path")
// the properties below are optional
.args(List.of("args"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCluster.ScriptBootstrapActionConfigProperty.Builder
A builder for
CfnCluster.ScriptBootstrapActionConfigProperty |
static class |
CfnCluster.ScriptBootstrapActionConfigProperty.Jsii$Proxy
An implementation for
CfnCluster.ScriptBootstrapActionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCluster.ScriptBootstrapActionConfigProperty.Builder |
builder() |
default List<String> |
getArgs()
A list of command line arguments to pass to the bootstrap action script.
|
String |
getPath()
Location in Amazon S3 of the script to run during a bootstrap action.
|
@Stability(value=Stable) @NotNull String getPath()
@Stability(value=Stable) @Nullable default List<String> getArgs()
@Stability(value=Stable) static CfnCluster.ScriptBootstrapActionConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.