aws-cdk-lib.aws_msk.CfnCluster.EBSStorageInfoProperty

interface EBSStorageInfoProperty

LanguageType name
.NETAmazon.CDK.AWS.MSK.CfnCluster.EBSStorageInfoProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_EBSStorageInfoProperty
Javasoftware.amazon.awscdk.services.msk.CfnCluster.EBSStorageInfoProperty
Pythonaws_cdk.aws_msk.CfnCluster.EBSStorageInfoProperty
TypeScript aws-cdk-lib » aws_msk » CfnCluster » EBSStorageInfoProperty

Contains information about the EBS storage volumes attached to the 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 eBSStorageInfoProperty: msk.CfnCluster.EBSStorageInfoProperty = {
  provisionedThroughput: {
    enabled: false,
    volumeThroughput: 123,
  },
  volumeSize: 123,
};

Properties

NameTypeDescription
provisionedThroughput?IResolvable | ProvisionedThroughputPropertyEBS volume provisioned throughput information.
volumeSize?numberThe size in GiB of the EBS volume for the data drive on each broker node.

provisionedThroughput?

Type: IResolvable | ProvisionedThroughputProperty (optional)

EBS volume provisioned throughput information.


volumeSize?

Type: number (optional)

The size in GiB of the EBS volume for the data drive on each broker node.