Class: Aws::S3::Types::AnalyticsFilter

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
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

Instance Attribute Details

#andTypes::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 'lib/aws-sdk-s3/types.rb', line 304

class AnalyticsFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#prefixString

The prefix to use when evaluating an analytics filter.

Returns:

  • (String)


304
305
306
307
308
309
310
# File 'lib/aws-sdk-s3/types.rb', line 304

class AnalyticsFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  SENSITIVE = []
  include Aws::Structure
end

#tagTypes::Tag

The tag to use when evaluating an analytics filter.

Returns:



304
305
306
307
308
309
310
# File 'lib/aws-sdk-s3/types.rb', line 304

class AnalyticsFilter < Struct.new(
  :prefix,
  :tag,
  :and)
  SENSITIVE = []
  include Aws::Structure
end