interface CapacityProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KafkaConnect.CfnConnector.CapacityProperty | 
  Java | software.amazon.awscdk.services.kafkaconnect.CfnConnector.CapacityProperty | 
  Python | aws_cdk.aws_kafkaconnect.CfnConnector.CapacityProperty | 
  TypeScript  | @aws-cdk/aws-kafkaconnect » CfnConnector » CapacityProperty | 
Information about the capacity of the connector, whether it is auto scaled or provisioned.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kafkaconnect from '@aws-cdk/aws-kafkaconnect';
const capacityProperty: kafkaconnect.CfnConnector.CapacityProperty = {
  autoScaling: {
    maxWorkerCount: 123,
    mcuCount: 123,
    minWorkerCount: 123,
    scaleInPolicy: {
      cpuUtilizationPercentage: 123,
    },
    scaleOutPolicy: {
      cpuUtilizationPercentage: 123,
    },
  },
  provisionedCapacity: {
    workerCount: 123,
    // the properties below are optional
    mcuCount: 123,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| auto | IResolvable | Auto | Information about the auto scaling parameters for the connector. | 
| provisioned | IResolvable | Provisioned | Details about a fixed capacity allocated to a connector. | 
autoScaling?
Type:
IResolvable | Auto
(optional)
Information about the auto scaling parameters for the connector.
provisionedCapacity?
Type:
IResolvable | Provisioned
(optional)
Details about a fixed capacity allocated to a connector.

 .NET
 Java
 Python
 TypeScript