Interface CfnStorageLensPropsMixin.StorageLensTableDestinationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStorageLensPropsMixin.StorageLensTableDestinationProperty.Jsii$Proxy
- Enclosing class:
CfnStorageLensPropsMixin
@Stability(Stable)
public static interface CfnStorageLensPropsMixin.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.cfnpropertymixins.services.s3.*;
Object sses3;
StorageLensTableDestinationProperty storageLensTableDestinationProperty = StorageLensTableDestinationProperty.builder()
.encryption(EncryptionProperty.builder()
.ssekms(SSEKMSProperty.builder()
.keyId("keyId")
.build())
.sses3(sses3)
.build())
.isEnabled(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnStorageLensPropsMixin.StorageLensTableDestinationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThis resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets.default ObjectThis property indicates whether the export to read-only S3 table buckets is enabled for your S3 Storage Lens configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryption
This resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets.Returns union: either
IResolvableorCfnStorageLensPropsMixin.EncryptionProperty- See Also:
-
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:
-
builder
@Stability(Stable) static CfnStorageLensPropsMixin.StorageLensTableDestinationProperty.Builder builder()
-