aws-cdk-lib.aws_msk.CfnCluster.ProvisionedThroughputProperty

interface ProvisionedThroughputProperty

LanguageType name
.NETAmazon.CDK.AWS.MSK.CfnCluster.ProvisionedThroughputProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_ProvisionedThroughputProperty
Javasoftware.amazon.awscdk.services.msk.CfnCluster.ProvisionedThroughputProperty
Pythonaws_cdk.aws_msk.CfnCluster.ProvisionedThroughputProperty
TypeScript aws-cdk-lib » aws_msk » CfnCluster » 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 { aws_msk as msk } from 'aws-cdk-lib';
const provisionedThroughputProperty: msk.CfnCluster.ProvisionedThroughputProperty = {
  enabled: false,
  volumeThroughput: 123,
};

Properties

NameTypeDescription
enabled?boolean | IResolvableProvisioned throughput is enabled or not.
volumeThroughput?numberThroughput 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 enabled or not.


volumeThroughput?

Type: number (optional)

Throughput value of the EBS volumes for the data drive on each kafka broker node in MiB per second.