Interface CfnApplication.InitialCapacityConfigKeyValuePairProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.InitialCapacityConfigKeyValuePairProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.InitialCapacityConfigKeyValuePairProperty
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.emrserverless.*;
InitialCapacityConfigKeyValuePairProperty initialCapacityConfigKeyValuePairProperty = InitialCapacityConfigKeyValuePairProperty.builder()
.key("key")
.value(InitialCapacityConfigProperty.builder()
.workerConfiguration(WorkerConfigurationProperty.builder()
.cpu("cpu")
.memory("memory")
// the properties below are optional
.disk("disk")
.diskType("diskType")
.build())
.workerCount(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.InitialCapacityConfigKeyValuePairPropertystatic final classAn implementation forCfnApplication.InitialCapacityConfigKeyValuePairProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()getKey()Worker type for an analytics framework.getValue()Returns union: eitherIResolvableorCfnApplication.InitialCapacityConfigPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
Worker type for an analytics framework.- See Also:
-
getValue
Returns union: eitherIResolvableorCfnApplication.InitialCapacityConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnApplication.InitialCapacityConfigKeyValuePairProperty.Builder builder()
-