Interface EmrCreateCluster.ScriptBootstrapActionConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
EmrCreateCluster.ScriptBootstrapActionConfigProperty.Jsii$Proxy
Enclosing class:
EmrCreateCluster

@Stability(Stable) public static interface EmrCreateCluster.ScriptBootstrapActionConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration of the script to run during a bootstrap action.

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.*;
 ScriptBootstrapActionConfigProperty scriptBootstrapActionConfigProperty = ScriptBootstrapActionConfigProperty.builder()
         .path("path")
         // the properties below are optional
         .args(List.of("args"))
         .build();
 

See Also: