interface ProvisionedCapacityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_ProvisionedCapacityProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnConnectorPropsMixin » ProvisionedCapacityProperty |
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 { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const provisionedCapacityProperty: kafkaconnect_mixins.CfnConnectorPropsMixin.ProvisionedCapacityProperty = {
mcuCount: 123,
workerCount: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| mcu | number | The number of microcontroller units (MCUs) allocated to each connector worker. |
| worker | number | The number of workers that are allocated to the connector. |
mcuCount?
Type:
number
(optional)
The number of microcontroller units (MCUs) allocated to each connector worker.
The valid values are 1,2,4,8.
workerCount?
Type:
number
(optional)
The number of workers that are allocated to the connector.

.NET
Go
Java
Python
TypeScript