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

.NET
Go
Java
Python
TypeScript