Class: Aws::Glacier::Types::InventoryRetrievalJobInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glacier::Types::InventoryRetrievalJobInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glacier/types.rb
Overview
Provides options for specifying a range inventory retrieval job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_date ⇒ Time
The end of the date range in UTC for vault inventory retrieval that includes archives created before this date.
-
#limit ⇒ String
Specifies the maximum number of inventory items returned per vault inventory retrieval request.
-
#marker ⇒ String
An opaque string that represents where to continue pagination of the vault inventory retrieval results.
-
#start_date ⇒ Time
The start of the date range in UTC for vault inventory retrieval that includes archives created on or after this date.
Instance Attribute Details
#end_date ⇒ Time
The end of the date range in UTC for vault inventory retrieval that includes archives created before this date. This value should be a string in the ISO 8601 date format, for example ‘2013-03-20T17:03:43Z`.
1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-glacier/types.rb', line 1353 class InventoryRetrievalJobInput < Struct.new( :start_date, :end_date, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#limit ⇒ String
Specifies the maximum number of inventory items returned per vault inventory retrieval request. Valid values are greater than or equal to 1.
1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-glacier/types.rb', line 1353 class InventoryRetrievalJobInput < Struct.new( :start_date, :end_date, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
An opaque string that represents where to continue pagination of the vault inventory retrieval results. You use the marker in a new InitiateJob request to obtain additional inventory items. If there are no more inventory items, this value is ‘null`.
1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-glacier/types.rb', line 1353 class InventoryRetrievalJobInput < Struct.new( :start_date, :end_date, :limit, :marker) SENSITIVE = [] include Aws::Structure end |
#start_date ⇒ Time
The start of the date range in UTC for vault inventory retrieval that includes archives created on or after this date. This value should be a string in the ISO 8601 date format, for example ‘2013-03-20T17:03:43Z`.
1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-glacier/types.rb', line 1353 class InventoryRetrievalJobInput < Struct.new( :start_date, :end_date, :limit, :marker) SENSITIVE = [] include Aws::Structure end |