Interface CfnCluster.ScriptBootstrapActionConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCluster.ScriptBootstrapActionConfigProperty.Jsii$Proxy
- Enclosing class:
CfnCluster
@Stability(Stable)
public static interface CfnCluster.ScriptBootstrapActionConfigProperty
extends software.amazon.jsii.JsiiSerializable
ScriptBootstrapActionConfig
is a subproperty of the BootstrapActionConfig
property type.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCluster.ScriptBootstrapActionConfigProperty
static final class
An implementation forCfnCluster.ScriptBootstrapActionConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPath
Location in Amazon S3 of the script to run during a bootstrap action.- See Also:
-
getArgs
A list of command line arguments to pass to the bootstrap action script.- See Also:
-
builder
-