@aws-sdk/client-databrew 3.934.0 → 3.936.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.
- package/dist-cjs/index.js +108 -107
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +107 -0
- package/dist-es/models/errors.js +85 -0
- package/dist-es/models/models_0.js +1 -192
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +259 -0
- package/dist-types/models/errors.d.ts +80 -0
- package/dist-types/models/models_0.d.ts +1 -339
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +131 -0
- package/dist-types/ts3.4/models/errors.d.ts +48 -0
- package/dist-types/ts3.4/models/models_0.d.ts +21 -179
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AnalyticsMode: {
|
|
6
|
+
readonly DISABLE: "DISABLE";
|
|
7
|
+
readonly ENABLE: "ENABLE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type AnalyticsMode = (typeof AnalyticsMode)[keyof typeof AnalyticsMode];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const InputFormat: {
|
|
18
|
+
readonly CSV: "CSV";
|
|
19
|
+
readonly EXCEL: "EXCEL";
|
|
20
|
+
readonly JSON: "JSON";
|
|
21
|
+
readonly ORC: "ORC";
|
|
22
|
+
readonly PARQUET: "PARQUET";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const Order: {
|
|
33
|
+
readonly ASCENDING: "ASCENDING";
|
|
34
|
+
readonly DESCENDING: "DESCENDING";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type Order = (typeof Order)[keyof typeof Order];
|
|
40
|
+
/**
|
|
41
|
+
* @public
|
|
42
|
+
* @enum
|
|
43
|
+
*/
|
|
44
|
+
export declare const OrderedBy: {
|
|
45
|
+
readonly LAST_MODIFIED_DATE: "LAST_MODIFIED_DATE";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const ParameterType: {
|
|
56
|
+
readonly Datetime: "Datetime";
|
|
57
|
+
readonly Number: "Number";
|
|
58
|
+
readonly String: "String";
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* @enum
|
|
67
|
+
*/
|
|
68
|
+
export declare const EncryptionMode: {
|
|
69
|
+
readonly SSEKMS: "SSE-KMS";
|
|
70
|
+
readonly SSES3: "SSE-S3";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const SampleMode: {
|
|
81
|
+
readonly CUSTOM_ROWS: "CUSTOM_ROWS";
|
|
82
|
+
readonly FULL_DATASET: "FULL_DATASET";
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode];
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
* @enum
|
|
91
|
+
*/
|
|
92
|
+
export declare const LogSubscription: {
|
|
93
|
+
readonly DISABLE: "DISABLE";
|
|
94
|
+
readonly ENABLE: "ENABLE";
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export type LogSubscription = (typeof LogSubscription)[keyof typeof LogSubscription];
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* @enum
|
|
103
|
+
*/
|
|
104
|
+
export declare const ValidationMode: {
|
|
105
|
+
readonly CHECK_ALL: "CHECK_ALL";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export type ValidationMode = (typeof ValidationMode)[keyof typeof ValidationMode];
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
* @enum
|
|
114
|
+
*/
|
|
115
|
+
export declare const SampleType: {
|
|
116
|
+
readonly FIRST_N: "FIRST_N";
|
|
117
|
+
readonly LAST_N: "LAST_N";
|
|
118
|
+
readonly RANDOM: "RANDOM";
|
|
119
|
+
};
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
export type SampleType = (typeof SampleType)[keyof typeof SampleType];
|
|
124
|
+
/**
|
|
125
|
+
* @public
|
|
126
|
+
* @enum
|
|
127
|
+
*/
|
|
128
|
+
export declare const DatabaseOutputMode: {
|
|
129
|
+
readonly NEW_TABLE: "NEW_TABLE";
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export type DatabaseOutputMode = (typeof DatabaseOutputMode)[keyof typeof DatabaseOutputMode];
|
|
135
|
+
/**
|
|
136
|
+
* @public
|
|
137
|
+
* @enum
|
|
138
|
+
*/
|
|
139
|
+
export declare const CompressionFormat: {
|
|
140
|
+
readonly BROTLI: "BROTLI";
|
|
141
|
+
readonly BZIP2: "BZIP2";
|
|
142
|
+
readonly DEFLATE: "DEFLATE";
|
|
143
|
+
readonly GZIP: "GZIP";
|
|
144
|
+
readonly LZ4: "LZ4";
|
|
145
|
+
readonly LZO: "LZO";
|
|
146
|
+
readonly SNAPPY: "SNAPPY";
|
|
147
|
+
readonly ZLIB: "ZLIB";
|
|
148
|
+
readonly ZSTD: "ZSTD";
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
export type CompressionFormat = (typeof CompressionFormat)[keyof typeof CompressionFormat];
|
|
154
|
+
/**
|
|
155
|
+
* @public
|
|
156
|
+
* @enum
|
|
157
|
+
*/
|
|
158
|
+
export declare const OutputFormat: {
|
|
159
|
+
readonly AVRO: "AVRO";
|
|
160
|
+
readonly CSV: "CSV";
|
|
161
|
+
readonly GLUEPARQUET: "GLUEPARQUET";
|
|
162
|
+
readonly JSON: "JSON";
|
|
163
|
+
readonly ORC: "ORC";
|
|
164
|
+
readonly PARQUET: "PARQUET";
|
|
165
|
+
readonly TABLEAUHYPER: "TABLEAUHYPER";
|
|
166
|
+
readonly XML: "XML";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const ThresholdType: {
|
|
177
|
+
readonly GREATER_THAN: "GREATER_THAN";
|
|
178
|
+
readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
|
|
179
|
+
readonly LESS_THAN: "LESS_THAN";
|
|
180
|
+
readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* @public
|
|
184
|
+
*/
|
|
185
|
+
export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
|
|
186
|
+
/**
|
|
187
|
+
* @public
|
|
188
|
+
* @enum
|
|
189
|
+
*/
|
|
190
|
+
export declare const ThresholdUnit: {
|
|
191
|
+
readonly COUNT: "COUNT";
|
|
192
|
+
readonly PERCENTAGE: "PERCENTAGE";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit];
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* @enum
|
|
201
|
+
*/
|
|
202
|
+
export declare const Source: {
|
|
203
|
+
readonly DATABASE: "DATABASE";
|
|
204
|
+
readonly DATACATALOG: "DATA-CATALOG";
|
|
205
|
+
readonly S3: "S3";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type Source = (typeof Source)[keyof typeof Source];
|
|
211
|
+
/**
|
|
212
|
+
* @public
|
|
213
|
+
* @enum
|
|
214
|
+
*/
|
|
215
|
+
export declare const JobType: {
|
|
216
|
+
readonly PROFILE: "PROFILE";
|
|
217
|
+
readonly RECIPE: "RECIPE";
|
|
218
|
+
};
|
|
219
|
+
/**
|
|
220
|
+
* @public
|
|
221
|
+
*/
|
|
222
|
+
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
223
|
+
/**
|
|
224
|
+
* @public
|
|
225
|
+
* @enum
|
|
226
|
+
*/
|
|
227
|
+
export declare const JobRunState: {
|
|
228
|
+
readonly FAILED: "FAILED";
|
|
229
|
+
readonly RUNNING: "RUNNING";
|
|
230
|
+
readonly STARTING: "STARTING";
|
|
231
|
+
readonly STOPPED: "STOPPED";
|
|
232
|
+
readonly STOPPING: "STOPPING";
|
|
233
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
234
|
+
readonly TIMEOUT: "TIMEOUT";
|
|
235
|
+
};
|
|
236
|
+
/**
|
|
237
|
+
* @public
|
|
238
|
+
*/
|
|
239
|
+
export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
|
|
240
|
+
/**
|
|
241
|
+
* @public
|
|
242
|
+
* @enum
|
|
243
|
+
*/
|
|
244
|
+
export declare const SessionStatus: {
|
|
245
|
+
readonly ASSIGNED: "ASSIGNED";
|
|
246
|
+
readonly FAILED: "FAILED";
|
|
247
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
248
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
249
|
+
readonly READY: "READY";
|
|
250
|
+
readonly RECYCLING: "RECYCLING";
|
|
251
|
+
readonly ROTATING: "ROTATING";
|
|
252
|
+
readonly TERMINATED: "TERMINATED";
|
|
253
|
+
readonly TERMINATING: "TERMINATING";
|
|
254
|
+
readonly UPDATING: "UPDATING";
|
|
255
|
+
};
|
|
256
|
+
/**
|
|
257
|
+
* @public
|
|
258
|
+
*/
|
|
259
|
+
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DataBrewServiceException as __BaseException } from "./DataBrewServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Access to the specified resource was denied.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
Message?: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class ConflictException extends __BaseException {
|
|
21
|
+
readonly name: "ConflictException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
Message?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* <p>One or more resources can't be found.</p>
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
33
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
34
|
+
readonly name: "ResourceNotFoundException";
|
|
35
|
+
readonly $fault: "client";
|
|
36
|
+
Message?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* @internal
|
|
39
|
+
*/
|
|
40
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* <p>The input parameters for this request failed validation.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
export declare class ValidationException extends __BaseException {
|
|
47
|
+
readonly name: "ValidationException";
|
|
48
|
+
readonly $fault: "client";
|
|
49
|
+
Message?: string | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* <p>A service quota is exceeded.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
60
|
+
readonly name: "ServiceQuotaExceededException";
|
|
61
|
+
readonly $fault: "client";
|
|
62
|
+
Message?: string | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
66
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* <p>An internal service failure occurred.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
export declare class InternalServerException extends __BaseException {
|
|
73
|
+
readonly name: "InternalServerException";
|
|
74
|
+
readonly $fault: "server";
|
|
75
|
+
Message?: string | undefined;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
80
|
+
}
|