Interface ProvisionedCapacity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProvisionedCapacity.Builder,ProvisionedCapacity>,SdkBuilder<ProvisionedCapacity.Builder,ProvisionedCapacity>,SdkPojo
- Enclosing class:
- ProvisionedCapacity
public static interface ProvisionedCapacity.Builder extends SdkPojo, CopyableBuilder<ProvisionedCapacity.Builder,ProvisionedCapacity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProvisionedCapacity.BuildermcuCount(Integer mcuCount)The number of microcontroller units (MCUs) allocated to each connector worker.ProvisionedCapacity.BuilderworkerCount(Integer workerCount)The number of workers that are allocated to the connector.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
mcuCount
ProvisionedCapacity.Builder mcuCount(Integer mcuCount)
The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
- Parameters:
mcuCount- The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
workerCount
ProvisionedCapacity.Builder workerCount(Integer workerCount)
The number of workers that are allocated to the connector.
- Parameters:
workerCount- The number of workers that are allocated to the connector.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-