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 |
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 { 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 | Specifies whether the export to S3 Tables is enabled or disabled. |
| encryption? | IResolvable | Encryption | 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). |
isEnabled
Type:
boolean | IResolvable
Specifies whether the export to S3 Tables is enabled or disabled.
encryption?
Type:
IResolvable | Encryption
(optional)
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).

.NET
Go
Java
Python
TypeScript