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: