Class: Aws::S3::Types::AnalyticsAndOperator

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3/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

Instance Attribute Details

#prefixString

The prefix to use when evaluating an AND predicate: The prefix that an object must have to be included in the metrics results.

Returns:

  • (String)


218
219
220
221
222
223
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 218

class AnalyticsAndOperator < Struct.new(
  :prefix,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

The list of tags to use when evaluating an AND predicate.

Returns:



218
219
220
221
222
223
# File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 218

class AnalyticsAndOperator < Struct.new(
  :prefix,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end