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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.ConfigurationObjectProperty
static final class
An implementation forCfnApplication.ConfigurationObjectProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClassification
The classification within a configuration.- See Also:
-
getConfigurations
A list of additional configurations to apply within a configuration object.- See Also:
-
getProperties
A set of properties specified within a configuration classification.- See Also:
-
builder
-