public static interface EmrCreateCluster.BootstrapActionConfigProperty
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() |
java.lang.String |
getName()
The name of the bootstrap action.
|
EmrCreateCluster.ScriptBootstrapActionConfigProperty |
getScriptBootstrapAction()
The script run by the bootstrap action.
|
java.lang.String getName()
EmrCreateCluster.ScriptBootstrapActionConfigProperty getScriptBootstrapAction()
static EmrCreateCluster.BootstrapActionConfigProperty.Builder builder()