Interface CfnApplicationPropsMixin.InitialCapacityConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationPropsMixin.InitialCapacityConfigProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationPropsMixin
@Stability(Stable)
public static interface CfnApplicationPropsMixin.InitialCapacityConfigProperty
extends software.amazon.jsii.JsiiSerializable
The initial capacity configuration per worker.
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.*;
InitialCapacityConfigProperty initialCapacityConfigProperty = InitialCapacityConfigProperty.builder()
.workerConfiguration(WorkerConfigurationProperty.builder()
.cpu("cpu")
.disk("disk")
.diskType("diskType")
.memory("memory")
.build())
.workerCount(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationPropsMixin.InitialCapacityConfigPropertystatic final classAn implementation forCfnApplicationPropsMixin.InitialCapacityConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWorkerConfiguration
The resource configuration of the initial capacity configuration.Returns union: either
IResolvableorCfnApplicationPropsMixin.WorkerConfigurationProperty- See Also:
-
getWorkerCount
The number of workers in the initial capacity configuration.- See Also:
-
builder
-