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
},
and: {
prefix: "Prefix",
tags: [
{
key: "ObjectKey", # required
value: "Value", # required
},
],
},
},
status: "Enabled", # required, accepts Enabled, Disabled
transitions: [
{
date: Time.now,
days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA
},
],
noncurrent_version_transitions: [
{
noncurrent_days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA
},
],
noncurrent_version_expiration: {
noncurrent_days: 1,
},
abort_incomplete_multipart_upload: {
days_after_initiation: 1,
},
},
],
}
Instance Attribute Summary collapse
Instance Attribute Details
#rules ⇒ Array<Types::LifecycleRule>
428 429 430 431 |
# File 'lib/aws-sdk-s3/types.rb', line 428 class BucketLifecycleConfiguration < Struct.new( :rules) include Aws::Structure end |