interface StorageLensTableDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3.CfnStorageLens.StorageLensTableDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3#CfnStorageLens_StorageLensTableDestinationProperty |
Java | software.amazon.awscdk.services.s3.CfnStorageLens.StorageLensTableDestinationProperty |
Python | aws_cdk.aws_s3.CfnStorageLens.StorageLensTableDestinationProperty |
TypeScript | aws-cdk-lib » aws_s3 » CfnStorageLens » StorageLensTableDestinationProperty |
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 { aws_s3 as s3 } from 'aws-cdk-lib';
declare const sses3: any;
const storageLensTableDestinationProperty: s3.CfnStorageLens.StorageLensTableDestinationProperty = {
isEnabled: false,
// the properties below are optional
encryption: {
ssekms: {
keyId: 'keyId',
},
sses3: sses3,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | This property indicates whether the export to read-only S3 table buckets is enabled for your S3 Storage Lens configuration. |
| encryption? | IResolvable | Encryption | This resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets. |
isEnabled
Type:
boolean | IResolvable
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.
encryption?
Type:
IResolvable | Encryption
(optional)
This resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets.

.NET
Go
Java
Python
TypeScript