@Stability(value=Stable)
public static interface EmrCreateCluster.BootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
See the RunJobFlow API for complete documentation on input parameters
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.*;
BootstrapActionConfigProperty bootstrapActionConfigProperty = BootstrapActionConfigProperty.builder()
.name("name")
.scriptBootstrapAction(ScriptBootstrapActionConfigProperty.builder()
.path("path")
// the properties below are optional
.args(List.of("args"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EmrCreateCluster.BootstrapActionConfigProperty.Builder
A builder for
EmrCreateCluster.BootstrapActionConfigProperty |
static class |
EmrCreateCluster.BootstrapActionConfigProperty.Jsii$Proxy
An implementation for
EmrCreateCluster.BootstrapActionConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static EmrCreateCluster.BootstrapActionConfigProperty.Builder |
builder() |
String |
getName()
The name of the bootstrap action.
|
EmrCreateCluster.ScriptBootstrapActionConfigProperty |
getScriptBootstrapAction()
The script run by the bootstrap action.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull EmrCreateCluster.ScriptBootstrapActionConfigProperty getScriptBootstrapAction()
@Stability(value=Stable) static EmrCreateCluster.BootstrapActionConfigProperty.Builder builder()
Copyright © 2023. All rights reserved.