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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass AnalyticsFilter data as a hash:

{
  prefix: "Prefix",
  tag: {
    key: "ObjectKey", # required
    value: "Value", # required
  },
  and: {
    prefix: "Prefix",
    tags: [
      {
        key: "ObjectKey", # required
        value: "Value", # required
      },
    ],
  },
}

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.



308
309
310
311
312
313
# File 'lib/aws-sdk-s3/types.rb', line 308

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

#prefixString

The prefix to use when evaluating an analytics filter.

Returns:

  • (String)


308
309
310
311
312
313
# File 'lib/aws-sdk-s3/types.rb', line 308

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

#tagTypes::Tag

The tag to use when evaluating an analytics filter.

Returns:



308
309
310
311
312
313
# File 'lib/aws-sdk-s3/types.rb', line 308

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