Class: Aws::S3::Types::MetricsAndOperator

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#prefixString

The prefix used when evaluating an AND predicate.

Returns:

  • (String)


5624
5625
5626
5627
5628
# File 'lib/aws-sdk-s3/types.rb', line 5624

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

#tagsArray<Types::Tag>

The list of tags used when evaluating an AND predicate.

Returns:



5624
5625
5626
5627
5628
# File 'lib/aws-sdk-s3/types.rb', line 5624

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