interface DataExportProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensPropsMixin.DataExportProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensPropsMixin_DataExportProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensPropsMixin.DataExportProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensPropsMixin.DataExportProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensPropsMixin » DataExportProperty |
This resource contains the details of 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 dataExportProperty: s3_mixins.CfnStorageLensPropsMixin.DataExportProperty = {
cloudWatchMetrics: {
isEnabled: false,
},
s3BucketDestination: {
accountId: 'accountId',
arn: 'arn',
encryption: {
ssekms: {
keyId: 'keyId',
},
sses3: sses3,
},
format: 'format',
outputSchemaVersion: 'outputSchemaVersion',
prefix: 'prefix',
},
storageLensTableDestination: {
encryption: {
ssekms: {
keyId: 'keyId',
},
sses3: sses3,
},
isEnabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | IResolvable | Cloud | This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics. |
| s3 | IResolvable | S3 | This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed. |
| storage | IResolvable | Storage | S3 Tables destination settings for the Amazon S3 Storage Lens metrics export. |
cloudWatchMetrics?
Type:
IResolvable | Cloud
(optional)
This property enables the Amazon CloudWatch publishing option for S3 Storage Lens metrics.
s3BucketDestination?
Type:
IResolvable | S3
(optional)
This property contains the details of the bucket where the S3 Storage Lens metrics export will be placed.
storageLensTableDestination?
Type:
IResolvable | Storage
(optional)
S3 Tables destination settings for the Amazon S3 Storage Lens metrics export.

.NET
Go
Java
Python
TypeScript