-
Notifications
You must be signed in to change notification settings - Fork 1
/
s3_data.py
31 lines (30 loc) · 866 Bytes
/
s3_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""
Data store for S3 data, it resides in it's own file for readability
"""
data = {
"standard": {"price_per_gb": 0.023},
"standard_ia": {
"price_per_gb": 0.0125,
"transition_cost": 0.01,
"items_per_transition_chunk": 1000,
"data_retrieval_cost_per_gb": 0.01,
},
"standard_ia_one_zone": {
"price_per_gb": 0.01,
"transition_cost": 0.01,
"items_per_transition_chunk": 1000,
"data_retrieval_cost_per_gb": 0.01,
},
"glacier": {
"price_per_gb": 0.004,
"transition_cost": 0.05,
"items_per_transition_chunk": 1000,
"data_retrieval_cost_per_gb": 0.01,
},
"glacier_deep_archive": {
"price_per_gb": 0.00099,
"transition_cost": 0.05,
"items_per_transition_chunk": 1000,
"data_retrieval_cost_per_gb": 0.02,
},
}