interface StorageInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.StorageInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_StorageInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.StorageInfoProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.StorageInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const storageInfoProperty: msk_mixins.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