File tree 1 file changed +11
-0
lines changed
packages/@aws-cdk/aws-s3/lib
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,17 @@ export class StorageClass {
184
184
*/
185
185
public static readonly GLACIER = new StorageClass ( 'GLACIER' ) ;
186
186
187
+ /**
188
+ * Storage class for long-term archival that can be accessed in a few milliseconds.
189
+ *
190
+ * It is ideal for data that is accessed once or twice per quarter, and
191
+ * that requires immediate access. Data stored in the GLACIER_IR storage class
192
+ * has a minimum storage duration period of 90 days and can be accessed in
193
+ * as milliseconds. If you delete an object before the 90-day minimum,
194
+ * you are charged for 90 days.
195
+ */
196
+ public static readonly GLACIER_INSTANT_RETRIEVAL = new StorageClass ( 'GLACIER_IR' ) ;
197
+
187
198
/**
188
199
* Use for archiving data that rarely needs to be accessed. Data stored in the
189
200
* DEEP_ARCHIVE storage class has a minimum storage duration period of 180
You can’t perform that action at this time.
0 commit comments