Get Bucket Lifecycle Configuration
s3_get_bucket_lifecycle_configuration | R Documentation |
Returns the lifecycle configuration information set on the bucket¶
Description¶
Returns the lifecycle configuration information set on the bucket. For information about lifecycle configuration, see Object Lifecycle Management.
Bucket lifecycle configuration now supports specifying a lifecycle rule
using an object key name prefix, one or more object tags, object size,
or any combination of these. Accordingly, this section describes the
latest API, which is compatible with the new functionality. The previous
version of the API supported filtering based only on an object key name
prefix, which is supported for general purpose buckets for backward
compatibility. For the related API description, see
get_bucket_lifecycle
.
Lifecyle configurations for directory buckets only support expiring objects and cancelling multipart uploads. Expiring of versioned objects, transitions and tag filters are not supported.
Permissions¶
-
General purpose bucket permissions - By default, all Amazon S3 resources are private, including buckets, objects, and related subresources (for example, lifecycle configuration and website configuration). Only the resource owner (that is, the Amazon Web Services account that created it) can access the resource. The resource owner can optionally grant access permissions to others by writing an access policy. For this operation, a user must have the
s3:GetLifecycleConfiguration
permission.For more information about permissions, see Managing Access Permissions to Your Amazon S3 Resources.
-
Directory bucket permissions - You must have the
s3express:GetLifecycleConfiguration
permission in an IAM identity-based policy to use this operation. Cross-account access to this API operation isn't supported. The resource owner can optionally grant access permissions to others by creating a role or user for them as long as they are within the same account as the owner and resource.For more information about directory bucket policies and permissions, see Authorizing Regional endpoint APIs with IAM in the Amazon S3 User Guide.
Directory buckets - For directory buckets, you must make requests for this API operation to the Regional endpoint. These endpoints support path-style requests in the format
https://s3express-control.region-code.amazonaws.com/bucket-name
. Virtual-hosted-style requests aren't supported. For more information about endpoints in Availability Zones, see Regional and Zonal endpoints for directory buckets in Availability Zones in the Amazon S3 User Guide. For more information about endpoints in Local Zones, see Available Local Zone for directory buckets in the Amazon S3 User Guide.
HTTP Host header syntax¶
Directory buckets - The HTTP Host header syntax is
s3express-control.region.amazonaws.com
.
get_bucket_lifecycle_configuration
has the following special error:
-
Error code:
NoSuchLifecycleConfiguration
-
Description: The lifecycle configuration does not exist.
-
HTTP Status Code: 404 Not Found
-
SOAP Fault Code Prefix: Client
-
The following operations are related to
get_bucket_lifecycle_configuration
:
-
get_bucket_lifecycle
-
put_bucket_lifecycle
-
delete_bucket_lifecycle
Usage¶
Arguments¶
Bucket
[required] The name of the bucket for which to get the lifecycle information.
ExpectedBucketOwner
The account ID of the expected bucket owner. If the account ID that you provide does not match the actual owner of the bucket, the request fails with the HTTP status code
403 Forbidden
(access denied).This parameter applies to general purpose buckets only. It is not supported for directory bucket lifecycle configurations.
Value¶
A list with the following syntax:
list(
Rules = list(
list(
Expiration = list(
Date = as.POSIXct(
"2015-01-01"
),
Days = 123,
ExpiredObjectDeleteMarker = TRUE|FALSE
),
ID = "string",
Prefix = "string",
Filter = list(
Prefix = "string",
Tag = list(
Key = "string",
Value = "string"
),
ObjectSizeGreaterThan = 123,
ObjectSizeLessThan = 123,
And = list(
Prefix = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
ObjectSizeGreaterThan = 123,
ObjectSizeLessThan = 123
)
),
Status = "Enabled"|"Disabled",
Transitions = list(
list(
Date = as.POSIXct(
"2015-01-01"
),
Days = 123,
StorageClass = "GLACIER"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|"GLACIER_IR"
)
),
NoncurrentVersionTransitions = list(
list(
NoncurrentDays = 123,
StorageClass = "GLACIER"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"DEEP_ARCHIVE"|"GLACIER_IR",
NewerNoncurrentVersions = 123
)
),
NoncurrentVersionExpiration = list(
NoncurrentDays = 123,
NewerNoncurrentVersions = 123
),
AbortIncompleteMultipartUpload = list(
DaysAfterInitiation = 123
)
)
),
TransitionDefaultMinimumObjectSize = "varies_by_storage_class"|"all_storage_classes_128K"
)