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

.NET
Go
Java
Python
TypeScript