@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()
`CfnStorageLens.EncryptionProperty.SSEKMS`.
|
default Object |
getSses3()
`CfnStorageLens.EncryptionProperty.SSES3`.
|
@Stability(value=Stable) @Nullable default Object getSsekms()
@Stability(value=Stable) @Nullable default Object getSses3()
@Stability(value=Stable) static CfnStorageLens.EncryptionProperty.Builder builder()
Copyright © 2022. All rights reserved.