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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnector.ProvisionedCapacityProperty
static final class
An 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.- See Also:
-
getMcuCount
The number of microcontroller units (MCUs) allocated to each connector worker.The valid values are 1,2,4,8.
- See Also:
-
builder
-