Class: Aws::Glacier::Types::DataRetrievalRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glacier::Types::DataRetrievalRule
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glacier/types.rb
Overview
Data retrieval policy rule.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bytes_per_hour ⇒ Integer
The maximum number of bytes that can be retrieved in an hour.
-
#strategy ⇒ String
The type of data retrieval policy to set.
Instance Attribute Details
#bytes_per_hour ⇒ Integer
The maximum number of bytes that can be retrieved in an hour.
This field is required only if the value of the Strategy field is ‘BytesPerHour`. Your PUT operation will be rejected if the Strategy field is not set to `BytesPerHour` and you set this field.
354 355 356 357 358 359 |
# File 'lib/aws-sdk-glacier/types.rb', line 354 class DataRetrievalRule < Struct.new( :strategy, :bytes_per_hour) SENSITIVE = [] include Aws::Structure end |
#strategy ⇒ String
The type of data retrieval policy to set.
Valid values: BytesPerHour|FreeTier|None
354 355 356 357 358 359 |
# File 'lib/aws-sdk-glacier/types.rb', line 354 class DataRetrievalRule < Struct.new( :strategy, :bytes_per_hour) SENSITIVE = [] include Aws::Structure end |