@Generated(value="jsii-pacmak/1.71.0 (build f1f58ae)", date="2022-12-07T17:24:43.560Z") @Stability(value=Experimental) public interface EbsStorageInfo extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kms.*;
import software.amazon.awscdk.services.msk.*;
Key key;
EbsStorageInfo ebsStorageInfo = EbsStorageInfo.builder()
.encryptionKey(key)
.volumeSize(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
EbsStorageInfo.Builder
A builder for
EbsStorageInfo |
static class |
EbsStorageInfo.Jsii$Proxy
An implementation for
EbsStorageInfo |
| Modifier and Type | Method and Description |
|---|---|
static EbsStorageInfo.Builder |
builder() |
default IKey |
getEncryptionKey()
(experimental) The AWS KMS key for encrypting data at rest.
|
default Number |
getVolumeSize()
(experimental) The size in GiB of the EBS volume for the data drive on each broker node.
|
@Stability(value=Experimental) @Nullable default IKey getEncryptionKey()
Default: Uses AWS managed CMK (aws/kafka)
@Stability(value=Experimental) @Nullable default Number getVolumeSize()
Default: 1000
@Stability(value=Experimental) static EbsStorageInfo.Builder builder()
EbsStorageInfo.Builder of EbsStorageInfoCopyright © 2022. All rights reserved.