Class: Aws::S3::Types::BucketLifecycleConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::BucketLifecycleConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass BucketLifecycleConfiguration data as a hash:
{
rules: [ # required
{
expiration: {
date: Time.now,
days: 1,
expired_object_delete_marker: false,
},
id: "ID",
prefix: "Prefix",
filter: {
prefix: "Prefix",
tag: {
key: "ObjectKey", # required
value: "Value", # required
},
object_size_greater_than: 1,
object_size_less_than: 1,
and: {
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
object_size_greater_than: 1,
object_size_less_than: 1,
},
},
status: "Enabled", # required, accepts Enabled, Disabled
transitions: [
{
date: Time.now,
days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
},
],
noncurrent_version_transitions: [
{
noncurrent_days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE, GLACIER_IR
newer_noncurrent_versions: 1,
},
],
noncurrent_version_expiration: {
noncurrent_days: 1,
newer_noncurrent_versions: 1,
},
abort_incomplete_multipart_upload: {
days_after_initiation: 1,
},
},
],
}
Specifies the lifecycle configuration for objects in an Amazon S3 bucket. For more information, see [Object Lifecycle Management] in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rules ⇒ Array<Types::LifecycleRule>
A lifecycle rule for individual objects in an Amazon S3 bucket.
Instance Attribute Details
#rules ⇒ Array<Types::LifecycleRule>
A lifecycle rule for individual objects in an Amazon S3 bucket.
566 567 568 569 570 |
# File 'lib/aws-sdk-s3/types.rb', line 566 class BucketLifecycleConfiguration < Struct.new( :rules) SENSITIVE = [] include Aws::Structure end |