You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::S3::Types::IntelligentTieringFilter

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing IntelligentTieringFilter as input to an Aws::Client method, you can use a vanilla Hash:

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

The Filter is used to identify objects that the S3 Intelligent-Tiering configuration applies to.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#andTypes::IntelligentTieringAndOperator

A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

Returns:

#prefixString

An object key name prefix that identifies the subset of objects to which the rule applies.

Returns:

  • (String)

    An object key name prefix that identifies the subset of objects to which the rule applies.

#tagTypes::Tag

A container of a key value name pair.

Returns:

  • (Types::Tag)

    A container of a key value name pair.

    .