Class: Aws::S3::Types::GetObjectRetentionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::GetObjectRetentionRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
When making an API call, you may pass GetObjectRetentionRequest data as a hash:
{
bucket: "BucketName", # required
key: "ObjectKey", # required
version_id: "ObjectVersionId",
request_payer: "requester", # accepts requester
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
The bucket containing the object whose retention settings you want to retrieve.
-
#key ⇒ String
The key name for the object whose retention settings you want to retrieve.
-
#request_payer ⇒ String
Confirms that the requester knows that she or he will be charged for the request.
-
#version_id ⇒ String
The version ID for the object whose retention settings you want to retrieve.
Instance Attribute Details
#bucket ⇒ String
The bucket containing the object whose retention settings you want to retrieve.
3476 3477 3478 3479 3480 3481 3482 |
# File 'lib/aws-sdk-s3/types.rb', line 3476 class GetObjectRetentionRequest < Struct.new( :bucket, :key, :version_id, :request_payer) include Aws::Structure end |
#key ⇒ String
The key name for the object whose retention settings you want to retrieve.
3476 3477 3478 3479 3480 3481 3482 |
# File 'lib/aws-sdk-s3/types.rb', line 3476 class GetObjectRetentionRequest < Struct.new( :bucket, :key, :version_id, :request_payer) include Aws::Structure end |
#request_payer ⇒ String
Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
3476 3477 3478 3479 3480 3481 3482 |
# File 'lib/aws-sdk-s3/types.rb', line 3476 class GetObjectRetentionRequest < Struct.new( :bucket, :key, :version_id, :request_payer) include Aws::Structure end |
#version_id ⇒ String
The version ID for the object whose retention settings you want to retrieve.
3476 3477 3478 3479 3480 3481 3482 |
# File 'lib/aws-sdk-s3/types.rb', line 3476 class GetObjectRetentionRequest < Struct.new( :bucket, :key, :version_id, :request_payer) include Aws::Structure end |