Interface EmrCreateCluster.BootstrapActionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
EmrCreateCluster.BootstrapActionConfigProperty.Jsii$Proxy
- Enclosing class:
EmrCreateCluster
@Stability(Stable)
public static interface EmrCreateCluster.BootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration of a bootstrap action.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forEmrCreateCluster.BootstrapActionConfigProperty
static final class
An implementation forEmrCreateCluster.BootstrapActionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the bootstrap action. -
getScriptBootstrapAction
@Stability(Stable) @NotNull EmrCreateCluster.ScriptBootstrapActionConfigProperty getScriptBootstrapAction()The script run by the bootstrap action. -
builder
-