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

Class: Aws::S3::Types::IntelligentTieringConfiguration

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

Overview

Note:

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

{
  id: "IntelligentTieringId", # required
  filter: {
    prefix: "Prefix",
    tag: {
      key: "ObjectKey", # required
      value: "Value", # required
    },
    and: {
      prefix: "Prefix",
      tags: [
        {
          key: "ObjectKey", # required
          value: "Value", # required
        },
      ],
    },
  },
  status: "Enabled", # required, accepts Enabled, Disabled
  tierings: [ # required
    {
      days: 1, # required
      access_tier: "ARCHIVE_ACCESS", # required, accepts ARCHIVE_ACCESS, DEEP_ARCHIVE_ACCESS
    },
  ],
}

Specifies the S3 Intelligent-Tiering configuration for an Amazon S3 bucket.

For information about the S3 Intelligent-Tiering storage class, see Storage class for automatically optimizing frequently and infrequently accessed objects.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#filterTypes::IntelligentTieringFilter

Specifies a bucket filter. The configuration only includes objects that meet the filter\'s criteria.

Returns:

#idString

The ID used to identify the S3 Intelligent-Tiering configuration.

Returns:

  • (String)

    The ID used to identify the S3 Intelligent-Tiering configuration.

#statusString

Specifies the status of the configuration.

Possible values:

  • Enabled
  • Disabled

Returns:

  • (String)

    Specifies the status of the configuration.

#tieringsArray<Types::Tiering>

Specifies the S3 Intelligent-Tiering storage class tier of the configuration.

Returns:

  • (Array<Types::Tiering>)

    Specifies the S3 Intelligent-Tiering storage class tier of the configuration.