Class: Aws::S3::Types::NotificationConfigurationFilter

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 NotificationConfigurationFilter data as a hash:

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

A container for object key name filtering rules. For information about key name filtering, see [Configuring Event Notifications] in the *Amazon Simple Storage Service Developer Guide*.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html

Instance Attribute Summary collapse

Instance Attribute Details

#keyTypes::S3KeyFilter

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

Returns:



5973
5974
5975
5976
# File 'lib/aws-sdk-s3/types.rb', line 5973

class NotificationConfigurationFilter < Struct.new(
  :key)
  include Aws::Structure
end