interface EBSStorageInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.EBSStorageInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_EBSStorageInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.EBSStorageInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.EBSStorageInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » 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/cfn-property-mixins';
const eBSStorageInfoProperty: msk.CfnClusterPropsMixin.EBSStorageInfoProperty = {
provisionedThroughput: {
enabled: false,
volumeThroughput: 123,
},
volumeSize: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| provisioned | IResolvable | Provisioned | EBS volume provisioned throughput information. |
| volume | number | The size in GiB of the EBS volume for the data drive on each broker node. |
provisionedThroughput?
Type:
IResolvable | Provisioned
(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.

.NET
Go
Java
Python
TypeScript