interface StorageInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.StorageInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_StorageInfoProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.StorageInfoProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.StorageInfoProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » StorageInfoProperty |
Contains information about storage volumes attached to Amazon MSK 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 storageInfoProperty: msk.CfnClusterPropsMixin.StorageInfoProperty = {
ebsStorageInfo: {
provisionedThroughput: {
enabled: false,
volumeThroughput: 123,
},
volumeSize: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| ebs | IResolvable | EBSStorage | EBS volume information. |
ebsStorageInfo?
Type:
IResolvable | EBSStorage
(optional)
EBS volume information.

.NET
Go
Java
Python
TypeScript