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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEmrCreateCluster.ApplicationConfigPropertystatic final classAn implementation forEmrCreateCluster.ApplicationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the application. -
getAdditionalInfo
This option is for advanced users only.This is meta information about third-party applications that third-party vendors use for testing purposes.
Default: No additionalInfo
-
getArgs
Arguments for Amazon EMR to pass to the application.Default: No args
-
getVersion
The version of the application.Default: No version
-
builder
-