Class: Aws::S3::Types::S3KeyFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass S3KeyFilter data as a hash:

{
  filter_rules: [
    {
      name: "prefix", # accepts prefix, suffix
      value: "FilterRuleValue",
    },
  ],
}

A container for object key name prefix and suffix filtering rules.

Instance Attribute Summary collapse

Instance Attribute Details

#filter_rulesArray<Types::FilterRule>

A list of containers for the key value pair that defines the criteria for the filter rule.

Returns:



8965
8966
8967
8968
# File 'lib/aws-sdk-s3/types.rb', line 8965

class S3KeyFilter < Struct.new(
  :filter_rules)
  include Aws::Structure
end