Class: Aws::S3::Types::FilterRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::FilterRule
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Specifies the Amazon S3 object key name to filter on and whether to filter on the suffix or prefix of the key name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The object key name prefix or suffix identifying one or more objects to which the filtering rule applies.
-
#value ⇒ String
The value that the filter searches for in object key names.
Instance Attribute Details
#name ⇒ String
The object key name prefix or suffix identifying one or more objects to which the filtering rule applies. The maximum length is 1,024 characters. Overlapping prefixes and suffixes are not supported. For more information, see Configuring Event Notifications in the Amazon S3 User Guide.
4025 4026 4027 4028 4029 4030 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 4025 class FilterRule < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value that the filter searches for in object key names.
4025 4026 4027 4028 4029 4030 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 4025 class FilterRule < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |