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.
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.
256 257 258 259 260 261 |
# File 'lib/aws-sdk-s3/types.rb', line 256 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.
256 257 258 259 260 261 |
# File 'lib/aws-sdk-s3/types.rb', line 256 class AnalyticsAndOperator < Struct.new( :prefix, :tags) SENSITIVE = [] include Aws::Structure end |