Class: Aws::S3::Types::IntelligentTieringConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::IntelligentTieringConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
When making an API call, you may pass IntelligentTieringConfiguration data as a 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].
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/storage-class-intro.html#sc-dynamic-data-access
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ Types::IntelligentTieringFilter
Specifies a bucket filter.
-
#id ⇒ String
The ID used to identify the S3 Intelligent-Tiering configuration.
-
#status ⇒ String
Specifies the status of the configuration.
-
#tierings ⇒ Array<Types::Tiering>
Specifies the S3 Intelligent-Tiering storage class tier of the configuration.
Instance Attribute Details
#filter ⇒ Types::IntelligentTieringFilter
Specifies a bucket filter. The configuration only includes objects that meet the filter’s criteria.
7700 7701 7702 7703 7704 7705 7706 7707 |
# File 'lib/aws-sdk-s3/types.rb', line 7700 class IntelligentTieringConfiguration < Struct.new( :id, :filter, :status, :tierings) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID used to identify the S3 Intelligent-Tiering configuration.
7700 7701 7702 7703 7704 7705 7706 7707 |
# File 'lib/aws-sdk-s3/types.rb', line 7700 class IntelligentTieringConfiguration < Struct.new( :id, :filter, :status, :tierings) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Specifies the status of the configuration.
7700 7701 7702 7703 7704 7705 7706 7707 |
# File 'lib/aws-sdk-s3/types.rb', line 7700 class IntelligentTieringConfiguration < Struct.new( :id, :filter, :status, :tierings) SENSITIVE = [] include Aws::Structure end |
#tierings ⇒ Array<Types::Tiering>
Specifies the S3 Intelligent-Tiering storage class tier of the configuration.
7700 7701 7702 7703 7704 7705 7706 7707 |
# File 'lib/aws-sdk-s3/types.rb', line 7700 class IntelligentTieringConfiguration < Struct.new( :id, :filter, :status, :tierings) SENSITIVE = [] include Aws::Structure end |