interface CfnStorageLensGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnStorageLensGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnStorageLensGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnStorageLensGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnStorageLensGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » CfnStorageLensGroupMixinProps |
Properties for CfnStorageLensGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-storagelensgroup.html
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 cfnStorageLensGroupMixinProps: s3_mixins.CfnStorageLensGroupMixinProps = {
filter: {
and: {
matchAnyPrefix: ['matchAnyPrefix'],
matchAnySuffix: ['matchAnySuffix'],
matchAnyTag: [{
key: 'key',
value: 'value',
}],
matchObjectAge: {
daysGreaterThan: 123,
daysLessThan: 123,
},
matchObjectSize: {
bytesGreaterThan: 123,
bytesLessThan: 123,
},
},
matchAnyPrefix: ['matchAnyPrefix'],
matchAnySuffix: ['matchAnySuffix'],
matchAnyTag: [{
key: 'key',
value: 'value',
}],
matchObjectAge: {
daysGreaterThan: 123,
daysLessThan: 123,
},
matchObjectSize: {
bytesGreaterThan: 123,
bytesLessThan: 123,
},
or: {
matchAnyPrefix: ['matchAnyPrefix'],
matchAnySuffix: ['matchAnySuffix'],
matchAnyTag: [{
key: 'key',
value: 'value',
}],
matchObjectAge: {
daysGreaterThan: 123,
daysLessThan: 123,
},
matchObjectSize: {
bytesGreaterThan: 123,
bytesLessThan: 123,
},
},
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| filter? | IResolvable | Filter | This property contains the criteria for the Storage Lens group data that is displayed. |
| name? | string | This property contains the Storage Lens group name. |
| tags? | Cfn[] | This property contains the AWS resource tags that you're adding to your Storage Lens group. |
filter?
Type:
IResolvable | Filter
(optional)
This property contains the criteria for the Storage Lens group data that is displayed.
name?
Type:
string
(optional)
This property contains the Storage Lens group name.
tags?
Type:
Cfn[]
(optional)
This property contains the AWS resource tags that you're adding to your Storage Lens group.
This parameter is optional.

.NET
Go
Java
Python
TypeScript