Interface CfnStorageLens.StorageLensTableDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageLens.StorageLensTableDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnStorageLens
@Stability(Stable)
public static interface CfnStorageLens.StorageLensTableDestinationProperty
extends software.amazon.jsii.JsiiSerializable
S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.
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;
StorageLensTableDestinationProperty storageLensTableDestinationProperty = StorageLensTableDestinationProperty.builder()
.isEnabled(false)
// the properties below are optional
.encryption(EncryptionProperty.builder()
.ssekms(SSEKMSProperty.builder()
.keyId("keyId")
.build())
.sses3(sses3)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStorageLens.StorageLensTableDestinationPropertystatic final classAn implementation forCfnStorageLens.StorageLensTableDestinationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIsEnabled
Specifies whether the export to S3 Tables is enabled or disabled.Returns union: either
BooleanorIResolvable- See Also:
-
getEncryption
Configures the server-side encryption for Amazon S3 Storage Lens report files with either S3-managed keys (SSE-S3) or KMS-managed keys (SSE-KMS).Returns union: either
IResolvableorCfnStorageLens.EncryptionProperty- See Also:
-
builder
-