interface AnalyticsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.AnalyticsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_AnalyticsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.AnalyticsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.AnalyticsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnBucketPropsMixin » AnalyticsConfigurationProperty |
Specifies the configuration and any analyses for the analytics filter of an Amazon S3 bucket.
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';
const analyticsConfigurationProperty: s3_mixins.CfnBucketPropsMixin.AnalyticsConfigurationProperty = {
id: 'id',
prefix: 'prefix',
storageClassAnalysis: {
dataExport: {
destination: {
bucketAccountId: 'bucketAccountId',
bucketArn: 'bucketArn',
format: 'format',
prefix: 'prefix',
},
outputSchemaVersion: 'outputSchemaVersion',
},
},
tagFilters: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The ID that identifies the analytics configuration. |
| prefix? | string | The prefix that an object must have to be included in the analytics results. |
| storage | IResolvable | Storage | Contains data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes. |
| tag | IResolvable | (IResolvable | Tag)[] | The tags to use when evaluating an analytics filter. |
id?
Type:
string
(optional)
The ID that identifies the analytics configuration.
prefix?
Type:
string
(optional)
The prefix that an object must have to be included in the analytics results.
storageClassAnalysis?
Type:
IResolvable | Storage
(optional)
Contains data related to access patterns to be collected and made available to analyze the tradeoffs between different storage classes.
tagFilters?
Type:
IResolvable | (IResolvable | Tag)[]
(optional)
The tags to use when evaluating an analytics filter.
The analytics only includes objects that meet the filter's criteria. If no filter is specified, all of the contents of the bucket are included in the analysis.

.NET
Go
Java
Python
TypeScript