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
This resource configures your S3 Storage Lens reports to export to read-only S3 table buckets.
With this resource, you can store your Storage Lens metrics in S3 Tables that are created in a read-only S3 table bucket called aws-s3.
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
This property indicates whether the export to read-only S3 table buckets is enabled for your S3 Storage Lens configuration.When set to true, Storage Lens reports are automatically exported to tables in addition to other configured destinations.
Returns union: either
BooleanorIResolvable- See Also:
-
getEncryption
This resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets.Returns union: either
IResolvableorCfnStorageLens.EncryptionProperty- See Also:
-
builder
-