@aws-sdk/client-s3 3.301.0 → 3.303.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -197,12 +197,17 @@ export interface RestoreObjectOutput {
197
197
  }
198
198
  /**
199
199
  * @public
200
+ * @enum
200
201
  */
201
- export declare enum Tier {
202
- Bulk = "Bulk",
203
- Expedited = "Expedited",
204
- Standard = "Standard"
205
- }
202
+ export declare const Tier: {
203
+ readonly Bulk: "Bulk";
204
+ readonly Expedited: "Expedited";
205
+ readonly Standard: "Standard";
206
+ };
207
+ /**
208
+ * @public
209
+ */
210
+ export type Tier = (typeof Tier)[keyof typeof Tier];
206
211
  /**
207
212
  * @public
208
213
  * <p>Container for S3 Glacier job parameters.</p>
@@ -301,26 +306,41 @@ export interface OutputLocation {
301
306
  }
302
307
  /**
303
308
  * @public
309
+ * @enum
304
310
  */
305
- export declare enum ExpressionType {
306
- SQL = "SQL"
307
- }
311
+ export declare const ExpressionType: {
312
+ readonly SQL: "SQL";
313
+ };
308
314
  /**
309
315
  * @public
310
316
  */
311
- export declare enum CompressionType {
312
- BZIP2 = "BZIP2",
313
- GZIP = "GZIP",
314
- NONE = "NONE"
315
- }
317
+ export type ExpressionType = (typeof ExpressionType)[keyof typeof ExpressionType];
316
318
  /**
317
319
  * @public
320
+ * @enum
318
321
  */
319
- export declare enum FileHeaderInfo {
320
- IGNORE = "IGNORE",
321
- NONE = "NONE",
322
- USE = "USE"
323
- }
322
+ export declare const CompressionType: {
323
+ readonly BZIP2: "BZIP2";
324
+ readonly GZIP: "GZIP";
325
+ readonly NONE: "NONE";
326
+ };
327
+ /**
328
+ * @public
329
+ */
330
+ export type CompressionType = (typeof CompressionType)[keyof typeof CompressionType];
331
+ /**
332
+ * @public
333
+ * @enum
334
+ */
335
+ export declare const FileHeaderInfo: {
336
+ readonly IGNORE: "IGNORE";
337
+ readonly NONE: "NONE";
338
+ readonly USE: "USE";
339
+ };
340
+ /**
341
+ * @public
342
+ */
343
+ export type FileHeaderInfo = (typeof FileHeaderInfo)[keyof typeof FileHeaderInfo];
324
344
  /**
325
345
  * @public
326
346
  * <p>Describes how an uncompressed comma-separated values (CSV)-formatted input object is
@@ -390,11 +410,16 @@ export interface CSVInput {
390
410
  }
391
411
  /**
392
412
  * @public
413
+ * @enum
393
414
  */
394
- export declare enum JSONType {
395
- DOCUMENT = "DOCUMENT",
396
- LINES = "LINES"
397
- }
415
+ export declare const JSONType: {
416
+ readonly DOCUMENT: "DOCUMENT";
417
+ readonly LINES: "LINES";
418
+ };
419
+ /**
420
+ * @public
421
+ */
422
+ export type JSONType = (typeof JSONType)[keyof typeof JSONType];
398
423
  /**
399
424
  * @public
400
425
  * <p>Specifies JSON as object's input serialization format.</p>
@@ -436,11 +461,16 @@ export interface InputSerialization {
436
461
  }
437
462
  /**
438
463
  * @public
464
+ * @enum
439
465
  */
440
- export declare enum QuoteFields {
441
- ALWAYS = "ALWAYS",
442
- ASNEEDED = "ASNEEDED"
443
- }
466
+ export declare const QuoteFields: {
467
+ readonly ALWAYS: "ALWAYS";
468
+ readonly ASNEEDED: "ASNEEDED";
469
+ };
470
+ /**
471
+ * @public
472
+ */
473
+ export type QuoteFields = (typeof QuoteFields)[keyof typeof QuoteFields];
444
474
  /**
445
475
  * @public
446
476
  * <p>Describes how uncompressed comma-separated values (CSV)-formatted results are
@@ -532,10 +562,15 @@ export interface SelectParameters {
532
562
  }
533
563
  /**
534
564
  * @public
565
+ * @enum
535
566
  */
536
- export declare enum RestoreRequestType {
537
- SELECT = "SELECT"
538
- }
567
+ export declare const RestoreRequestType: {
568
+ readonly SELECT: "SELECT";
569
+ };
570
+ /**
571
+ * @public
572
+ */
573
+ export type RestoreRequestType = (typeof RestoreRequestType)[keyof typeof RestoreRequestType];
539
574
  /**
540
575
  * @public
541
576
  * <p>Container for restore job parameters.</p>