Interface EmrCreateCluster.ApplicationConfigProperty

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

@Stability(Stable) public static interface EmrCreateCluster.ApplicationConfigProperty extends software.amazon.jsii.JsiiSerializable
Properties for the EMR Cluster Applications.

Applies to Amazon EMR releases 4.0 and later. A case-insensitive list of applications for Amazon EMR to install and configure when launching the cluster.

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.*;
 ApplicationConfigProperty applicationConfigProperty = ApplicationConfigProperty.builder()
         .name("name")
         // the properties below are optional
         .additionalInfo(Map.of(
                 "additionalInfoKey", "additionalInfo"))
         .args(List.of("args"))
         .version("version")
         .build();
 

See Also: