@Stability(value=Stable)
public static interface CfnStorageLens.EncryptionProperty
extends software.amazon.jsii.JsiiSerializable
For valid values, see the StorageLensDataExportEncryption in the Amazon S3 API Reference .
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.s3.*; Object sses3; EncryptionProperty encryptionProperty = EncryptionProperty.builder() .ssekms(SSEKMSProperty.builder() .keyId("keyId") .build()) .sses3(sses3) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnStorageLens.EncryptionProperty.Builder
A builder for
CfnStorageLens.EncryptionProperty |
static class |
CfnStorageLens.EncryptionProperty.Jsii$Proxy
An implementation for
CfnStorageLens.EncryptionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnStorageLens.EncryptionProperty.Builder |
builder() |
default Object |
getSsekms()
Specifies the use of AWS Key Management Service keys (SSE-KMS) to encrypt the S3 Storage Lens metrics export file.
|
default Object |
getSses3()
Specifies the use of an Amazon S3-managed key (SSE-S3) to encrypt the S3 Storage Lens metrics export file.
|
@Stability(value=Stable) @Nullable default Object getSsekms()
@Stability(value=Stable) @Nullable default Object getSses3()
@Stability(value=Stable) static CfnStorageLens.EncryptionProperty.Builder builder()
Copyright © 2023. All rights reserved.