interface S3BucketDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensPropsMixin.S3BucketDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensPropsMixin_S3BucketDestinationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensPropsMixin.S3BucketDestinationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensPropsMixin.S3BucketDestinationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensPropsMixin » S3BucketDestinationProperty |
This resource contains the details of the bucket where the Amazon S3 Storage Lens metrics export will be placed.
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 s3BucketDestinationProperty: s3_mixins.CfnStorageLensPropsMixin.S3BucketDestinationProperty = {
accountId: 'accountId',
arn: 'arn',
encryption: {
ssekms: {
keyId: 'keyId',
},
sses3: sses3,
},
format: 'format',
outputSchemaVersion: 'outputSchemaVersion',
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | This property contains the details of the AWS account ID of the S3 Storage Lens export bucket destination. |
| arn? | string | This property contains the details of the ARN of the bucket destination of the S3 Storage Lens export. |
| encryption? | IResolvable | Encryption | This property contains the details of the encryption of the bucket destination of the Amazon S3 Storage Lens metrics export. |
| format? | string | This property contains the details of the format of the S3 Storage Lens export bucket destination. |
| output | string | This property contains the details of the output schema version of the S3 Storage Lens export bucket destination. |
| prefix? | string | This property contains the details of the prefix of the bucket destination of the S3 Storage Lens export . |
accountId?
Type:
string
(optional)
This property contains the details of the AWS account ID of the S3 Storage Lens export bucket destination.
arn?
Type:
string
(optional)
This property contains the details of the ARN of the bucket destination of the S3 Storage Lens export.
encryption?
Type:
IResolvable | Encryption
(optional)
This property contains the details of the encryption of the bucket destination of the Amazon S3 Storage Lens metrics export.
format?
Type:
string
(optional)
This property contains the details of the format of the S3 Storage Lens export bucket destination.
outputSchemaVersion?
Type:
string
(optional)
This property contains the details of the output schema version of the S3 Storage Lens export bucket destination.
prefix?
Type:
string
(optional)
This property contains the details of the prefix of the bucket destination of the S3 Storage Lens export .

.NET
Go
Java
Python
TypeScript