interface ProvisionedThroughputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.ProvisionedThroughputProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_ProvisionedThroughputProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.ProvisionedThroughputProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.ProvisionedThroughputProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » ProvisionedThroughputProperty |
Contains information about provisioned throughput for EBS storage volumes attached to kafka broker nodes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const provisionedThroughputProperty: msk_mixins.CfnClusterPropsMixin.ProvisionedThroughputProperty = {
enabled: false,
volumeThroughput: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Provisioned throughput is on or off. |
| volume | number | Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second. |
enabled?
Type:
boolean | IResolvable
(optional)
Provisioned throughput is on or off.
volumeThroughput?
Type:
number
(optional)
Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.

.NET
Go
Java
Python
TypeScript