You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::S3::Types::PutBucketLifecycleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::PutBucketLifecycleRequest
- Defined in:
- (unknown)
Overview
When passing PutBucketLifecycleRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
bucket: "BucketName", # required
content_md5: "ContentMD5",
lifecycle_configuration: {
rules: [ # required
{
expiration: {
date: Time.now,
days: 1,
expired_object_delete_marker: false,
},
id: "ID",
prefix: "Prefix", # required
status: "Enabled", # required, accepts Enabled, Disabled
transition: {
date: Time.now,
days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
},
noncurrent_version_transition: {
noncurrent_days: 1,
storage_class: "GLACIER", # accepts GLACIER, STANDARD_IA, ONEZONE_IA, INTELLIGENT_TIERING, DEEP_ARCHIVE
},
noncurrent_version_expiration: {
noncurrent_days: 1,
},
abort_incomplete_multipart_upload: {
days_after_initiation: 1,
},
},
],
},
expected_bucket_owner: "AccountId",
use_accelerate_endpoint: false,
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
-
#content_md5 ⇒ String
For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.
-
#expected_bucket_owner ⇒ String
The account id of the expected bucket owner.
-
#lifecycle_configuration ⇒ Types::LifecycleConfiguration
-
#use_accelerate_endpoint ⇒ Boolean
When true, the "https://BUCKETNAME.s3-accelerate.amazonaws.com" endpoint will be used.
Instance Attribute Details
#bucket ⇒ String
#content_md5 ⇒ String
For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.
#expected_bucket_owner ⇒ String
The account id of the expected bucket owner. If the bucket is owned by a
different account, the request will fail with an HTTP 403 (Access
Denied)
error.
#lifecycle_configuration ⇒ Types::LifecycleConfiguration
#use_accelerate_endpoint ⇒ Boolean
When true, the "https://BUCKETNAME.s3-accelerate.amazonaws.com" endpoint will be used.