interface ProvisionedCapacityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.KafkaConnect.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskafkaconnect#CfnConnectorPropsMixin_ProvisionedCapacityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kafkaconnect.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
Python | aws_cdk.cfn_property_mixins.aws_kafkaconnect.CfnConnectorPropsMixin.ProvisionedCapacityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kafkaconnect » 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 { aws_kafkaconnect as kafkaconnect } from '@aws-cdk/cfn-property-mixins';
const provisionedCapacityProperty: kafkaconnect.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