@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.
@@ -12,42 +12,35 @@ export class ObjectAlreadyInActiveTierError extends __BaseException {
12
12
  Object.setPrototypeOf(this, ObjectAlreadyInActiveTierError.prototype);
13
13
  }
14
14
  }
15
- export var Tier;
16
- (function (Tier) {
17
- Tier["Bulk"] = "Bulk";
18
- Tier["Expedited"] = "Expedited";
19
- Tier["Standard"] = "Standard";
20
- })(Tier || (Tier = {}));
21
- export var ExpressionType;
22
- (function (ExpressionType) {
23
- ExpressionType["SQL"] = "SQL";
24
- })(ExpressionType || (ExpressionType = {}));
25
- export var CompressionType;
26
- (function (CompressionType) {
27
- CompressionType["BZIP2"] = "BZIP2";
28
- CompressionType["GZIP"] = "GZIP";
29
- CompressionType["NONE"] = "NONE";
30
- })(CompressionType || (CompressionType = {}));
31
- export var FileHeaderInfo;
32
- (function (FileHeaderInfo) {
33
- FileHeaderInfo["IGNORE"] = "IGNORE";
34
- FileHeaderInfo["NONE"] = "NONE";
35
- FileHeaderInfo["USE"] = "USE";
36
- })(FileHeaderInfo || (FileHeaderInfo = {}));
37
- export var JSONType;
38
- (function (JSONType) {
39
- JSONType["DOCUMENT"] = "DOCUMENT";
40
- JSONType["LINES"] = "LINES";
41
- })(JSONType || (JSONType = {}));
42
- export var QuoteFields;
43
- (function (QuoteFields) {
44
- QuoteFields["ALWAYS"] = "ALWAYS";
45
- QuoteFields["ASNEEDED"] = "ASNEEDED";
46
- })(QuoteFields || (QuoteFields = {}));
47
- export var RestoreRequestType;
48
- (function (RestoreRequestType) {
49
- RestoreRequestType["SELECT"] = "SELECT";
50
- })(RestoreRequestType || (RestoreRequestType = {}));
15
+ export const Tier = {
16
+ Bulk: "Bulk",
17
+ Expedited: "Expedited",
18
+ Standard: "Standard",
19
+ };
20
+ export const ExpressionType = {
21
+ SQL: "SQL",
22
+ };
23
+ export const CompressionType = {
24
+ BZIP2: "BZIP2",
25
+ GZIP: "GZIP",
26
+ NONE: "NONE",
27
+ };
28
+ export const FileHeaderInfo = {
29
+ IGNORE: "IGNORE",
30
+ NONE: "NONE",
31
+ USE: "USE",
32
+ };
33
+ export const JSONType = {
34
+ DOCUMENT: "DOCUMENT",
35
+ LINES: "LINES",
36
+ };
37
+ export const QuoteFields = {
38
+ ALWAYS: "ALWAYS",
39
+ ASNEEDED: "ASNEEDED",
40
+ };
41
+ export const RestoreRequestType = {
42
+ SELECT: "SELECT",
43
+ };
51
44
  export var SelectObjectContentEventStream;
52
45
  (function (SelectObjectContentEventStream) {
53
46
  SelectObjectContentEventStream.visit = (value, visitor) => {