aws-cdk-lib.aws_s3outposts.CfnBucket.FilterProperty

interface FilterProperty

LanguageType name
.NETAmazon.CDK.AWS.S3Outposts.CfnBucket.FilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awss3outposts#CfnBucket_FilterProperty
Javasoftware.amazon.awscdk.services.s3outposts.CfnBucket.FilterProperty
Pythonaws_cdk.aws_s3outposts.CfnBucket.FilterProperty
TypeScript aws-cdk-lib » aws_s3outposts » CfnBucket » FilterProperty

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3outposts as s3outposts } from 'aws-cdk-lib';
const filterProperty: s3outposts.CfnBucket.FilterProperty = {
  andOperator: {
    tags: [{
      key: 'key',
      value: 'value',
    }],

    // the properties below are optional
    prefix: 'prefix',
  },
  prefix: 'prefix',
  tag: {
    key: 'key',
    value: 'value',
  },
};

Properties

NameTypeDescription
andOperator?IResolvable | FilterAndOperatorPropertyCfnBucket.FilterProperty.AndOperator.
prefix?stringCfnBucket.FilterProperty.Prefix.
tag?IResolvable | FilterTagPropertyCfnBucket.FilterProperty.Tag.

andOperator?

Type: IResolvable | FilterAndOperatorProperty (optional)

CfnBucket.FilterProperty.AndOperator.


prefix?

Type: string (optional)

CfnBucket.FilterProperty.Prefix.


tag?

Type: IResolvable | FilterTagProperty (optional)

CfnBucket.FilterProperty.Tag.