Interface CfnConnector.ProvisionedCapacityProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.ProvisionedCapacityProperty.Jsii$Proxy
- Enclosing class:
- CfnConnector
@Stability(Stable)
public static interface CfnConnector.ProvisionedCapacityProperty
extends software.amazon.jsii.JsiiSerializable
Details about a connector's provisioned capacity.
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.kafkaconnect.*;
ProvisionedCapacityProperty provisionedCapacityProperty = ProvisionedCapacityProperty.builder()
.workerCount(123)
// the properties below are optional
.mcuCount(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.ProvisionedCapacityPropertystatic final classAn implementation forCfnConnector.ProvisionedCapacityProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getWorkerCount
The number of workers that are allocated to the connector. -
getMcuCount
The number of microcontroller units (MCUs) allocated to each connector worker.The valid values are 1,2,4,8.
-
builder
-