Interface CfnCluster.EMRConfigurationProperty

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

@Stability(Stable) public static interface CfnCluster.EMRConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 EMRConfigurationProperty eMRConfigurationProperty_;
 EMRConfigurationProperty eMRConfigurationProperty = EMRConfigurationProperty.builder()
         .classification("classification")
         .configurationProperties(Map.of(
                 "configurationPropertiesKey", "configurationProperties"))
         .configurations(List.of(eMRConfigurationProperty_))
         .build();
 

See Also: