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.



290
291
292
293
294
295
296
# File 'lib/aws-sdk-s3/types.rb', line 290

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

#prefixString

The prefix to use when evaluating an analytics filter.

Returns:

  • (String)


290
291
292
293
294
295
296
# File 'lib/aws-sdk-s3/types.rb', line 290

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

#tagTypes::Tag

The tag to use when evaluating an analytics filter.

Returns:



290
291
292
293
294
295
296
# File 'lib/aws-sdk-s3/types.rb', line 290

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