interface FilterAndOperatorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.S3Outposts.CfnBucket.FilterAndOperatorProperty |
Java | software.amazon.awscdk.services.s3outposts.CfnBucket.FilterAndOperatorProperty |
Python | aws_cdk.aws_s3outposts.CfnBucket.FilterAndOperatorProperty |
TypeScript | @aws-cdk/aws-s3outposts » CfnBucket » FilterAndOperatorProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as s3outposts from '@aws-cdk/aws-s3outposts';
const filterAndOperatorProperty: s3outposts.CfnBucket.FilterAndOperatorProperty = {
tags: [{
key: 'key',
value: 'value',
}],
// the properties below are optional
prefix: 'prefix',
};
Properties
| Name | Type | Description |
|---|---|---|
| tags | Filter[] | CfnBucket.FilterAndOperatorProperty.Tags. |
| prefix? | string | CfnBucket.FilterAndOperatorProperty.Prefix. |
tags
Type:
Filter[]
CfnBucket.FilterAndOperatorProperty.Tags.
prefix?
Type:
string
(optional)
CfnBucket.FilterAndOperatorProperty.Prefix.

.NET
Java
Python
TypeScript