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

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 AnalyticsAndOperator data as a hash:

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

Instance Attribute Summary collapse

Instance Attribute Details

#prefixString

The prefix to use when evaluating an AND predicate.

Returns:

  • (String)


181
182
183
184
185
# File 'lib/aws-sdk-s3/types.rb', line 181

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

#tagsArray<Types::Tag>

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

Returns:



181
182
183
184
185
# File 'lib/aws-sdk-s3/types.rb', line 181

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