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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.ConfigurationObjectPropertystatic final classAn 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.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnApplication.ConfigurationObjectProperty>- See Also:
-
getProperties
A set of properties specified within a configuration classification.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
builder
-