Class: Aws::S3::Types::AnalyticsAndOperator
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::AnalyticsAndOperator
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates in any combination, and an object must match all of the predicates for the filter to apply.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#prefix ⇒ String
The prefix to use when evaluating an AND predicate: The prefix that an object must have to be included in the metrics results.
-
#tags ⇒ Array<Types::Tag>
The list of tags to use when evaluating an AND predicate.
Instance Attribute Details
#prefix ⇒ String
The prefix to use when evaluating an AND predicate: The prefix that an object must have to be included in the metrics results.
218 219 220 221 222 223 |
# File 'lib/aws-sdk-s3/types.rb', line 218 class AnalyticsAndOperator < Struct.new( :prefix, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags to use when evaluating an AND predicate.
218 219 220 221 222 223 |
# File 'lib/aws-sdk-s3/types.rb', line 218 class AnalyticsAndOperator < Struct.new( :prefix, :tags) SENSITIVE = [] include Aws::Structure end |