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