Class: Aws::S3Control::Types::S3InitiateRestoreObjectOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::S3InitiateRestoreObjectOperation
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Contains the configuration parameters for a POST Object restore job.
S3 Batch Operations passes every object to the underlying
RestoreObject
API operation. For more information about the
parameters for this operation, see RestoreObject.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#expiration_in_days ⇒ Integer
This argument specifies how long the S3 Glacier or S3 Glacier Deep Archive object remains available in Amazon S3.
-
#glacier_job_tier ⇒ String
S3 Batch Operations supports
STANDARD
andBULK
retrieval tiers, but not theEXPEDITED
retrieval tier.
Instance Attribute Details
#expiration_in_days ⇒ Integer
This argument specifies how long the S3 Glacier or S3 Glacier Deep
Archive object remains available in Amazon S3. S3 Initiate Restore
Object jobs that target S3 Glacier and S3 Glacier Deep Archive
objects require ExpirationInDays
set to 1 or greater.
Conversely, do not set ExpirationInDays
when creating S3
Initiate Restore Object jobs that target S3 Intelligent-Tiering
Archive Access and Deep Archive Access tier objects. Objects in S3
Intelligent-Tiering archive access tiers are not subject to restore
expiry, so specifying ExpirationInDays
results in restore request
failure.
S3 Batch Operations jobs can operate either on S3 Glacier and S3 Glacier Deep Archive storage class objects or on S3 Intelligent-Tiering Archive Access and Deep Archive Access storage tier objects, but not both types in the same job. If you need to restore objects of both types you must create separate Batch Operations jobs.
7212 7213 7214 7215 7216 7217 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7212 class S3InitiateRestoreObjectOperation < Struct.new( :expiration_in_days, :glacier_job_tier) SENSITIVE = [] include Aws::Structure end |
#glacier_job_tier ⇒ String
S3 Batch Operations supports STANDARD
and BULK
retrieval tiers,
but not the EXPEDITED
retrieval tier.
7212 7213 7214 7215 7216 7217 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 7212 class S3InitiateRestoreObjectOperation < Struct.new( :expiration_in_days, :glacier_job_tier) SENSITIVE = [] include Aws::Structure end |