@aws-sdk/client-databrew 3.933.0 → 3.935.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.
@@ -1,21 +1,27 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { DataBrewServiceException as __BaseException } from "./DataBrewServiceException";
3
- export declare class AccessDeniedException extends __BaseException {
4
- readonly name: "AccessDeniedException";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(
8
- opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
- );
10
- }
1
+ import {
2
+ AnalyticsMode,
3
+ CompressionFormat,
4
+ DatabaseOutputMode,
5
+ EncryptionMode,
6
+ InputFormat,
7
+ JobRunState,
8
+ JobType,
9
+ LogSubscription,
10
+ Order,
11
+ OrderedBy,
12
+ OutputFormat,
13
+ ParameterType,
14
+ SampleMode,
15
+ SampleType,
16
+ SessionStatus,
17
+ Source,
18
+ ThresholdType,
19
+ ThresholdUnit,
20
+ ValidationMode,
21
+ } from "./enums";
11
22
  export interface AllowedStatistics {
12
23
  Statistics: string[] | undefined;
13
24
  }
14
- export declare const AnalyticsMode: {
15
- readonly DISABLE: "DISABLE";
16
- readonly ENABLE: "ENABLE";
17
- };
18
- export type AnalyticsMode = (typeof AnalyticsMode)[keyof typeof AnalyticsMode];
19
25
  export interface BatchDeleteRecipeVersionRequest {
20
26
  Name: string | undefined;
21
27
  RecipeVersions: string[] | undefined;
@@ -29,36 +35,6 @@ export interface BatchDeleteRecipeVersionResponse {
29
35
  Name: string | undefined;
30
36
  Errors?: RecipeVersionErrorDetail[] | undefined;
31
37
  }
32
- export declare class ConflictException extends __BaseException {
33
- readonly name: "ConflictException";
34
- readonly $fault: "client";
35
- Message?: string | undefined;
36
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
37
- }
38
- export declare class ResourceNotFoundException extends __BaseException {
39
- readonly name: "ResourceNotFoundException";
40
- readonly $fault: "client";
41
- Message?: string | undefined;
42
- constructor(
43
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
44
- );
45
- }
46
- export declare class ValidationException extends __BaseException {
47
- readonly name: "ValidationException";
48
- readonly $fault: "client";
49
- Message?: string | undefined;
50
- constructor(
51
- opts: __ExceptionOptionType<ValidationException, __BaseException>
52
- );
53
- }
54
- export declare const InputFormat: {
55
- readonly CSV: "CSV";
56
- readonly EXCEL: "EXCEL";
57
- readonly JSON: "JSON";
58
- readonly ORC: "ORC";
59
- readonly PARQUET: "PARQUET";
60
- };
61
- export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
62
38
  export interface CsvOptions {
63
39
  Delimiter?: string | undefined;
64
40
  HeaderRow?: boolean | undefined;
@@ -102,15 +78,6 @@ export interface Input {
102
78
  DatabaseInputDefinition?: DatabaseInputDefinition | undefined;
103
79
  Metadata?: Metadata | undefined;
104
80
  }
105
- export declare const Order: {
106
- readonly ASCENDING: "ASCENDING";
107
- readonly DESCENDING: "DESCENDING";
108
- };
109
- export type Order = (typeof Order)[keyof typeof Order];
110
- export declare const OrderedBy: {
111
- readonly LAST_MODIFIED_DATE: "LAST_MODIFIED_DATE";
112
- };
113
- export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy];
114
81
  export interface FilesLimit {
115
82
  MaxFiles: number | undefined;
116
83
  OrderedBy?: OrderedBy | undefined;
@@ -125,12 +92,6 @@ export interface DatetimeOptions {
125
92
  TimezoneOffset?: string | undefined;
126
93
  LocaleCode?: string | undefined;
127
94
  }
128
- export declare const ParameterType: {
129
- readonly Datetime: "Datetime";
130
- readonly Number: "Number";
131
- readonly String: "String";
132
- };
133
- export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
134
95
  export interface DatasetParameter {
135
96
  Name: string | undefined;
136
97
  Type: ParameterType | undefined;
@@ -154,14 +115,6 @@ export interface CreateDatasetRequest {
154
115
  export interface CreateDatasetResponse {
155
116
  Name: string | undefined;
156
117
  }
157
- export declare class ServiceQuotaExceededException extends __BaseException {
158
- readonly name: "ServiceQuotaExceededException";
159
- readonly $fault: "client";
160
- Message?: string | undefined;
161
- constructor(
162
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
163
- );
164
- }
165
118
  export interface ColumnSelector {
166
119
  Regex?: string | undefined;
167
120
  Name?: string | undefined;
@@ -188,32 +141,10 @@ export interface ProfileConfiguration {
188
141
  ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[] | undefined;
189
142
  EntityDetectorConfiguration?: EntityDetectorConfiguration | undefined;
190
143
  }
191
- export declare const EncryptionMode: {
192
- readonly SSEKMS: "SSE-KMS";
193
- readonly SSES3: "SSE-S3";
194
- };
195
- export type EncryptionMode =
196
- (typeof EncryptionMode)[keyof typeof EncryptionMode];
197
- export declare const SampleMode: {
198
- readonly CUSTOM_ROWS: "CUSTOM_ROWS";
199
- readonly FULL_DATASET: "FULL_DATASET";
200
- };
201
- export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode];
202
144
  export interface JobSample {
203
145
  Mode?: SampleMode | undefined;
204
146
  Size?: number | undefined;
205
147
  }
206
- export declare const LogSubscription: {
207
- readonly DISABLE: "DISABLE";
208
- readonly ENABLE: "ENABLE";
209
- };
210
- export type LogSubscription =
211
- (typeof LogSubscription)[keyof typeof LogSubscription];
212
- export declare const ValidationMode: {
213
- readonly CHECK_ALL: "CHECK_ALL";
214
- };
215
- export type ValidationMode =
216
- (typeof ValidationMode)[keyof typeof ValidationMode];
217
148
  export interface ValidationConfiguration {
218
149
  RulesetArn: string | undefined;
219
150
  ValidationMode?: ValidationMode | undefined;
@@ -237,12 +168,6 @@ export interface CreateProfileJobRequest {
237
168
  export interface CreateProfileJobResponse {
238
169
  Name: string | undefined;
239
170
  }
240
- export declare const SampleType: {
241
- readonly FIRST_N: "FIRST_N";
242
- readonly LAST_N: "LAST_N";
243
- readonly RANDOM: "RANDOM";
244
- };
245
- export type SampleType = (typeof SampleType)[keyof typeof SampleType];
246
171
  export interface Sample {
247
172
  Size?: number | undefined;
248
173
  Type: SampleType | undefined;
@@ -258,14 +183,6 @@ export interface CreateProjectRequest {
258
183
  export interface CreateProjectResponse {
259
184
  Name: string | undefined;
260
185
  }
261
- export declare class InternalServerException extends __BaseException {
262
- readonly name: "InternalServerException";
263
- readonly $fault: "server";
264
- Message?: string | undefined;
265
- constructor(
266
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
267
- );
268
- }
269
186
  export interface RecipeAction {
270
187
  Operation: string | undefined;
271
188
  Parameters?: Record<string, string> | undefined;
@@ -292,11 +209,6 @@ export interface DatabaseTableOutputOptions {
292
209
  TempDirectory?: S3Location | undefined;
293
210
  TableName: string | undefined;
294
211
  }
295
- export declare const DatabaseOutputMode: {
296
- readonly NEW_TABLE: "NEW_TABLE";
297
- };
298
- export type DatabaseOutputMode =
299
- (typeof DatabaseOutputMode)[keyof typeof DatabaseOutputMode];
300
212
  export interface DatabaseOutput {
301
213
  GlueConnectionName: string | undefined;
302
214
  DatabaseOptions: DatabaseTableOutputOptions | undefined;
@@ -313,30 +225,6 @@ export interface DataCatalogOutput {
313
225
  DatabaseOptions?: DatabaseTableOutputOptions | undefined;
314
226
  Overwrite?: boolean | undefined;
315
227
  }
316
- export declare const CompressionFormat: {
317
- readonly BROTLI: "BROTLI";
318
- readonly BZIP2: "BZIP2";
319
- readonly DEFLATE: "DEFLATE";
320
- readonly GZIP: "GZIP";
321
- readonly LZ4: "LZ4";
322
- readonly LZO: "LZO";
323
- readonly SNAPPY: "SNAPPY";
324
- readonly ZLIB: "ZLIB";
325
- readonly ZSTD: "ZSTD";
326
- };
327
- export type CompressionFormat =
328
- (typeof CompressionFormat)[keyof typeof CompressionFormat];
329
- export declare const OutputFormat: {
330
- readonly AVRO: "AVRO";
331
- readonly CSV: "CSV";
332
- readonly GLUEPARQUET: "GLUEPARQUET";
333
- readonly JSON: "JSON";
334
- readonly ORC: "ORC";
335
- readonly PARQUET: "PARQUET";
336
- readonly TABLEAUHYPER: "TABLEAUHYPER";
337
- readonly XML: "XML";
338
- };
339
- export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
340
228
  export interface CsvOutputOptions {
341
229
  Delimiter?: string | undefined;
342
230
  }
@@ -376,18 +264,6 @@ export interface CreateRecipeJobRequest {
376
264
  export interface CreateRecipeJobResponse {
377
265
  Name: string | undefined;
378
266
  }
379
- export declare const ThresholdType: {
380
- readonly GREATER_THAN: "GREATER_THAN";
381
- readonly GREATER_THAN_OR_EQUAL: "GREATER_THAN_OR_EQUAL";
382
- readonly LESS_THAN: "LESS_THAN";
383
- readonly LESS_THAN_OR_EQUAL: "LESS_THAN_OR_EQUAL";
384
- };
385
- export type ThresholdType = (typeof ThresholdType)[keyof typeof ThresholdType];
386
- export declare const ThresholdUnit: {
387
- readonly COUNT: "COUNT";
388
- readonly PERCENTAGE: "PERCENTAGE";
389
- };
390
- export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit];
391
267
  export interface Threshold {
392
268
  Value: number | undefined;
393
269
  Type?: ThresholdType | undefined;
@@ -461,12 +337,6 @@ export interface DeleteScheduleResponse {
461
337
  export interface DescribeDatasetRequest {
462
338
  Name: string | undefined;
463
339
  }
464
- export declare const Source: {
465
- readonly DATABASE: "DATABASE";
466
- readonly DATACATALOG: "DATA-CATALOG";
467
- readonly S3: "S3";
468
- };
469
- export type Source = (typeof Source)[keyof typeof Source];
470
340
  export interface DescribeDatasetResponse {
471
341
  CreatedBy?: string | undefined;
472
342
  CreateDate?: Date | undefined;
@@ -484,11 +354,6 @@ export interface DescribeDatasetResponse {
484
354
  export interface DescribeJobRequest {
485
355
  Name: string | undefined;
486
356
  }
487
- export declare const JobType: {
488
- readonly PROFILE: "PROFILE";
489
- readonly RECIPE: "RECIPE";
490
- };
491
- export type JobType = (typeof JobType)[keyof typeof JobType];
492
357
  export interface DescribeJobResponse {
493
358
  CreateDate?: Date | undefined;
494
359
  CreatedBy?: string | undefined;
@@ -519,16 +384,6 @@ export interface DescribeJobRunRequest {
519
384
  Name: string | undefined;
520
385
  RunId: string | undefined;
521
386
  }
522
- export declare const JobRunState: {
523
- readonly FAILED: "FAILED";
524
- readonly RUNNING: "RUNNING";
525
- readonly STARTING: "STARTING";
526
- readonly STOPPED: "STOPPED";
527
- readonly STOPPING: "STOPPING";
528
- readonly SUCCEEDED: "SUCCEEDED";
529
- readonly TIMEOUT: "TIMEOUT";
530
- };
531
- export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
532
387
  export interface DescribeJobRunResponse {
533
388
  Attempt?: number | undefined;
534
389
  CompletedOn?: Date | undefined;
@@ -553,19 +408,6 @@ export interface DescribeJobRunResponse {
553
408
  export interface DescribeProjectRequest {
554
409
  Name: string | undefined;
555
410
  }
556
- export declare const SessionStatus: {
557
- readonly ASSIGNED: "ASSIGNED";
558
- readonly FAILED: "FAILED";
559
- readonly INITIALIZING: "INITIALIZING";
560
- readonly PROVISIONING: "PROVISIONING";
561
- readonly READY: "READY";
562
- readonly RECYCLING: "RECYCLING";
563
- readonly ROTATING: "ROTATING";
564
- readonly TERMINATED: "TERMINATED";
565
- readonly TERMINATING: "TERMINATING";
566
- readonly UPDATING: "UPDATING";
567
- };
568
- export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
569
411
  export interface DescribeProjectResponse {
570
412
  CreateDate?: Date | undefined;
571
413
  CreatedBy?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-databrew",
3
3
  "description": "AWS SDK for JavaScript Databrew Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-databrew",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";