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
Note:
When making an API call, you may pass AnalyticsAndOperator data as a hash:
{
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
}
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.
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.
231 232 233 234 235 |
# File 'lib/aws-sdk-s3/types.rb', line 231 class AnalyticsAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
The list of tags to use when evaluating an AND predicate.
231 232 233 234 235 |
# File 'lib/aws-sdk-s3/types.rb', line 231 class AnalyticsAndOperator < Struct.new( :prefix, :tags) include Aws::Structure end |