Interface CfnInstanceGroupConfig.ConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstanceGroupConfig.ConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnInstanceGroupConfig
@Stability(Stable)
public static interface CfnInstanceGroupConfig.ConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configurations
is a property of the AWS::EMR::Cluster
resource that specifies the configuration of applications on an Amazon EMR cluster.
Configurations are optional. You can use them to have EMR customize applications and software bundled with Amazon EMR when a cluster is created. A configuration consists of a classification, properties, and optional nested configurations. A classification refers to an application-specific configuration file. Properties are the settings you want to change in that file. For more information, see Configuring Applications .
Applies only to Amazon EMR releases 4.0 and later.
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.*; ConfigurationProperty configurationProperty_; ConfigurationProperty configurationProperty = ConfigurationProperty.builder() .classification("classification") .configurationProperties(Map.of( "configurationPropertiesKey", "configurationProperties")) .configurations(List.of(configurationProperty_)) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstanceGroupConfig.ConfigurationProperty
static final class
An implementation forCfnInstanceGroupConfig.ConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The classification within a configuration.default Object
Within a configuration classification, a set of properties that represent the settings that you want to change in the configuration file.default Object
A list of additional configurations to apply within a configuration object.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClassification
The classification within a configuration.- See Also:
-
getConfigurationProperties
Within a configuration classification, a set of properties that represent the settings that you want to change in the configuration file.Duplicates not allowed.
- See Also:
-
getConfigurations
A list of additional configurations to apply within a configuration object.- See Also:
-
builder
-