Class: Aws::S3::Types::AnalyticsFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AnalyticsFilter
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
The filter used to describe a set of objects for analyses. A filter must have exactly one prefix, one tag, or one conjunction (AnalyticsAndOperator). If no filter is provided, all objects will be considered in any analysis.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#and ⇒ Types::AnalyticsAndOperator
A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter.
-
#prefix ⇒ String
The prefix to use when evaluating an analytics filter.
-
#tag ⇒ Types::Tag
The tag to use when evaluating an analytics filter.
Instance Attribute Details
#and ⇒ Types::AnalyticsAndOperator
A conjunction (logical AND) of predicates, which is used in evaluating an analytics filter. The operator must have at least two predicates.
304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 304 class AnalyticsFilter < Struct.new( :prefix, :tag, :and) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The prefix to use when evaluating an analytics filter.
304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 304 class AnalyticsFilter < Struct.new( :prefix, :tag, :and) SENSITIVE = [] include Aws::Structure end |
#tag ⇒ Types::Tag
The tag to use when evaluating an analytics filter.
304 305 306 307 308 309 310 |
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 304 class AnalyticsFilter < Struct.new( :prefix, :tag, :and) SENSITIVE = [] include Aws::Structure end |