Class: Aws::S3::Types::RestoreRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::RestoreRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass RestoreRequest data as a hash:
{
days: 1, # required
glacier_job_parameters: {
tier: "Standard", # required, accepts Standard, Bulk, Expedited
},
}
Instance Attribute Summary collapse
-
#days ⇒ Integer
Lifetime of the active copy in days.
-
#glacier_job_parameters ⇒ Types::GlacierJobParameters
Glacier related prameters pertaining to this job.
Instance Attribute Details
#days ⇒ Integer
Lifetime of the active copy in days
6865 6866 6867 6868 6869 |
# File 'lib/aws-sdk-s3/types.rb', line 6865 class RestoreRequest < Struct.new( :days, :glacier_job_parameters) include Aws::Structure end |
#glacier_job_parameters ⇒ Types::GlacierJobParameters
Glacier related prameters pertaining to this job.
6865 6866 6867 6868 6869 |
# File 'lib/aws-sdk-s3/types.rb', line 6865 class RestoreRequest < Struct.new( :days, :glacier_job_parameters) include Aws::Structure end |