interface ScaleInPolicyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.ScaleInPolicyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_ScaleInPolicyProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.ScaleInPolicyProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.ScaleInPolicyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnConnectorPropsMixin » ScaleInPolicyProperty |
The scale-in policy for the connector.
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 scaleInPolicyProperty: kafkaconnect_mixins.CfnConnectorPropsMixin.ScaleInPolicyProperty = {
cpuUtilizationPercentage: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| cpu | number | Specifies the CPU utilization percentage threshold at which you want connector scale in to be triggered. |
cpuUtilizationPercentage?
Type:
number
(optional)
Specifies the CPU utilization percentage threshold at which you want connector scale in to be triggered.

.NET
Go
Java
Python
TypeScript