inventory-retrieval by date range

0

Totally confused. Rest API documentation indicates that a date range can be used in the params, but it doesn't work.

var params = {
accountId: 'STRING_VALUE', /** required /
vaultName: 'STRING_VALUE', /
required **/
jobParameters: {
ArchiveId: 'STRING_VALUE',
Description: 'STRING_VALUE',
Format: 'STRING_VALUE',
InventoryRetrievalParameters: {
EndDate: 'STRING_VALUE',
Limit: 'STRING_VALUE',
Marker: 'STRING_VALUE',
StartDate: 'STRING_VALUE'
} ...
};
glacier.initiateJob(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});

https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/Glacier.html

Is an inventory-retrieval by date range available?

I don't want to return everything, only the inventory of a specific date range.

Edited by: gregbolog on Apr 14, 2020 10:31 AM

asked 4 years ago189 views
1 Answer
0

doesn't like fractional seconds

answered 4 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions