Class: Aws::S3::Types::GlacierJobParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::GlacierJobParameters
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass GlacierJobParameters data as a hash:
{
tier: "Standard", # required, accepts Standard, Bulk, Expedited
}
Container for S3 Glacier job parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tier ⇒ String
Retrieval tier at which the restore will be processed.
Instance Attribute Details
#tier ⇒ String
Retrieval tier at which the restore will be processed.
6847 6848 6849 6850 6851 |
# File 'lib/aws-sdk-s3/types.rb', line 6847 class GlacierJobParameters < Struct.new( :tier) SENSITIVE = [] include Aws::Structure end |