Interface CfnApplication.ConfigurationObjectProperty

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

@Stability(Stable) public static interface CfnApplication.ConfigurationObjectProperty extends software.amazon.jsii.JsiiSerializable
A configuration specification to be used when provisioning an application.

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.

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.emrserverless.*;
 ConfigurationObjectProperty configurationObjectProperty_;
 ConfigurationObjectProperty configurationObjectProperty = ConfigurationObjectProperty.builder()
         .classification("classification")
         // the properties below are optional
         .configurations(List.of(configurationObjectProperty_))
         .properties(Map.of(
                 "propertiesKey", "properties"))
         .build();
 

See Also: