@aws-sdk/client-databrew 3.687.0 → 3.691.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-types/models/models_0.d.ts +374 -374
- package/dist-types/ts3.4/models/models_0.d.ts +382 -382
- package/package.json +7 -7
|
@@ -7,7 +7,7 @@ import { DataBrewServiceException as __BaseException } from "./DataBrewServiceEx
|
|
|
7
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
8
8
|
readonly name: "AccessDeniedException";
|
|
9
9
|
readonly $fault: "client";
|
|
10
|
-
Message?: string;
|
|
10
|
+
Message?: string | undefined;
|
|
11
11
|
/**
|
|
12
12
|
* @internal
|
|
13
13
|
*/
|
|
@@ -65,17 +65,17 @@ export interface RecipeVersionErrorDetail {
|
|
|
65
65
|
* <p>The HTTP status code for the error.</p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
|
-
ErrorCode?: string;
|
|
68
|
+
ErrorCode?: string | undefined;
|
|
69
69
|
/**
|
|
70
70
|
* <p>The text of the error message.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
ErrorMessage?: string;
|
|
73
|
+
ErrorMessage?: string | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* <p>The identifier for the recipe version associated with this error.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
RecipeVersion?: string;
|
|
78
|
+
RecipeVersion?: string | undefined;
|
|
79
79
|
}
|
|
80
80
|
/**
|
|
81
81
|
* @public
|
|
@@ -90,7 +90,7 @@ export interface BatchDeleteRecipeVersionResponse {
|
|
|
90
90
|
* <p>Errors, if any, that occurred while attempting to delete the recipe versions.</p>
|
|
91
91
|
* @public
|
|
92
92
|
*/
|
|
93
|
-
Errors?: RecipeVersionErrorDetail[];
|
|
93
|
+
Errors?: RecipeVersionErrorDetail[] | undefined;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
@@ -99,7 +99,7 @@ export interface BatchDeleteRecipeVersionResponse {
|
|
|
99
99
|
export declare class ConflictException extends __BaseException {
|
|
100
100
|
readonly name: "ConflictException";
|
|
101
101
|
readonly $fault: "client";
|
|
102
|
-
Message?: string;
|
|
102
|
+
Message?: string | undefined;
|
|
103
103
|
/**
|
|
104
104
|
* @internal
|
|
105
105
|
*/
|
|
@@ -112,7 +112,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
112
112
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
113
113
|
readonly name: "ResourceNotFoundException";
|
|
114
114
|
readonly $fault: "client";
|
|
115
|
-
Message?: string;
|
|
115
|
+
Message?: string | undefined;
|
|
116
116
|
/**
|
|
117
117
|
* @internal
|
|
118
118
|
*/
|
|
@@ -125,7 +125,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
125
125
|
export declare class ValidationException extends __BaseException {
|
|
126
126
|
readonly name: "ValidationException";
|
|
127
127
|
readonly $fault: "client";
|
|
128
|
-
Message?: string;
|
|
128
|
+
Message?: string | undefined;
|
|
129
129
|
/**
|
|
130
130
|
* @internal
|
|
131
131
|
*/
|
|
@@ -156,13 +156,13 @@ export interface CsvOptions {
|
|
|
156
156
|
* <p>A single character that specifies the delimiter being used in the CSV file.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
Delimiter?: string;
|
|
159
|
+
Delimiter?: string | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* <p>A variable that specifies whether the first row in the file is parsed as the
|
|
162
162
|
* header. If this value is false, column names are auto-generated.</p>
|
|
163
163
|
* @public
|
|
164
164
|
*/
|
|
165
|
-
HeaderRow?: boolean;
|
|
165
|
+
HeaderRow?: boolean | undefined;
|
|
166
166
|
}
|
|
167
167
|
/**
|
|
168
168
|
* <p>Represents a set of options that define how DataBrew will interpret a Microsoft Excel file when
|
|
@@ -174,19 +174,19 @@ export interface ExcelOptions {
|
|
|
174
174
|
* <p>One or more named sheets in the Excel file that will be included in the dataset.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
SheetNames?: string[];
|
|
177
|
+
SheetNames?: string[] | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>One or more sheet numbers in the Excel file that will be included in the
|
|
180
180
|
* dataset.</p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
SheetIndexes?: number[];
|
|
183
|
+
SheetIndexes?: number[] | undefined;
|
|
184
184
|
/**
|
|
185
185
|
* <p>A variable that specifies whether the first row in the file is parsed as the
|
|
186
186
|
* header. If this value is false, column names are auto-generated.</p>
|
|
187
187
|
* @public
|
|
188
188
|
*/
|
|
189
|
-
HeaderRow?: boolean;
|
|
189
|
+
HeaderRow?: boolean | undefined;
|
|
190
190
|
}
|
|
191
191
|
/**
|
|
192
192
|
* <p>Represents the JSON-specific options that define how input is to be interpreted by Glue DataBrew.</p>
|
|
@@ -198,7 +198,7 @@ export interface JsonOptions {
|
|
|
198
198
|
* characters.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
MultiLine?: boolean;
|
|
201
|
+
MultiLine?: boolean | undefined;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* <p>Represents a set of options that define the structure of either comma-separated value (CSV),
|
|
@@ -210,17 +210,17 @@ export interface FormatOptions {
|
|
|
210
210
|
* <p>Options that define how JSON input is to be interpreted by DataBrew.</p>
|
|
211
211
|
* @public
|
|
212
212
|
*/
|
|
213
|
-
Json?: JsonOptions;
|
|
213
|
+
Json?: JsonOptions | undefined;
|
|
214
214
|
/**
|
|
215
215
|
* <p>Options that define how Excel input is to be interpreted by DataBrew.</p>
|
|
216
216
|
* @public
|
|
217
217
|
*/
|
|
218
|
-
Excel?: ExcelOptions;
|
|
218
|
+
Excel?: ExcelOptions | undefined;
|
|
219
219
|
/**
|
|
220
220
|
* <p>Options that define how CSV input is to be interpreted by DataBrew.</p>
|
|
221
221
|
* @public
|
|
222
222
|
*/
|
|
223
|
-
Csv?: CsvOptions;
|
|
223
|
+
Csv?: CsvOptions | undefined;
|
|
224
224
|
}
|
|
225
225
|
/**
|
|
226
226
|
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
@@ -237,12 +237,12 @@ export interface S3Location {
|
|
|
237
237
|
* <p>The unique name of the object in the bucket.</p>
|
|
238
238
|
* @public
|
|
239
239
|
*/
|
|
240
|
-
Key?: string;
|
|
240
|
+
Key?: string | undefined;
|
|
241
241
|
/**
|
|
242
242
|
* <p>The Amazon Web Services account ID of the bucket owner.</p>
|
|
243
243
|
* @public
|
|
244
244
|
*/
|
|
245
|
-
BucketOwner?: string;
|
|
245
|
+
BucketOwner?: string | undefined;
|
|
246
246
|
}
|
|
247
247
|
/**
|
|
248
248
|
* <p>Connection information for dataset input files stored in a database.</p>
|
|
@@ -259,19 +259,19 @@ export interface DatabaseInputDefinition {
|
|
|
259
259
|
* <p>The table within the target database.</p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
DatabaseTableName?: string;
|
|
262
|
+
DatabaseTableName?: string | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
265
265
|
* input data, or write output from a job.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
TempDirectory?: S3Location;
|
|
268
|
+
TempDirectory?: S3Location | undefined;
|
|
269
269
|
/**
|
|
270
270
|
* <p>Custom SQL to run against the provided Glue connection. This SQL will be used as
|
|
271
271
|
* the input for DataBrew projects and jobs.</p>
|
|
272
272
|
* @public
|
|
273
273
|
*/
|
|
274
|
-
QueryString?: string;
|
|
274
|
+
QueryString?: string | undefined;
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* <p>Represents how metadata stored in the Glue Data Catalog is defined in a DataBrew
|
|
@@ -284,7 +284,7 @@ export interface DataCatalogInputDefinition {
|
|
|
284
284
|
* data.</p>
|
|
285
285
|
* @public
|
|
286
286
|
*/
|
|
287
|
-
CatalogId?: string;
|
|
287
|
+
CatalogId?: string | undefined;
|
|
288
288
|
/**
|
|
289
289
|
* <p>The name of a database in the Data Catalog.</p>
|
|
290
290
|
* @public
|
|
@@ -300,7 +300,7 @@ export interface DataCatalogInputDefinition {
|
|
|
300
300
|
* <p>Represents an Amazon location where DataBrew can store intermediate results.</p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
TempDirectory?: S3Location;
|
|
303
|
+
TempDirectory?: S3Location | undefined;
|
|
304
304
|
}
|
|
305
305
|
/**
|
|
306
306
|
* <p>Contains additional resource information needed for specific datasets.</p>
|
|
@@ -312,7 +312,7 @@ export interface Metadata {
|
|
|
312
312
|
* only supports ARNs from Amazon AppFlow.</p>
|
|
313
313
|
* @public
|
|
314
314
|
*/
|
|
315
|
-
SourceArn?: string;
|
|
315
|
+
SourceArn?: string | undefined;
|
|
316
316
|
}
|
|
317
317
|
/**
|
|
318
318
|
* <p>Represents information on how DataBrew can find data, in either the Glue Data Catalog or
|
|
@@ -324,22 +324,22 @@ export interface Input {
|
|
|
324
324
|
* <p>The Amazon S3 location where the data is stored.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
S3InputDefinition?: S3Location;
|
|
327
|
+
S3InputDefinition?: S3Location | undefined;
|
|
328
328
|
/**
|
|
329
329
|
* <p>The Glue Data Catalog parameters for the data.</p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
DataCatalogInputDefinition?: DataCatalogInputDefinition;
|
|
332
|
+
DataCatalogInputDefinition?: DataCatalogInputDefinition | undefined;
|
|
333
333
|
/**
|
|
334
334
|
* <p>Connection information for dataset input files stored in a database.</p>
|
|
335
335
|
* @public
|
|
336
336
|
*/
|
|
337
|
-
DatabaseInputDefinition?: DatabaseInputDefinition;
|
|
337
|
+
DatabaseInputDefinition?: DatabaseInputDefinition | undefined;
|
|
338
338
|
/**
|
|
339
339
|
* <p>Contains additional resource information needed for specific datasets.</p>
|
|
340
340
|
* @public
|
|
341
341
|
*/
|
|
342
|
-
Metadata?: Metadata;
|
|
342
|
+
Metadata?: Metadata | undefined;
|
|
343
343
|
}
|
|
344
344
|
/**
|
|
345
345
|
* @public
|
|
@@ -380,14 +380,14 @@ export interface FilesLimit {
|
|
|
380
380
|
* a sorting criteria. Currently it's the only allowed value.</p>
|
|
381
381
|
* @public
|
|
382
382
|
*/
|
|
383
|
-
OrderedBy?: OrderedBy;
|
|
383
|
+
OrderedBy?: OrderedBy | undefined;
|
|
384
384
|
/**
|
|
385
385
|
* <p>A criteria to use for Amazon S3 files sorting before their selection. By
|
|
386
386
|
* default uses DESCENDING order, i.e. most recent files are selected first. Another
|
|
387
387
|
* possible value is ASCENDING.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
Order?: Order;
|
|
390
|
+
Order?: Order | undefined;
|
|
391
391
|
}
|
|
392
392
|
/**
|
|
393
393
|
* <p>Represents a structure for defining parameter conditions. Supported conditions are described
|
|
@@ -429,12 +429,12 @@ export interface DatetimeOptions {
|
|
|
429
429
|
* If no offset specified, UTC is assumed.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
TimezoneOffset?: string;
|
|
432
|
+
TimezoneOffset?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>Optional value for a non-US locale code, needed for correct interpretation of some date formats.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
LocaleCode?: string;
|
|
437
|
+
LocaleCode?: string | undefined;
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
* @public
|
|
@@ -469,18 +469,18 @@ export interface DatasetParameter {
|
|
|
469
469
|
* <p>Additional parameter options such as a format and a timezone. Required for datetime parameters.</p>
|
|
470
470
|
* @public
|
|
471
471
|
*/
|
|
472
|
-
DatetimeOptions?: DatetimeOptions;
|
|
472
|
+
DatetimeOptions?: DatetimeOptions | undefined;
|
|
473
473
|
/**
|
|
474
474
|
* <p>Optional boolean value that defines whether the captured value of this parameter
|
|
475
475
|
* should be used to create a new column in a dataset.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
CreateColumn?: boolean;
|
|
478
|
+
CreateColumn?: boolean | undefined;
|
|
479
479
|
/**
|
|
480
480
|
* <p>The optional filter expression structure to apply additional matching criteria to the parameter.</p>
|
|
481
481
|
* @public
|
|
482
482
|
*/
|
|
483
|
-
Filter?: FilterExpression;
|
|
483
|
+
Filter?: FilterExpression | undefined;
|
|
484
484
|
}
|
|
485
485
|
/**
|
|
486
486
|
* <p>Represents a set of options that define how DataBrew selects files for a given Amazon S3
|
|
@@ -493,17 +493,17 @@ export interface PathOptions {
|
|
|
493
493
|
* LastModifiedDate attribute in Amazon S3.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
LastModifiedDateCondition?: FilterExpression;
|
|
496
|
+
LastModifiedDateCondition?: FilterExpression | undefined;
|
|
497
497
|
/**
|
|
498
498
|
* <p>If provided, this structure imposes a limit on a number of files that should be selected.</p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
FilesLimit?: FilesLimit;
|
|
501
|
+
FilesLimit?: FilesLimit | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>A structure that maps names of parameters used in the Amazon S3 path of a dataset to their definitions.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
Parameters?: Record<string, DatasetParameter
|
|
506
|
+
Parameters?: Record<string, DatasetParameter> | undefined;
|
|
507
507
|
}
|
|
508
508
|
/**
|
|
509
509
|
* @public
|
|
@@ -519,13 +519,13 @@ export interface CreateDatasetRequest {
|
|
|
519
519
|
* <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
Format?: InputFormat;
|
|
522
|
+
Format?: InputFormat | undefined;
|
|
523
523
|
/**
|
|
524
524
|
* <p>Represents a set of options that define the structure of either comma-separated value (CSV),
|
|
525
525
|
* Excel, or JSON input.</p>
|
|
526
526
|
* @public
|
|
527
527
|
*/
|
|
528
|
-
FormatOptions?: FormatOptions;
|
|
528
|
+
FormatOptions?: FormatOptions | undefined;
|
|
529
529
|
/**
|
|
530
530
|
* <p>Represents information on how DataBrew can find data, in either the Glue Data Catalog or
|
|
531
531
|
* Amazon S3.</p>
|
|
@@ -536,12 +536,12 @@ export interface CreateDatasetRequest {
|
|
|
536
536
|
* <p>A set of options that defines how DataBrew interprets an Amazon S3 path of the dataset.</p>
|
|
537
537
|
* @public
|
|
538
538
|
*/
|
|
539
|
-
PathOptions?: PathOptions;
|
|
539
|
+
PathOptions?: PathOptions | undefined;
|
|
540
540
|
/**
|
|
541
541
|
* <p>Metadata tags to apply to this dataset.</p>
|
|
542
542
|
* @public
|
|
543
543
|
*/
|
|
544
|
-
Tags?: Record<string, string
|
|
544
|
+
Tags?: Record<string, string> | undefined;
|
|
545
545
|
}
|
|
546
546
|
/**
|
|
547
547
|
* @public
|
|
@@ -560,7 +560,7 @@ export interface CreateDatasetResponse {
|
|
|
560
560
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
561
561
|
readonly name: "ServiceQuotaExceededException";
|
|
562
562
|
readonly $fault: "client";
|
|
563
|
-
Message?: string;
|
|
563
|
+
Message?: string | undefined;
|
|
564
564
|
/**
|
|
565
565
|
* @internal
|
|
566
566
|
*/
|
|
@@ -576,12 +576,12 @@ export interface ColumnSelector {
|
|
|
576
576
|
* <p>A regular expression for selecting a column from a dataset.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
Regex?: string;
|
|
579
|
+
Regex?: string | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>The name of a column from a dataset.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
Name?: string;
|
|
584
|
+
Name?: string | undefined;
|
|
585
585
|
}
|
|
586
586
|
/**
|
|
587
587
|
* <p>Override of a particular evaluation for a profile job. </p>
|
|
@@ -611,12 +611,12 @@ export interface StatisticsConfiguration {
|
|
|
611
611
|
* evaluations will be included.</p>
|
|
612
612
|
* @public
|
|
613
613
|
*/
|
|
614
|
-
IncludedStatistics?: string[];
|
|
614
|
+
IncludedStatistics?: string[] | undefined;
|
|
615
615
|
/**
|
|
616
616
|
* <p>List of overrides for evaluations.</p>
|
|
617
617
|
* @public
|
|
618
618
|
*/
|
|
619
|
-
Overrides?: StatisticOverride[];
|
|
619
|
+
Overrides?: StatisticOverride[] | undefined;
|
|
620
620
|
}
|
|
621
621
|
/**
|
|
622
622
|
* <p>Configuration for column evaluations for a profile job. ColumnStatisticsConfiguration can be used to select
|
|
@@ -631,7 +631,7 @@ export interface ColumnStatisticsConfiguration {
|
|
|
631
631
|
* </p>
|
|
632
632
|
* @public
|
|
633
633
|
*/
|
|
634
|
-
Selectors?: ColumnSelector[];
|
|
634
|
+
Selectors?: ColumnSelector[] | undefined;
|
|
635
635
|
/**
|
|
636
636
|
* <p>Configuration for evaluations. Statistics can be used to select evaluations and override
|
|
637
637
|
* parameters of evaluations.
|
|
@@ -718,7 +718,7 @@ export interface EntityDetectorConfiguration {
|
|
|
718
718
|
* on columns that contain detected entities.</p>
|
|
719
719
|
* @public
|
|
720
720
|
*/
|
|
721
|
-
AllowedStatistics?: AllowedStatistics[];
|
|
721
|
+
AllowedStatistics?: AllowedStatistics[] | undefined;
|
|
722
722
|
}
|
|
723
723
|
/**
|
|
724
724
|
* <p>Configuration for profile jobs. Configuration can be used to select columns, do evaluations, and override default
|
|
@@ -735,14 +735,14 @@ export interface ProfileConfiguration {
|
|
|
735
735
|
* </p>
|
|
736
736
|
* @public
|
|
737
737
|
*/
|
|
738
|
-
DatasetStatisticsConfiguration?: StatisticsConfiguration;
|
|
738
|
+
DatasetStatisticsConfiguration?: StatisticsConfiguration | undefined;
|
|
739
739
|
/**
|
|
740
740
|
* <p>List of column selectors. ProfileColumns can be used to select columns from the dataset. When
|
|
741
741
|
* ProfileColumns is undefined, the profile job will profile all supported columns.
|
|
742
742
|
* </p>
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
ProfileColumns?: ColumnSelector[];
|
|
745
|
+
ProfileColumns?: ColumnSelector[] | undefined;
|
|
746
746
|
/**
|
|
747
747
|
* <p>List of configurations for column evaluations. ColumnStatisticsConfigurations are used to
|
|
748
748
|
* select evaluations and override parameters of evaluations for particular columns. When
|
|
@@ -751,12 +751,12 @@ export interface ProfileConfiguration {
|
|
|
751
751
|
* </p>
|
|
752
752
|
* @public
|
|
753
753
|
*/
|
|
754
|
-
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[];
|
|
754
|
+
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[] | undefined;
|
|
755
755
|
/**
|
|
756
756
|
* <p>Configuration of entity detection for a profile job. When undefined, entity detection is disabled.</p>
|
|
757
757
|
* @public
|
|
758
758
|
*/
|
|
759
|
-
EntityDetectorConfiguration?: EntityDetectorConfiguration;
|
|
759
|
+
EntityDetectorConfiguration?: EntityDetectorConfiguration | undefined;
|
|
760
760
|
}
|
|
761
761
|
/**
|
|
762
762
|
* @public
|
|
@@ -804,7 +804,7 @@ export interface JobSample {
|
|
|
804
804
|
* </ul>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
Mode?: SampleMode;
|
|
807
|
+
Mode?: SampleMode | undefined;
|
|
808
808
|
/**
|
|
809
809
|
* <p>The <code>Size</code> parameter is only required when the mode is CUSTOM_ROWS. The
|
|
810
810
|
* profile job is run on the specified number of rows. The maximum value for size is
|
|
@@ -812,7 +812,7 @@ export interface JobSample {
|
|
|
812
812
|
* <p>Long.MAX_VALUE = 9223372036854775807</p>
|
|
813
813
|
* @public
|
|
814
814
|
*/
|
|
815
|
-
Size?: number;
|
|
815
|
+
Size?: number | undefined;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* @public
|
|
@@ -856,7 +856,7 @@ export interface ValidationConfiguration {
|
|
|
856
856
|
* defined in the selected ruleset.</p>
|
|
857
857
|
* @public
|
|
858
858
|
*/
|
|
859
|
-
ValidationMode?: ValidationMode;
|
|
859
|
+
ValidationMode?: ValidationMode | undefined;
|
|
860
860
|
}
|
|
861
861
|
/**
|
|
862
862
|
* @public
|
|
@@ -872,7 +872,7 @@ export interface CreateProfileJobRequest {
|
|
|
872
872
|
* job.</p>
|
|
873
873
|
* @public
|
|
874
874
|
*/
|
|
875
|
-
EncryptionKeyArn?: string;
|
|
875
|
+
EncryptionKeyArn?: string | undefined;
|
|
876
876
|
/**
|
|
877
877
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
878
878
|
* <ul>
|
|
@@ -888,7 +888,7 @@ export interface CreateProfileJobRequest {
|
|
|
888
888
|
* </ul>
|
|
889
889
|
* @public
|
|
890
890
|
*/
|
|
891
|
-
EncryptionMode?: EncryptionMode;
|
|
891
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
892
892
|
/**
|
|
893
893
|
* <p>The name of the job to be created. Valid characters are alphanumeric (A-Z, a-z, 0-9),
|
|
894
894
|
* hyphen (-), period (.), and space.</p>
|
|
@@ -900,17 +900,17 @@ export interface CreateProfileJobRequest {
|
|
|
900
900
|
* CloudWatch writes one log stream for each job run.</p>
|
|
901
901
|
* @public
|
|
902
902
|
*/
|
|
903
|
-
LogSubscription?: LogSubscription;
|
|
903
|
+
LogSubscription?: LogSubscription | undefined;
|
|
904
904
|
/**
|
|
905
905
|
* <p>The maximum number of nodes that DataBrew can use when the job processes data.</p>
|
|
906
906
|
* @public
|
|
907
907
|
*/
|
|
908
|
-
MaxCapacity?: number;
|
|
908
|
+
MaxCapacity?: number | undefined;
|
|
909
909
|
/**
|
|
910
910
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
MaxRetries?: number;
|
|
913
|
+
MaxRetries?: number | undefined;
|
|
914
914
|
/**
|
|
915
915
|
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
916
916
|
* input data, or write output from a job.</p>
|
|
@@ -923,12 +923,12 @@ export interface CreateProfileJobRequest {
|
|
|
923
923
|
* profile job will run with default settings.</p>
|
|
924
924
|
* @public
|
|
925
925
|
*/
|
|
926
|
-
Configuration?: ProfileConfiguration;
|
|
926
|
+
Configuration?: ProfileConfiguration | undefined;
|
|
927
927
|
/**
|
|
928
928
|
* <p>List of validation configurations that are applied to the profile job.</p>
|
|
929
929
|
* @public
|
|
930
930
|
*/
|
|
931
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
931
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
932
932
|
/**
|
|
933
933
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to
|
|
934
934
|
* be assumed when DataBrew runs the job.</p>
|
|
@@ -939,13 +939,13 @@ export interface CreateProfileJobRequest {
|
|
|
939
939
|
* <p>Metadata tags to apply to this job.</p>
|
|
940
940
|
* @public
|
|
941
941
|
*/
|
|
942
|
-
Tags?: Record<string, string
|
|
942
|
+
Tags?: Record<string, string> | undefined;
|
|
943
943
|
/**
|
|
944
944
|
* <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
|
|
945
945
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
946
946
|
* @public
|
|
947
947
|
*/
|
|
948
|
-
Timeout?: number;
|
|
948
|
+
Timeout?: number | undefined;
|
|
949
949
|
/**
|
|
950
950
|
* <p>Sample configuration for profile jobs only. Determines the number of rows on which the
|
|
951
951
|
* profile job will be executed. If a JobSample value is not provided, the default value
|
|
@@ -953,7 +953,7 @@ export interface CreateProfileJobRequest {
|
|
|
953
953
|
* size parameter.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
JobSample?: JobSample;
|
|
956
|
+
JobSample?: JobSample | undefined;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
* @public
|
|
@@ -988,7 +988,7 @@ export interface Sample {
|
|
|
988
988
|
* <p>The number of rows in the sample.</p>
|
|
989
989
|
* @public
|
|
990
990
|
*/
|
|
991
|
-
Size?: number;
|
|
991
|
+
Size?: number | undefined;
|
|
992
992
|
/**
|
|
993
993
|
* <p>The way in which DataBrew obtains rows from a dataset.</p>
|
|
994
994
|
* @public
|
|
@@ -1020,7 +1020,7 @@ export interface CreateProjectRequest {
|
|
|
1020
1020
|
* analysis.</p>
|
|
1021
1021
|
* @public
|
|
1022
1022
|
*/
|
|
1023
|
-
Sample?: Sample;
|
|
1023
|
+
Sample?: Sample | undefined;
|
|
1024
1024
|
/**
|
|
1025
1025
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to
|
|
1026
1026
|
* be assumed for this request.</p>
|
|
@@ -1031,7 +1031,7 @@ export interface CreateProjectRequest {
|
|
|
1031
1031
|
* <p>Metadata tags to apply to this project.</p>
|
|
1032
1032
|
* @public
|
|
1033
1033
|
*/
|
|
1034
|
-
Tags?: Record<string, string
|
|
1034
|
+
Tags?: Record<string, string> | undefined;
|
|
1035
1035
|
}
|
|
1036
1036
|
/**
|
|
1037
1037
|
* @public
|
|
@@ -1050,7 +1050,7 @@ export interface CreateProjectResponse {
|
|
|
1050
1050
|
export declare class InternalServerException extends __BaseException {
|
|
1051
1051
|
readonly name: "InternalServerException";
|
|
1052
1052
|
readonly $fault: "server";
|
|
1053
|
-
Message?: string;
|
|
1053
|
+
Message?: string | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* @internal
|
|
1056
1056
|
*/
|
|
@@ -1072,7 +1072,7 @@ export interface RecipeAction {
|
|
|
1072
1072
|
* <p>Contextual parameters for the transformation.</p>
|
|
1073
1073
|
* @public
|
|
1074
1074
|
*/
|
|
1075
|
-
Parameters?: Record<string, string
|
|
1075
|
+
Parameters?: Record<string, string> | undefined;
|
|
1076
1076
|
}
|
|
1077
1077
|
/**
|
|
1078
1078
|
* <p>Represents an individual condition that evaluates to true or false.</p>
|
|
@@ -1095,7 +1095,7 @@ export interface ConditionExpression {
|
|
|
1095
1095
|
* <p>A value that the condition must evaluate to for the condition to succeed.</p>
|
|
1096
1096
|
* @public
|
|
1097
1097
|
*/
|
|
1098
|
-
Value?: string;
|
|
1098
|
+
Value?: string | undefined;
|
|
1099
1099
|
/**
|
|
1100
1100
|
* <p>A column to apply this condition to.</p>
|
|
1101
1101
|
* @public
|
|
@@ -1120,7 +1120,7 @@ export interface RecipeStep {
|
|
|
1120
1120
|
* </note>
|
|
1121
1121
|
* @public
|
|
1122
1122
|
*/
|
|
1123
|
-
ConditionExpressions?: ConditionExpression[];
|
|
1123
|
+
ConditionExpressions?: ConditionExpression[] | undefined;
|
|
1124
1124
|
}
|
|
1125
1125
|
/**
|
|
1126
1126
|
* @public
|
|
@@ -1130,7 +1130,7 @@ export interface CreateRecipeRequest {
|
|
|
1130
1130
|
* <p>A description for the recipe.</p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
Description?: string;
|
|
1133
|
+
Description?: string | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>A unique name for the recipe. Valid characters are alphanumeric (A-Z, a-z, 0-9),
|
|
1136
1136
|
* hyphen (-), period (.), and space.</p>
|
|
@@ -1147,7 +1147,7 @@ export interface CreateRecipeRequest {
|
|
|
1147
1147
|
* <p>Metadata tags to apply to this recipe.</p>
|
|
1148
1148
|
* @public
|
|
1149
1149
|
*/
|
|
1150
|
-
Tags?: Record<string, string
|
|
1150
|
+
Tags?: Record<string, string> | undefined;
|
|
1151
1151
|
}
|
|
1152
1152
|
/**
|
|
1153
1153
|
* @public
|
|
@@ -1170,7 +1170,7 @@ export interface DatabaseTableOutputOptions {
|
|
|
1170
1170
|
* intermediate results.</p>
|
|
1171
1171
|
* @public
|
|
1172
1172
|
*/
|
|
1173
|
-
TempDirectory?: S3Location;
|
|
1173
|
+
TempDirectory?: S3Location | undefined;
|
|
1174
1174
|
/**
|
|
1175
1175
|
* <p>A prefix for the name of a table DataBrew will create in the database.</p>
|
|
1176
1176
|
* @public
|
|
@@ -1210,7 +1210,7 @@ export interface DatabaseOutput {
|
|
|
1210
1210
|
* <p>The output mode to write into the database. Currently supported option: NEW_TABLE.</p>
|
|
1211
1211
|
* @public
|
|
1212
1212
|
*/
|
|
1213
|
-
DatabaseOutputMode?: DatabaseOutputMode;
|
|
1213
|
+
DatabaseOutputMode?: DatabaseOutputMode | undefined;
|
|
1214
1214
|
}
|
|
1215
1215
|
/**
|
|
1216
1216
|
* <p>Represents options that specify how and where DataBrew writes the Amazon S3 output
|
|
@@ -1236,7 +1236,7 @@ export interface DataCatalogOutput {
|
|
|
1236
1236
|
* stores the data.</p>
|
|
1237
1237
|
* @public
|
|
1238
1238
|
*/
|
|
1239
|
-
CatalogId?: string;
|
|
1239
|
+
CatalogId?: string | undefined;
|
|
1240
1240
|
/**
|
|
1241
1241
|
* <p>The name of a database in the Data Catalog.</p>
|
|
1242
1242
|
* @public
|
|
@@ -1252,19 +1252,19 @@ export interface DataCatalogOutput {
|
|
|
1252
1252
|
* output generated by recipe jobs.</p>
|
|
1253
1253
|
* @public
|
|
1254
1254
|
*/
|
|
1255
|
-
S3Options?: S3TableOutputOptions;
|
|
1255
|
+
S3Options?: S3TableOutputOptions | undefined;
|
|
1256
1256
|
/**
|
|
1257
1257
|
* <p>Represents options that specify how and where DataBrew writes the database output
|
|
1258
1258
|
* generated by recipe jobs.</p>
|
|
1259
1259
|
* @public
|
|
1260
1260
|
*/
|
|
1261
|
-
DatabaseOptions?: DatabaseTableOutputOptions;
|
|
1261
|
+
DatabaseOptions?: DatabaseTableOutputOptions | undefined;
|
|
1262
1262
|
/**
|
|
1263
1263
|
* <p>A value that, if true, means that any data in the location specified for output
|
|
1264
1264
|
* is overwritten with new output. Not supported with DatabaseOptions.</p>
|
|
1265
1265
|
* @public
|
|
1266
1266
|
*/
|
|
1267
|
-
Overwrite?: boolean;
|
|
1267
|
+
Overwrite?: boolean | undefined;
|
|
1268
1268
|
}
|
|
1269
1269
|
/**
|
|
1270
1270
|
* @public
|
|
@@ -1313,7 +1313,7 @@ export interface CsvOutputOptions {
|
|
|
1313
1313
|
* <p>A single character that specifies the delimiter used to create CSV job output.</p>
|
|
1314
1314
|
* @public
|
|
1315
1315
|
*/
|
|
1316
|
-
Delimiter?: string;
|
|
1316
|
+
Delimiter?: string | undefined;
|
|
1317
1317
|
}
|
|
1318
1318
|
/**
|
|
1319
1319
|
* <p>Represents a set of options that define the structure of comma-separated (CSV) job output.</p>
|
|
@@ -1325,7 +1325,7 @@ export interface OutputFormatOptions {
|
|
|
1325
1325
|
* job output.</p>
|
|
1326
1326
|
* @public
|
|
1327
1327
|
*/
|
|
1328
|
-
Csv?: CsvOutputOptions;
|
|
1328
|
+
Csv?: CsvOutputOptions | undefined;
|
|
1329
1329
|
}
|
|
1330
1330
|
/**
|
|
1331
1331
|
* <p>Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by
|
|
@@ -1337,17 +1337,17 @@ export interface Output {
|
|
|
1337
1337
|
* <p>The compression algorithm used to compress the output text of the job.</p>
|
|
1338
1338
|
* @public
|
|
1339
1339
|
*/
|
|
1340
|
-
CompressionFormat?: CompressionFormat;
|
|
1340
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
1341
1341
|
/**
|
|
1342
1342
|
* <p>The data format of the output of the job.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
Format?: OutputFormat;
|
|
1345
|
+
Format?: OutputFormat | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>The names of one or more partition columns for the output of the job.</p>
|
|
1348
1348
|
* @public
|
|
1349
1349
|
*/
|
|
1350
|
-
PartitionColumns?: string[];
|
|
1350
|
+
PartitionColumns?: string[] | undefined;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* <p>The location in Amazon S3 where the job writes its output.</p>
|
|
1353
1353
|
* @public
|
|
@@ -1358,18 +1358,18 @@ export interface Output {
|
|
|
1358
1358
|
* overwritten with new output.</p>
|
|
1359
1359
|
* @public
|
|
1360
1360
|
*/
|
|
1361
|
-
Overwrite?: boolean;
|
|
1361
|
+
Overwrite?: boolean | undefined;
|
|
1362
1362
|
/**
|
|
1363
1363
|
* <p>Represents options that define how DataBrew formats job output files.</p>
|
|
1364
1364
|
* @public
|
|
1365
1365
|
*/
|
|
1366
|
-
FormatOptions?: OutputFormatOptions;
|
|
1366
|
+
FormatOptions?: OutputFormatOptions | undefined;
|
|
1367
1367
|
/**
|
|
1368
1368
|
* <p>Maximum number of files to be generated by the job and written to the output folder. For output partitioned
|
|
1369
1369
|
* by column(s), the MaxOutputFiles value is the maximum number of files per partition.</p>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
MaxOutputFiles?: number;
|
|
1372
|
+
MaxOutputFiles?: number | undefined;
|
|
1373
1373
|
}
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p>Represents the name and version of a DataBrew recipe.</p>
|
|
@@ -1385,7 +1385,7 @@ export interface RecipeReference {
|
|
|
1385
1385
|
* <p>The identifier for the version for the recipe. </p>
|
|
1386
1386
|
* @public
|
|
1387
1387
|
*/
|
|
1388
|
-
RecipeVersion?: string;
|
|
1388
|
+
RecipeVersion?: string | undefined;
|
|
1389
1389
|
}
|
|
1390
1390
|
/**
|
|
1391
1391
|
* @public
|
|
@@ -1395,13 +1395,13 @@ export interface CreateRecipeJobRequest {
|
|
|
1395
1395
|
* <p>The name of the dataset that this job processes.</p>
|
|
1396
1396
|
* @public
|
|
1397
1397
|
*/
|
|
1398
|
-
DatasetName?: string;
|
|
1398
|
+
DatasetName?: string | undefined;
|
|
1399
1399
|
/**
|
|
1400
1400
|
* <p>The Amazon Resource Name (ARN) of an encryption key that is used to protect the
|
|
1401
1401
|
* job.</p>
|
|
1402
1402
|
* @public
|
|
1403
1403
|
*/
|
|
1404
|
-
EncryptionKeyArn?: string;
|
|
1404
|
+
EncryptionKeyArn?: string | undefined;
|
|
1405
1405
|
/**
|
|
1406
1406
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
1407
1407
|
* <ul>
|
|
@@ -1416,7 +1416,7 @@ export interface CreateRecipeJobRequest {
|
|
|
1416
1416
|
* </ul>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
EncryptionMode?: EncryptionMode;
|
|
1419
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>A unique name for the job. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen
|
|
1422
1422
|
* (-), period (.), and space.</p>
|
|
@@ -1428,45 +1428,45 @@ export interface CreateRecipeJobRequest {
|
|
|
1428
1428
|
* CloudWatch writes one log stream for each job run.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
LogSubscription?: LogSubscription;
|
|
1431
|
+
LogSubscription?: LogSubscription | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>The maximum number of nodes that DataBrew can consume when the job processes
|
|
1434
1434
|
* data.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
MaxCapacity?: number;
|
|
1437
|
+
MaxCapacity?: number | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
1440
1440
|
* @public
|
|
1441
1441
|
*/
|
|
1442
|
-
MaxRetries?: number;
|
|
1442
|
+
MaxRetries?: number | undefined;
|
|
1443
1443
|
/**
|
|
1444
1444
|
* <p>One or more artifacts that represent the output from running the job.</p>
|
|
1445
1445
|
* @public
|
|
1446
1446
|
*/
|
|
1447
|
-
Outputs?: Output[];
|
|
1447
|
+
Outputs?: Output[] | undefined;
|
|
1448
1448
|
/**
|
|
1449
1449
|
* <p>One or more artifacts that represent the Glue Data Catalog output from running the job.</p>
|
|
1450
1450
|
* @public
|
|
1451
1451
|
*/
|
|
1452
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
1452
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
1453
1453
|
/**
|
|
1454
1454
|
* <p>Represents a list of JDBC database output objects which defines the output destination for
|
|
1455
1455
|
* a DataBrew recipe job to write to. </p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
1458
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>Either the name of an existing project, or a combination of a recipe and a dataset to
|
|
1461
1461
|
* associate with the recipe.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
ProjectName?: string;
|
|
1464
|
+
ProjectName?: string | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>Represents the name and version of a DataBrew recipe.</p>
|
|
1467
1467
|
* @public
|
|
1468
1468
|
*/
|
|
1469
|
-
RecipeReference?: RecipeReference;
|
|
1469
|
+
RecipeReference?: RecipeReference | undefined;
|
|
1470
1470
|
/**
|
|
1471
1471
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to
|
|
1472
1472
|
* be assumed when DataBrew runs the job.</p>
|
|
@@ -1477,13 +1477,13 @@ export interface CreateRecipeJobRequest {
|
|
|
1477
1477
|
* <p>Metadata tags to apply to this job.</p>
|
|
1478
1478
|
* @public
|
|
1479
1479
|
*/
|
|
1480
|
-
Tags?: Record<string, string
|
|
1480
|
+
Tags?: Record<string, string> | undefined;
|
|
1481
1481
|
/**
|
|
1482
1482
|
* <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
|
|
1483
1483
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
1484
1484
|
* @public
|
|
1485
1485
|
*/
|
|
1486
|
-
Timeout?: number;
|
|
1486
|
+
Timeout?: number | undefined;
|
|
1487
1487
|
}
|
|
1488
1488
|
/**
|
|
1489
1489
|
* @public
|
|
@@ -1538,13 +1538,13 @@ export interface Threshold {
|
|
|
1538
1538
|
* rule to the threshold value.</p>
|
|
1539
1539
|
* @public
|
|
1540
1540
|
*/
|
|
1541
|
-
Type?: ThresholdType;
|
|
1541
|
+
Type?: ThresholdType | undefined;
|
|
1542
1542
|
/**
|
|
1543
1543
|
* <p>Unit of threshold value. Can be either a COUNT or PERCENTAGE of the full sample size
|
|
1544
1544
|
* used for validation.</p>
|
|
1545
1545
|
* @public
|
|
1546
1546
|
*/
|
|
1547
|
-
Unit?: ThresholdUnit;
|
|
1547
|
+
Unit?: ThresholdUnit | undefined;
|
|
1548
1548
|
}
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>Represents a single data quality requirement that should be validated in the
|
|
@@ -1563,7 +1563,7 @@ export interface Rule {
|
|
|
1563
1563
|
* value is false.</p>
|
|
1564
1564
|
* @public
|
|
1565
1565
|
*/
|
|
1566
|
-
Disabled?: boolean;
|
|
1566
|
+
Disabled?: boolean | undefined;
|
|
1567
1567
|
/**
|
|
1568
1568
|
* <p>The expression which includes column references, condition names followed by variable
|
|
1569
1569
|
* references, possibly grouped and combined with other conditions. For example,
|
|
@@ -1588,20 +1588,20 @@ export interface Rule {
|
|
|
1588
1588
|
* </p>
|
|
1589
1589
|
* @public
|
|
1590
1590
|
*/
|
|
1591
|
-
SubstitutionMap?: Record<string, string
|
|
1591
|
+
SubstitutionMap?: Record<string, string> | undefined;
|
|
1592
1592
|
/**
|
|
1593
1593
|
* <p>The threshold used with a non-aggregate check expression. Non-aggregate check expressions
|
|
1594
1594
|
* will be applied to each row in a specific column, and the threshold will be used to determine
|
|
1595
1595
|
* whether the validation succeeds.</p>
|
|
1596
1596
|
* @public
|
|
1597
1597
|
*/
|
|
1598
|
-
Threshold?: Threshold;
|
|
1598
|
+
Threshold?: Threshold | undefined;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* <p>List of column selectors. Selectors can be used to select columns using a name or regular
|
|
1601
1601
|
* expression from the dataset. Rule will be applied to selected columns.</p>
|
|
1602
1602
|
* @public
|
|
1603
1603
|
*/
|
|
1604
|
-
ColumnSelectors?: ColumnSelector[];
|
|
1604
|
+
ColumnSelectors?: ColumnSelector[] | undefined;
|
|
1605
1605
|
}
|
|
1606
1606
|
/**
|
|
1607
1607
|
* @public
|
|
@@ -1617,7 +1617,7 @@ export interface CreateRulesetRequest {
|
|
|
1617
1617
|
* <p>The description of the ruleset.</p>
|
|
1618
1618
|
* @public
|
|
1619
1619
|
*/
|
|
1620
|
-
Description?: string;
|
|
1620
|
+
Description?: string | undefined;
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>The Amazon Resource Name (ARN) of a resource (dataset) that the
|
|
1623
1623
|
* ruleset is associated with.</p>
|
|
@@ -1634,7 +1634,7 @@ export interface CreateRulesetRequest {
|
|
|
1634
1634
|
* <p>Metadata tags to apply to the ruleset.</p>
|
|
1635
1635
|
* @public
|
|
1636
1636
|
*/
|
|
1637
|
-
Tags?: Record<string, string
|
|
1637
|
+
Tags?: Record<string, string> | undefined;
|
|
1638
1638
|
}
|
|
1639
1639
|
/**
|
|
1640
1640
|
* @public
|
|
@@ -1654,7 +1654,7 @@ export interface CreateScheduleRequest {
|
|
|
1654
1654
|
* <p>The name or names of one or more jobs to be run.</p>
|
|
1655
1655
|
* @public
|
|
1656
1656
|
*/
|
|
1657
|
-
JobNames?: string[];
|
|
1657
|
+
JobNames?: string[] | undefined;
|
|
1658
1658
|
/**
|
|
1659
1659
|
* <p>The date or dates and time or times when the jobs are to be run. For more information,
|
|
1660
1660
|
* see <a href="https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html">Cron
|
|
@@ -1667,7 +1667,7 @@ export interface CreateScheduleRequest {
|
|
|
1667
1667
|
* <p>Metadata tags to apply to this schedule.</p>
|
|
1668
1668
|
* @public
|
|
1669
1669
|
*/
|
|
1670
|
-
Tags?: Record<string, string
|
|
1670
|
+
Tags?: Record<string, string> | undefined;
|
|
1671
1671
|
/**
|
|
1672
1672
|
* <p>A unique name for the schedule. Valid characters are alphanumeric (A-Z, a-z, 0-9),
|
|
1673
1673
|
* hyphen (-), period (.), and space.</p>
|
|
@@ -1848,12 +1848,12 @@ export interface DescribeDatasetResponse {
|
|
|
1848
1848
|
* <p>The identifier (user name) of the user who created the dataset.</p>
|
|
1849
1849
|
* @public
|
|
1850
1850
|
*/
|
|
1851
|
-
CreatedBy?: string;
|
|
1851
|
+
CreatedBy?: string | undefined;
|
|
1852
1852
|
/**
|
|
1853
1853
|
* <p>The date and time that the dataset was created.</p>
|
|
1854
1854
|
* @public
|
|
1855
1855
|
*/
|
|
1856
|
-
CreateDate?: Date;
|
|
1856
|
+
CreateDate?: Date | undefined;
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>The name of the dataset.</p>
|
|
1859
1859
|
* @public
|
|
@@ -1864,13 +1864,13 @@ export interface DescribeDatasetResponse {
|
|
|
1864
1864
|
* or folder.</p>
|
|
1865
1865
|
* @public
|
|
1866
1866
|
*/
|
|
1867
|
-
Format?: InputFormat;
|
|
1867
|
+
Format?: InputFormat | undefined;
|
|
1868
1868
|
/**
|
|
1869
1869
|
* <p>Represents a set of options that define the structure of either comma-separated value (CSV),
|
|
1870
1870
|
* Excel, or JSON input.</p>
|
|
1871
1871
|
* @public
|
|
1872
1872
|
*/
|
|
1873
|
-
FormatOptions?: FormatOptions;
|
|
1873
|
+
FormatOptions?: FormatOptions | undefined;
|
|
1874
1874
|
/**
|
|
1875
1875
|
* <p>Represents information on how DataBrew can find data, in either the Glue Data Catalog or
|
|
1876
1876
|
* Amazon S3.</p>
|
|
@@ -1881,34 +1881,34 @@ export interface DescribeDatasetResponse {
|
|
|
1881
1881
|
* <p>The date and time that the dataset was last modified.</p>
|
|
1882
1882
|
* @public
|
|
1883
1883
|
*/
|
|
1884
|
-
LastModifiedDate?: Date;
|
|
1884
|
+
LastModifiedDate?: Date | undefined;
|
|
1885
1885
|
/**
|
|
1886
1886
|
* <p>The identifier (user name) of the user who last modified the dataset.</p>
|
|
1887
1887
|
* @public
|
|
1888
1888
|
*/
|
|
1889
|
-
LastModifiedBy?: string;
|
|
1889
|
+
LastModifiedBy?: string | undefined;
|
|
1890
1890
|
/**
|
|
1891
1891
|
* <p>The location of the data for this dataset, Amazon S3 or the
|
|
1892
1892
|
* Glue Data Catalog.</p>
|
|
1893
1893
|
* @public
|
|
1894
1894
|
*/
|
|
1895
|
-
Source?: Source;
|
|
1895
|
+
Source?: Source | undefined;
|
|
1896
1896
|
/**
|
|
1897
1897
|
* <p>A set of options that defines how DataBrew interprets an Amazon S3
|
|
1898
1898
|
* path of the dataset.</p>
|
|
1899
1899
|
* @public
|
|
1900
1900
|
*/
|
|
1901
|
-
PathOptions?: PathOptions;
|
|
1901
|
+
PathOptions?: PathOptions | undefined;
|
|
1902
1902
|
/**
|
|
1903
1903
|
* <p>Metadata tags associated with this dataset.</p>
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
Tags?: Record<string, string
|
|
1906
|
+
Tags?: Record<string, string> | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>The Amazon Resource Name (ARN) of the dataset.</p>
|
|
1909
1909
|
* @public
|
|
1910
1910
|
*/
|
|
1911
|
-
ResourceArn?: string;
|
|
1911
|
+
ResourceArn?: string | undefined;
|
|
1912
1912
|
}
|
|
1913
1913
|
/**
|
|
1914
1914
|
* @public
|
|
@@ -1940,23 +1940,23 @@ export interface DescribeJobResponse {
|
|
|
1940
1940
|
* <p>The date and time that the job was created.</p>
|
|
1941
1941
|
* @public
|
|
1942
1942
|
*/
|
|
1943
|
-
CreateDate?: Date;
|
|
1943
|
+
CreateDate?: Date | undefined;
|
|
1944
1944
|
/**
|
|
1945
1945
|
* <p>The identifier (user name) of the user associated with the creation of the job.</p>
|
|
1946
1946
|
* @public
|
|
1947
1947
|
*/
|
|
1948
|
-
CreatedBy?: string;
|
|
1948
|
+
CreatedBy?: string | undefined;
|
|
1949
1949
|
/**
|
|
1950
1950
|
* <p>The dataset that the job acts upon.</p>
|
|
1951
1951
|
* @public
|
|
1952
1952
|
*/
|
|
1953
|
-
DatasetName?: string;
|
|
1953
|
+
DatasetName?: string | undefined;
|
|
1954
1954
|
/**
|
|
1955
1955
|
* <p>The Amazon Resource Name (ARN) of an encryption key that is used to protect the
|
|
1956
1956
|
* job.</p>
|
|
1957
1957
|
* @public
|
|
1958
1958
|
*/
|
|
1959
|
-
EncryptionKeyArn?: string;
|
|
1959
|
+
EncryptionKeyArn?: string | undefined;
|
|
1960
1960
|
/**
|
|
1961
1961
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
1962
1962
|
* <ul>
|
|
@@ -1972,7 +1972,7 @@ export interface DescribeJobResponse {
|
|
|
1972
1972
|
* </ul>
|
|
1973
1973
|
* @public
|
|
1974
1974
|
*/
|
|
1975
|
-
EncryptionMode?: EncryptionMode;
|
|
1975
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
1976
1976
|
/**
|
|
1977
1977
|
* <p>The name of the job.</p>
|
|
1978
1978
|
* @public
|
|
@@ -1994,99 +1994,99 @@ export interface DescribeJobResponse {
|
|
|
1994
1994
|
* </ul>
|
|
1995
1995
|
* @public
|
|
1996
1996
|
*/
|
|
1997
|
-
Type?: JobType;
|
|
1997
|
+
Type?: JobType | undefined;
|
|
1998
1998
|
/**
|
|
1999
1999
|
* <p>The identifier (user name) of the user who last modified the job.</p>
|
|
2000
2000
|
* @public
|
|
2001
2001
|
*/
|
|
2002
|
-
LastModifiedBy?: string;
|
|
2002
|
+
LastModifiedBy?: string | undefined;
|
|
2003
2003
|
/**
|
|
2004
2004
|
* <p>The date and time that the job was last modified.</p>
|
|
2005
2005
|
* @public
|
|
2006
2006
|
*/
|
|
2007
|
-
LastModifiedDate?: Date;
|
|
2007
|
+
LastModifiedDate?: Date | undefined;
|
|
2008
2008
|
/**
|
|
2009
2009
|
* <p>Indicates whether Amazon CloudWatch logging is enabled for this job.</p>
|
|
2010
2010
|
* @public
|
|
2011
2011
|
*/
|
|
2012
|
-
LogSubscription?: LogSubscription;
|
|
2012
|
+
LogSubscription?: LogSubscription | undefined;
|
|
2013
2013
|
/**
|
|
2014
2014
|
* <p>The maximum number of compute nodes that DataBrew can consume when the job processes
|
|
2015
2015
|
* data.</p>
|
|
2016
2016
|
* @public
|
|
2017
2017
|
*/
|
|
2018
|
-
MaxCapacity?: number;
|
|
2018
|
+
MaxCapacity?: number | undefined;
|
|
2019
2019
|
/**
|
|
2020
2020
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
MaxRetries?: number;
|
|
2023
|
+
MaxRetries?: number | undefined;
|
|
2024
2024
|
/**
|
|
2025
2025
|
* <p>One or more artifacts that represent the output from running the job.</p>
|
|
2026
2026
|
* @public
|
|
2027
2027
|
*/
|
|
2028
|
-
Outputs?: Output[];
|
|
2028
|
+
Outputs?: Output[] | undefined;
|
|
2029
2029
|
/**
|
|
2030
2030
|
* <p>One or more artifacts that represent the Glue Data Catalog output from running the job.</p>
|
|
2031
2031
|
* @public
|
|
2032
2032
|
*/
|
|
2033
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
2033
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
2034
2034
|
/**
|
|
2035
2035
|
* <p>Represents a list of JDBC database output objects which defines the output
|
|
2036
2036
|
* destination for a DataBrew recipe job to write into.</p>
|
|
2037
2037
|
* @public
|
|
2038
2038
|
*/
|
|
2039
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
2039
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
2040
2040
|
/**
|
|
2041
2041
|
* <p>The DataBrew project associated with this job.</p>
|
|
2042
2042
|
* @public
|
|
2043
2043
|
*/
|
|
2044
|
-
ProjectName?: string;
|
|
2044
|
+
ProjectName?: string | undefined;
|
|
2045
2045
|
/**
|
|
2046
2046
|
* <p>Configuration for profile jobs. Used to select columns, do evaluations,
|
|
2047
2047
|
* and override default parameters of evaluations. When configuration is null, the
|
|
2048
2048
|
* profile job will run with default settings.</p>
|
|
2049
2049
|
* @public
|
|
2050
2050
|
*/
|
|
2051
|
-
ProfileConfiguration?: ProfileConfiguration;
|
|
2051
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
2052
2052
|
/**
|
|
2053
2053
|
* <p>List of validation configurations that are applied to the profile job.</p>
|
|
2054
2054
|
* @public
|
|
2055
2055
|
*/
|
|
2056
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
2056
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
2057
2057
|
/**
|
|
2058
2058
|
* <p>Represents the name and version of a DataBrew recipe.</p>
|
|
2059
2059
|
* @public
|
|
2060
2060
|
*/
|
|
2061
|
-
RecipeReference?: RecipeReference;
|
|
2061
|
+
RecipeReference?: RecipeReference | undefined;
|
|
2062
2062
|
/**
|
|
2063
2063
|
* <p>The Amazon Resource Name (ARN) of the job.</p>
|
|
2064
2064
|
* @public
|
|
2065
2065
|
*/
|
|
2066
|
-
ResourceArn?: string;
|
|
2066
|
+
ResourceArn?: string | undefined;
|
|
2067
2067
|
/**
|
|
2068
2068
|
* <p>The ARN of the Identity and Access Management (IAM) role to be assumed when
|
|
2069
2069
|
* DataBrew runs the job.</p>
|
|
2070
2070
|
* @public
|
|
2071
2071
|
*/
|
|
2072
|
-
RoleArn?: string;
|
|
2072
|
+
RoleArn?: string | undefined;
|
|
2073
2073
|
/**
|
|
2074
2074
|
* <p>Metadata tags associated with this job.</p>
|
|
2075
2075
|
* @public
|
|
2076
2076
|
*/
|
|
2077
|
-
Tags?: Record<string, string
|
|
2077
|
+
Tags?: Record<string, string> | undefined;
|
|
2078
2078
|
/**
|
|
2079
2079
|
* <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
|
|
2080
2080
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
2081
2081
|
* @public
|
|
2082
2082
|
*/
|
|
2083
|
-
Timeout?: number;
|
|
2083
|
+
Timeout?: number | undefined;
|
|
2084
2084
|
/**
|
|
2085
2085
|
* <p>Sample configuration for profile jobs only. Determines the number of rows on which the
|
|
2086
2086
|
* profile job will be executed.</p>
|
|
2087
2087
|
* @public
|
|
2088
2088
|
*/
|
|
2089
|
-
JobSample?: JobSample;
|
|
2089
|
+
JobSample?: JobSample | undefined;
|
|
2090
2090
|
}
|
|
2091
2091
|
/**
|
|
2092
2092
|
* @public
|
|
@@ -2128,27 +2128,27 @@ export interface DescribeJobRunResponse {
|
|
|
2128
2128
|
* <p>The number of times that DataBrew has attempted to run the job.</p>
|
|
2129
2129
|
* @public
|
|
2130
2130
|
*/
|
|
2131
|
-
Attempt?: number;
|
|
2131
|
+
Attempt?: number | undefined;
|
|
2132
2132
|
/**
|
|
2133
2133
|
* <p>The date and time when the job completed processing.</p>
|
|
2134
2134
|
* @public
|
|
2135
2135
|
*/
|
|
2136
|
-
CompletedOn?: Date;
|
|
2136
|
+
CompletedOn?: Date | undefined;
|
|
2137
2137
|
/**
|
|
2138
2138
|
* <p>The name of the dataset for the job to process.</p>
|
|
2139
2139
|
* @public
|
|
2140
2140
|
*/
|
|
2141
|
-
DatasetName?: string;
|
|
2141
|
+
DatasetName?: string | undefined;
|
|
2142
2142
|
/**
|
|
2143
2143
|
* <p>A message indicating an error (if any) that was encountered when the job ran.</p>
|
|
2144
2144
|
* @public
|
|
2145
2145
|
*/
|
|
2146
|
-
ErrorMessage?: string;
|
|
2146
|
+
ErrorMessage?: string | undefined;
|
|
2147
2147
|
/**
|
|
2148
2148
|
* <p>The amount of time, in seconds, during which the job run consumed resources.</p>
|
|
2149
2149
|
* @public
|
|
2150
2150
|
*/
|
|
2151
|
-
ExecutionTime?: number;
|
|
2151
|
+
ExecutionTime?: number | undefined;
|
|
2152
2152
|
/**
|
|
2153
2153
|
* <p>The name of the job being processed during this run.</p>
|
|
2154
2154
|
* @public
|
|
@@ -2160,64 +2160,64 @@ export interface DescribeJobRunResponse {
|
|
|
2160
2160
|
* profile job will run with default settings.</p>
|
|
2161
2161
|
* @public
|
|
2162
2162
|
*/
|
|
2163
|
-
ProfileConfiguration?: ProfileConfiguration;
|
|
2163
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
2164
2164
|
/**
|
|
2165
2165
|
* <p>List of validation configurations that are applied to the profile job.</p>
|
|
2166
2166
|
* @public
|
|
2167
2167
|
*/
|
|
2168
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
2168
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
2169
2169
|
/**
|
|
2170
2170
|
* <p>The unique identifier of the job run.</p>
|
|
2171
2171
|
* @public
|
|
2172
2172
|
*/
|
|
2173
|
-
RunId?: string;
|
|
2173
|
+
RunId?: string | undefined;
|
|
2174
2174
|
/**
|
|
2175
2175
|
* <p>The current state of the job run entity itself.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
State?: JobRunState;
|
|
2178
|
+
State?: JobRunState | undefined;
|
|
2179
2179
|
/**
|
|
2180
2180
|
* <p>The current status of Amazon CloudWatch logging for the job run.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
LogSubscription?: LogSubscription;
|
|
2183
|
+
LogSubscription?: LogSubscription | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>The name of an Amazon CloudWatch log group, where the job writes diagnostic messages
|
|
2186
2186
|
* when it runs.</p>
|
|
2187
2187
|
* @public
|
|
2188
2188
|
*/
|
|
2189
|
-
LogGroupName?: string;
|
|
2189
|
+
LogGroupName?: string | undefined;
|
|
2190
2190
|
/**
|
|
2191
2191
|
* <p>One or more output artifacts from a job run.</p>
|
|
2192
2192
|
* @public
|
|
2193
2193
|
*/
|
|
2194
|
-
Outputs?: Output[];
|
|
2194
|
+
Outputs?: Output[] | undefined;
|
|
2195
2195
|
/**
|
|
2196
2196
|
* <p>One or more artifacts that represent the Glue Data Catalog output from running the job.</p>
|
|
2197
2197
|
* @public
|
|
2198
2198
|
*/
|
|
2199
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
2199
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
2200
2200
|
/**
|
|
2201
2201
|
* <p>Represents a list of JDBC database output objects which defines the output
|
|
2202
2202
|
* destination for a DataBrew recipe job to write into.</p>
|
|
2203
2203
|
* @public
|
|
2204
2204
|
*/
|
|
2205
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
2205
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
2206
2206
|
/**
|
|
2207
2207
|
* <p>Represents the name and version of a DataBrew recipe.</p>
|
|
2208
2208
|
* @public
|
|
2209
2209
|
*/
|
|
2210
|
-
RecipeReference?: RecipeReference;
|
|
2210
|
+
RecipeReference?: RecipeReference | undefined;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* <p>The Amazon Resource Name (ARN) of the user who started the job run.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
StartedBy?: string;
|
|
2215
|
+
StartedBy?: string | undefined;
|
|
2216
2216
|
/**
|
|
2217
2217
|
* <p>The date and time when the job run began.</p>
|
|
2218
2218
|
* @public
|
|
2219
2219
|
*/
|
|
2220
|
-
StartedOn?: Date;
|
|
2220
|
+
StartedOn?: Date | undefined;
|
|
2221
2221
|
/**
|
|
2222
2222
|
* <p>Sample configuration for profile jobs only. Determines the number of rows on which the
|
|
2223
2223
|
* profile job will be executed. If a JobSample value is not provided, the default value
|
|
@@ -2225,7 +2225,7 @@ export interface DescribeJobRunResponse {
|
|
|
2225
2225
|
* size parameter.</p>
|
|
2226
2226
|
* @public
|
|
2227
2227
|
*/
|
|
2228
|
-
JobSample?: JobSample;
|
|
2228
|
+
JobSample?: JobSample | undefined;
|
|
2229
2229
|
}
|
|
2230
2230
|
/**
|
|
2231
2231
|
* @public
|
|
@@ -2265,27 +2265,27 @@ export interface DescribeProjectResponse {
|
|
|
2265
2265
|
* <p>The date and time that the project was created.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
CreateDate?: Date;
|
|
2268
|
+
CreateDate?: Date | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The identifier (user name) of the user who created the project.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
CreatedBy?: string;
|
|
2273
|
+
CreatedBy?: string | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>The dataset associated with the project.</p>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
DatasetName?: string;
|
|
2278
|
+
DatasetName?: string | undefined;
|
|
2279
2279
|
/**
|
|
2280
2280
|
* <p>The date and time that the project was last modified.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
LastModifiedDate?: Date;
|
|
2283
|
+
LastModifiedDate?: Date | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>The identifier (user name) of the user who last modified the project.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
LastModifiedBy?: string;
|
|
2288
|
+
LastModifiedBy?: string | undefined;
|
|
2289
2289
|
/**
|
|
2290
2290
|
* <p>The name of the project.</p>
|
|
2291
2291
|
* @public
|
|
@@ -2295,29 +2295,29 @@ export interface DescribeProjectResponse {
|
|
|
2295
2295
|
* <p>The recipe associated with this job.</p>
|
|
2296
2296
|
* @public
|
|
2297
2297
|
*/
|
|
2298
|
-
RecipeName?: string;
|
|
2298
|
+
RecipeName?: string | undefined;
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>The Amazon Resource Name (ARN) of the project.</p>
|
|
2301
2301
|
* @public
|
|
2302
2302
|
*/
|
|
2303
|
-
ResourceArn?: string;
|
|
2303
|
+
ResourceArn?: string | undefined;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* <p>Represents the sample size and sampling type for DataBrew to use for interactive data
|
|
2306
2306
|
* analysis.</p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
Sample?: Sample;
|
|
2309
|
+
Sample?: Sample | undefined;
|
|
2310
2310
|
/**
|
|
2311
2311
|
* <p>The ARN of the Identity and Access Management (IAM) role to be assumed when
|
|
2312
2312
|
* DataBrew runs the job.</p>
|
|
2313
2313
|
* @public
|
|
2314
2314
|
*/
|
|
2315
|
-
RoleArn?: string;
|
|
2315
|
+
RoleArn?: string | undefined;
|
|
2316
2316
|
/**
|
|
2317
2317
|
* <p>Metadata tags associated with this project.</p>
|
|
2318
2318
|
* @public
|
|
2319
2319
|
*/
|
|
2320
|
-
Tags?: Record<string, string
|
|
2320
|
+
Tags?: Record<string, string> | undefined;
|
|
2321
2321
|
/**
|
|
2322
2322
|
* <p>Describes the current state of the session:</p>
|
|
2323
2323
|
* <ul>
|
|
@@ -2336,17 +2336,17 @@ export interface DescribeProjectResponse {
|
|
|
2336
2336
|
* </ul>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
SessionStatus?: SessionStatus;
|
|
2339
|
+
SessionStatus?: SessionStatus | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>The identifier (user name) of the user that opened the project for use. </p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
OpenedBy?: string;
|
|
2344
|
+
OpenedBy?: string | undefined;
|
|
2345
2345
|
/**
|
|
2346
2346
|
* <p>The date and time when the project was opened. </p>
|
|
2347
2347
|
* @public
|
|
2348
2348
|
*/
|
|
2349
|
-
OpenDate?: Date;
|
|
2349
|
+
OpenDate?: Date | undefined;
|
|
2350
2350
|
}
|
|
2351
2351
|
/**
|
|
2352
2352
|
* @public
|
|
@@ -2362,7 +2362,7 @@ export interface DescribeRecipeRequest {
|
|
|
2362
2362
|
* published version is returned.</p>
|
|
2363
2363
|
* @public
|
|
2364
2364
|
*/
|
|
2365
|
-
RecipeVersion?: string;
|
|
2365
|
+
RecipeVersion?: string | undefined;
|
|
2366
2366
|
}
|
|
2367
2367
|
/**
|
|
2368
2368
|
* @public
|
|
@@ -2372,42 +2372,42 @@ export interface DescribeRecipeResponse {
|
|
|
2372
2372
|
* <p>The identifier (user name) of the user who created the recipe.</p>
|
|
2373
2373
|
* @public
|
|
2374
2374
|
*/
|
|
2375
|
-
CreatedBy?: string;
|
|
2375
|
+
CreatedBy?: string | undefined;
|
|
2376
2376
|
/**
|
|
2377
2377
|
* <p>The date and time that the recipe was created.</p>
|
|
2378
2378
|
* @public
|
|
2379
2379
|
*/
|
|
2380
|
-
CreateDate?: Date;
|
|
2380
|
+
CreateDate?: Date | undefined;
|
|
2381
2381
|
/**
|
|
2382
2382
|
* <p>The identifier (user name) of the user who last modified the recipe.</p>
|
|
2383
2383
|
* @public
|
|
2384
2384
|
*/
|
|
2385
|
-
LastModifiedBy?: string;
|
|
2385
|
+
LastModifiedBy?: string | undefined;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* <p>The date and time that the recipe was last modified.</p>
|
|
2388
2388
|
* @public
|
|
2389
2389
|
*/
|
|
2390
|
-
LastModifiedDate?: Date;
|
|
2390
|
+
LastModifiedDate?: Date | undefined;
|
|
2391
2391
|
/**
|
|
2392
2392
|
* <p>The name of the project associated with this recipe.</p>
|
|
2393
2393
|
* @public
|
|
2394
2394
|
*/
|
|
2395
|
-
ProjectName?: string;
|
|
2395
|
+
ProjectName?: string | undefined;
|
|
2396
2396
|
/**
|
|
2397
2397
|
* <p>The identifier (user name) of the user who last published the recipe.</p>
|
|
2398
2398
|
* @public
|
|
2399
2399
|
*/
|
|
2400
|
-
PublishedBy?: string;
|
|
2400
|
+
PublishedBy?: string | undefined;
|
|
2401
2401
|
/**
|
|
2402
2402
|
* <p>The date and time when the recipe was last published.</p>
|
|
2403
2403
|
* @public
|
|
2404
2404
|
*/
|
|
2405
|
-
PublishedDate?: Date;
|
|
2405
|
+
PublishedDate?: Date | undefined;
|
|
2406
2406
|
/**
|
|
2407
2407
|
* <p>The description of the recipe.</p>
|
|
2408
2408
|
* @public
|
|
2409
2409
|
*/
|
|
2410
|
-
Description?: string;
|
|
2410
|
+
Description?: string | undefined;
|
|
2411
2411
|
/**
|
|
2412
2412
|
* <p>The name of the recipe.</p>
|
|
2413
2413
|
* @public
|
|
@@ -2418,22 +2418,22 @@ export interface DescribeRecipeResponse {
|
|
|
2418
2418
|
* the conditions under which the action should succeed.</p>
|
|
2419
2419
|
* @public
|
|
2420
2420
|
*/
|
|
2421
|
-
Steps?: RecipeStep[];
|
|
2421
|
+
Steps?: RecipeStep[] | undefined;
|
|
2422
2422
|
/**
|
|
2423
2423
|
* <p>Metadata tags associated with this project.</p>
|
|
2424
2424
|
* @public
|
|
2425
2425
|
*/
|
|
2426
|
-
Tags?: Record<string, string
|
|
2426
|
+
Tags?: Record<string, string> | undefined;
|
|
2427
2427
|
/**
|
|
2428
2428
|
* <p>The ARN of the recipe.</p>
|
|
2429
2429
|
* @public
|
|
2430
2430
|
*/
|
|
2431
|
-
ResourceArn?: string;
|
|
2431
|
+
ResourceArn?: string | undefined;
|
|
2432
2432
|
/**
|
|
2433
2433
|
* <p>The recipe version identifier.</p>
|
|
2434
2434
|
* @public
|
|
2435
2435
|
*/
|
|
2436
|
-
RecipeVersion?: string;
|
|
2436
|
+
RecipeVersion?: string | undefined;
|
|
2437
2437
|
}
|
|
2438
2438
|
/**
|
|
2439
2439
|
* @public
|
|
@@ -2458,49 +2458,49 @@ export interface DescribeRulesetResponse {
|
|
|
2458
2458
|
* <p>The description of the ruleset.</p>
|
|
2459
2459
|
* @public
|
|
2460
2460
|
*/
|
|
2461
|
-
Description?: string;
|
|
2461
|
+
Description?: string | undefined;
|
|
2462
2462
|
/**
|
|
2463
2463
|
* <p>The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is
|
|
2464
2464
|
* associated with.</p>
|
|
2465
2465
|
* @public
|
|
2466
2466
|
*/
|
|
2467
|
-
TargetArn?: string;
|
|
2467
|
+
TargetArn?: string | undefined;
|
|
2468
2468
|
/**
|
|
2469
2469
|
* <p>A list of rules that are defined with the ruleset. A rule includes one
|
|
2470
2470
|
* or more checks to be validated on a DataBrew dataset.</p>
|
|
2471
2471
|
* @public
|
|
2472
2472
|
*/
|
|
2473
|
-
Rules?: Rule[];
|
|
2473
|
+
Rules?: Rule[] | undefined;
|
|
2474
2474
|
/**
|
|
2475
2475
|
* <p>The date and time that the ruleset was created.</p>
|
|
2476
2476
|
* @public
|
|
2477
2477
|
*/
|
|
2478
|
-
CreateDate?: Date;
|
|
2478
|
+
CreateDate?: Date | undefined;
|
|
2479
2479
|
/**
|
|
2480
2480
|
* <p>The Amazon Resource Name (ARN) of the user who created the ruleset.</p>
|
|
2481
2481
|
* @public
|
|
2482
2482
|
*/
|
|
2483
|
-
CreatedBy?: string;
|
|
2483
|
+
CreatedBy?: string | undefined;
|
|
2484
2484
|
/**
|
|
2485
2485
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the ruleset.</p>
|
|
2486
2486
|
* @public
|
|
2487
2487
|
*/
|
|
2488
|
-
LastModifiedBy?: string;
|
|
2488
|
+
LastModifiedBy?: string | undefined;
|
|
2489
2489
|
/**
|
|
2490
2490
|
* <p>The modification date and time of the ruleset.</p>
|
|
2491
2491
|
* @public
|
|
2492
2492
|
*/
|
|
2493
|
-
LastModifiedDate?: Date;
|
|
2493
|
+
LastModifiedDate?: Date | undefined;
|
|
2494
2494
|
/**
|
|
2495
2495
|
* <p>The Amazon Resource Name (ARN) for the ruleset.</p>
|
|
2496
2496
|
* @public
|
|
2497
2497
|
*/
|
|
2498
|
-
ResourceArn?: string;
|
|
2498
|
+
ResourceArn?: string | undefined;
|
|
2499
2499
|
/**
|
|
2500
2500
|
* <p>Metadata tags that have been applied to the ruleset.</p>
|
|
2501
2501
|
* @public
|
|
2502
2502
|
*/
|
|
2503
|
-
Tags?: Record<string, string
|
|
2503
|
+
Tags?: Record<string, string> | undefined;
|
|
2504
2504
|
}
|
|
2505
2505
|
/**
|
|
2506
2506
|
* @public
|
|
@@ -2520,44 +2520,44 @@ export interface DescribeScheduleResponse {
|
|
|
2520
2520
|
* <p>The date and time that the schedule was created.</p>
|
|
2521
2521
|
* @public
|
|
2522
2522
|
*/
|
|
2523
|
-
CreateDate?: Date;
|
|
2523
|
+
CreateDate?: Date | undefined;
|
|
2524
2524
|
/**
|
|
2525
2525
|
* <p>The identifier (user name) of the user who created the schedule. </p>
|
|
2526
2526
|
* @public
|
|
2527
2527
|
*/
|
|
2528
|
-
CreatedBy?: string;
|
|
2528
|
+
CreatedBy?: string | undefined;
|
|
2529
2529
|
/**
|
|
2530
2530
|
* <p>The name or names of one or more jobs to be run by using the schedule.</p>
|
|
2531
2531
|
* @public
|
|
2532
2532
|
*/
|
|
2533
|
-
JobNames?: string[];
|
|
2533
|
+
JobNames?: string[] | undefined;
|
|
2534
2534
|
/**
|
|
2535
2535
|
* <p>The identifier (user name) of the user who last modified the schedule.</p>
|
|
2536
2536
|
* @public
|
|
2537
2537
|
*/
|
|
2538
|
-
LastModifiedBy?: string;
|
|
2538
|
+
LastModifiedBy?: string | undefined;
|
|
2539
2539
|
/**
|
|
2540
2540
|
* <p>The date and time that the schedule was last modified.</p>
|
|
2541
2541
|
* @public
|
|
2542
2542
|
*/
|
|
2543
|
-
LastModifiedDate?: Date;
|
|
2543
|
+
LastModifiedDate?: Date | undefined;
|
|
2544
2544
|
/**
|
|
2545
2545
|
* <p>The Amazon Resource Name (ARN) of the schedule.</p>
|
|
2546
2546
|
* @public
|
|
2547
2547
|
*/
|
|
2548
|
-
ResourceArn?: string;
|
|
2548
|
+
ResourceArn?: string | undefined;
|
|
2549
2549
|
/**
|
|
2550
2550
|
* <p>The date or dates and time or times when the jobs are to be run for the schedule. For
|
|
2551
2551
|
* more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html">Cron expressions</a> in the
|
|
2552
2552
|
* <i>Glue DataBrew Developer Guide</i>.</p>
|
|
2553
2553
|
* @public
|
|
2554
2554
|
*/
|
|
2555
|
-
CronExpression?: string;
|
|
2555
|
+
CronExpression?: string | undefined;
|
|
2556
2556
|
/**
|
|
2557
2557
|
* <p>Metadata tags associated with this schedule.</p>
|
|
2558
2558
|
* @public
|
|
2559
2559
|
*/
|
|
2560
|
-
Tags?: Record<string, string
|
|
2560
|
+
Tags?: Record<string, string> | undefined;
|
|
2561
2561
|
/**
|
|
2562
2562
|
* <p>The name of the schedule.</p>
|
|
2563
2563
|
* @public
|
|
@@ -2572,12 +2572,12 @@ export interface ListDatasetsRequest {
|
|
|
2572
2572
|
* <p>The maximum number of results to return in this request. </p>
|
|
2573
2573
|
* @public
|
|
2574
2574
|
*/
|
|
2575
|
-
MaxResults?: number;
|
|
2575
|
+
MaxResults?: number | undefined;
|
|
2576
2576
|
/**
|
|
2577
2577
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
2578
2578
|
* @public
|
|
2579
2579
|
*/
|
|
2580
|
-
NextToken?: string;
|
|
2580
|
+
NextToken?: string | undefined;
|
|
2581
2581
|
}
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>Represents a dataset that can be processed by DataBrew.</p>
|
|
@@ -2588,17 +2588,17 @@ export interface Dataset {
|
|
|
2588
2588
|
* <p>The ID of the Amazon Web Services account that owns the dataset.</p>
|
|
2589
2589
|
* @public
|
|
2590
2590
|
*/
|
|
2591
|
-
AccountId?: string;
|
|
2591
|
+
AccountId?: string | undefined;
|
|
2592
2592
|
/**
|
|
2593
2593
|
* <p>The Amazon Resource Name (ARN) of the user who created the dataset.</p>
|
|
2594
2594
|
* @public
|
|
2595
2595
|
*/
|
|
2596
|
-
CreatedBy?: string;
|
|
2596
|
+
CreatedBy?: string | undefined;
|
|
2597
2597
|
/**
|
|
2598
2598
|
* <p>The date and time that the dataset was created.</p>
|
|
2599
2599
|
* @public
|
|
2600
2600
|
*/
|
|
2601
|
-
CreateDate?: Date;
|
|
2601
|
+
CreateDate?: Date | undefined;
|
|
2602
2602
|
/**
|
|
2603
2603
|
* <p>The unique name of the dataset.</p>
|
|
2604
2604
|
* @public
|
|
@@ -2608,12 +2608,12 @@ export interface Dataset {
|
|
|
2608
2608
|
* <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
|
|
2609
2609
|
* @public
|
|
2610
2610
|
*/
|
|
2611
|
-
Format?: InputFormat;
|
|
2611
|
+
Format?: InputFormat | undefined;
|
|
2612
2612
|
/**
|
|
2613
2613
|
* <p>A set of options that define how DataBrew interprets the data in the dataset.</p>
|
|
2614
2614
|
* @public
|
|
2615
2615
|
*/
|
|
2616
|
-
FormatOptions?: FormatOptions;
|
|
2616
|
+
FormatOptions?: FormatOptions | undefined;
|
|
2617
2617
|
/**
|
|
2618
2618
|
* <p>Information on how DataBrew can find the dataset, in either the Glue Data Catalog
|
|
2619
2619
|
* or Amazon S3.</p>
|
|
@@ -2624,33 +2624,33 @@ export interface Dataset {
|
|
|
2624
2624
|
* <p>The last modification date and time of the dataset.</p>
|
|
2625
2625
|
* @public
|
|
2626
2626
|
*/
|
|
2627
|
-
LastModifiedDate?: Date;
|
|
2627
|
+
LastModifiedDate?: Date | undefined;
|
|
2628
2628
|
/**
|
|
2629
2629
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the dataset.</p>
|
|
2630
2630
|
* @public
|
|
2631
2631
|
*/
|
|
2632
|
-
LastModifiedBy?: string;
|
|
2632
|
+
LastModifiedBy?: string | undefined;
|
|
2633
2633
|
/**
|
|
2634
2634
|
* <p>The location of the data for the dataset, either Amazon S3 or the Glue Data Catalog.</p>
|
|
2635
2635
|
* @public
|
|
2636
2636
|
*/
|
|
2637
|
-
Source?: Source;
|
|
2637
|
+
Source?: Source | undefined;
|
|
2638
2638
|
/**
|
|
2639
2639
|
* <p>A set of options that defines how DataBrew interprets an Amazon S3
|
|
2640
2640
|
* path of the dataset.</p>
|
|
2641
2641
|
* @public
|
|
2642
2642
|
*/
|
|
2643
|
-
PathOptions?: PathOptions;
|
|
2643
|
+
PathOptions?: PathOptions | undefined;
|
|
2644
2644
|
/**
|
|
2645
2645
|
* <p>Metadata tags that have been applied to the dataset.</p>
|
|
2646
2646
|
* @public
|
|
2647
2647
|
*/
|
|
2648
|
-
Tags?: Record<string, string
|
|
2648
|
+
Tags?: Record<string, string> | undefined;
|
|
2649
2649
|
/**
|
|
2650
2650
|
* <p>The unique Amazon Resource Name (ARN) for the dataset.</p>
|
|
2651
2651
|
* @public
|
|
2652
2652
|
*/
|
|
2653
|
-
ResourceArn?: string;
|
|
2653
|
+
ResourceArn?: string | undefined;
|
|
2654
2654
|
}
|
|
2655
2655
|
/**
|
|
2656
2656
|
* @public
|
|
@@ -2666,7 +2666,7 @@ export interface ListDatasetsResponse {
|
|
|
2666
2666
|
* results.</p>
|
|
2667
2667
|
* @public
|
|
2668
2668
|
*/
|
|
2669
|
-
NextToken?: string;
|
|
2669
|
+
NextToken?: string | undefined;
|
|
2670
2670
|
}
|
|
2671
2671
|
/**
|
|
2672
2672
|
* @public
|
|
@@ -2681,12 +2681,12 @@ export interface ListJobRunsRequest {
|
|
|
2681
2681
|
* <p>The maximum number of results to return in this request. </p>
|
|
2682
2682
|
* @public
|
|
2683
2683
|
*/
|
|
2684
|
-
MaxResults?: number;
|
|
2684
|
+
MaxResults?: number | undefined;
|
|
2685
2685
|
/**
|
|
2686
2686
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
2687
2687
|
* @public
|
|
2688
2688
|
*/
|
|
2689
|
-
NextToken?: string;
|
|
2689
|
+
NextToken?: string | undefined;
|
|
2690
2690
|
}
|
|
2691
2691
|
/**
|
|
2692
2692
|
* <p>Represents one run of a DataBrew job.</p>
|
|
@@ -2697,85 +2697,85 @@ export interface JobRun {
|
|
|
2697
2697
|
* <p>The number of times that DataBrew has attempted to run the job.</p>
|
|
2698
2698
|
* @public
|
|
2699
2699
|
*/
|
|
2700
|
-
Attempt?: number;
|
|
2700
|
+
Attempt?: number | undefined;
|
|
2701
2701
|
/**
|
|
2702
2702
|
* <p>The date and time when the job completed processing.</p>
|
|
2703
2703
|
* @public
|
|
2704
2704
|
*/
|
|
2705
|
-
CompletedOn?: Date;
|
|
2705
|
+
CompletedOn?: Date | undefined;
|
|
2706
2706
|
/**
|
|
2707
2707
|
* <p>The name of the dataset for the job to process.</p>
|
|
2708
2708
|
* @public
|
|
2709
2709
|
*/
|
|
2710
|
-
DatasetName?: string;
|
|
2710
|
+
DatasetName?: string | undefined;
|
|
2711
2711
|
/**
|
|
2712
2712
|
* <p>A message indicating an error (if any) that was encountered when the job ran.</p>
|
|
2713
2713
|
* @public
|
|
2714
2714
|
*/
|
|
2715
|
-
ErrorMessage?: string;
|
|
2715
|
+
ErrorMessage?: string | undefined;
|
|
2716
2716
|
/**
|
|
2717
2717
|
* <p>The amount of time, in seconds, during which a job run consumed resources.</p>
|
|
2718
2718
|
* @public
|
|
2719
2719
|
*/
|
|
2720
|
-
ExecutionTime?: number;
|
|
2720
|
+
ExecutionTime?: number | undefined;
|
|
2721
2721
|
/**
|
|
2722
2722
|
* <p>The name of the job being processed during this run.</p>
|
|
2723
2723
|
* @public
|
|
2724
2724
|
*/
|
|
2725
|
-
JobName?: string;
|
|
2725
|
+
JobName?: string | undefined;
|
|
2726
2726
|
/**
|
|
2727
2727
|
* <p>The unique identifier of the job run.</p>
|
|
2728
2728
|
* @public
|
|
2729
2729
|
*/
|
|
2730
|
-
RunId?: string;
|
|
2730
|
+
RunId?: string | undefined;
|
|
2731
2731
|
/**
|
|
2732
2732
|
* <p>The current state of the job run entity itself.</p>
|
|
2733
2733
|
* @public
|
|
2734
2734
|
*/
|
|
2735
|
-
State?: JobRunState;
|
|
2735
|
+
State?: JobRunState | undefined;
|
|
2736
2736
|
/**
|
|
2737
2737
|
* <p>The current status of Amazon CloudWatch logging for the job run.</p>
|
|
2738
2738
|
* @public
|
|
2739
2739
|
*/
|
|
2740
|
-
LogSubscription?: LogSubscription;
|
|
2740
|
+
LogSubscription?: LogSubscription | undefined;
|
|
2741
2741
|
/**
|
|
2742
2742
|
* <p>The name of an Amazon CloudWatch log group, where the job writes diagnostic messages
|
|
2743
2743
|
* when it runs.</p>
|
|
2744
2744
|
* @public
|
|
2745
2745
|
*/
|
|
2746
|
-
LogGroupName?: string;
|
|
2746
|
+
LogGroupName?: string | undefined;
|
|
2747
2747
|
/**
|
|
2748
2748
|
* <p>One or more output artifacts from a job run.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
Outputs?: Output[];
|
|
2751
|
+
Outputs?: Output[] | undefined;
|
|
2752
2752
|
/**
|
|
2753
2753
|
* <p>One or more artifacts that represent the Glue Data Catalog output
|
|
2754
2754
|
* from running the job.</p>
|
|
2755
2755
|
* @public
|
|
2756
2756
|
*/
|
|
2757
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
2757
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
2758
2758
|
/**
|
|
2759
2759
|
* <p>Represents a list of JDBC database output objects which defines the output
|
|
2760
2760
|
* destination for a DataBrew recipe job to write into.</p>
|
|
2761
2761
|
* @public
|
|
2762
2762
|
*/
|
|
2763
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
2763
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
2764
2764
|
/**
|
|
2765
2765
|
* <p>The set of steps processed by the job.</p>
|
|
2766
2766
|
* @public
|
|
2767
2767
|
*/
|
|
2768
|
-
RecipeReference?: RecipeReference;
|
|
2768
|
+
RecipeReference?: RecipeReference | undefined;
|
|
2769
2769
|
/**
|
|
2770
2770
|
* <p>The Amazon Resource Name (ARN) of the user who initiated the job run. </p>
|
|
2771
2771
|
* @public
|
|
2772
2772
|
*/
|
|
2773
|
-
StartedBy?: string;
|
|
2773
|
+
StartedBy?: string | undefined;
|
|
2774
2774
|
/**
|
|
2775
2775
|
* <p>The date and time when the job run began. </p>
|
|
2776
2776
|
* @public
|
|
2777
2777
|
*/
|
|
2778
|
-
StartedOn?: Date;
|
|
2778
|
+
StartedOn?: Date | undefined;
|
|
2779
2779
|
/**
|
|
2780
2780
|
* <p>A sample configuration for profile jobs only, which determines the number of rows on which the
|
|
2781
2781
|
* profile job is run. If a <code>JobSample</code> value isn't provided, the default
|
|
@@ -2783,12 +2783,12 @@ export interface JobRun {
|
|
|
2783
2783
|
* size parameter.</p>
|
|
2784
2784
|
* @public
|
|
2785
2785
|
*/
|
|
2786
|
-
JobSample?: JobSample;
|
|
2786
|
+
JobSample?: JobSample | undefined;
|
|
2787
2787
|
/**
|
|
2788
2788
|
* <p>List of validation configurations that are applied to the profile job run.</p>
|
|
2789
2789
|
* @public
|
|
2790
2790
|
*/
|
|
2791
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
2791
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
2792
2792
|
}
|
|
2793
2793
|
/**
|
|
2794
2794
|
* @public
|
|
@@ -2804,7 +2804,7 @@ export interface ListJobRunsResponse {
|
|
|
2804
2804
|
* results.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
NextToken?: string;
|
|
2807
|
+
NextToken?: string | undefined;
|
|
2808
2808
|
}
|
|
2809
2809
|
/**
|
|
2810
2810
|
* @public
|
|
@@ -2815,25 +2815,25 @@ export interface ListJobsRequest {
|
|
|
2815
2815
|
* act on the specified dataset.</p>
|
|
2816
2816
|
* @public
|
|
2817
2817
|
*/
|
|
2818
|
-
DatasetName?: string;
|
|
2818
|
+
DatasetName?: string | undefined;
|
|
2819
2819
|
/**
|
|
2820
2820
|
* <p>The maximum number of results to return in this request. </p>
|
|
2821
2821
|
* @public
|
|
2822
2822
|
*/
|
|
2823
|
-
MaxResults?: number;
|
|
2823
|
+
MaxResults?: number | undefined;
|
|
2824
2824
|
/**
|
|
2825
2825
|
* <p>A token generated by DataBrew that specifies where to continue pagination if a
|
|
2826
2826
|
* previous request was truncated. To get the next set of pages, pass in the NextToken
|
|
2827
2827
|
* value from the response object of the previous page call. </p>
|
|
2828
2828
|
* @public
|
|
2829
2829
|
*/
|
|
2830
|
-
NextToken?: string;
|
|
2830
|
+
NextToken?: string | undefined;
|
|
2831
2831
|
/**
|
|
2832
2832
|
* <p>The name of a project. Using this parameter indicates to return only those jobs that
|
|
2833
2833
|
* are associated with the specified project.</p>
|
|
2834
2834
|
* @public
|
|
2835
2835
|
*/
|
|
2836
|
-
ProjectName?: string;
|
|
2836
|
+
ProjectName?: string | undefined;
|
|
2837
2837
|
}
|
|
2838
2838
|
/**
|
|
2839
2839
|
* <p>Represents all of the attributes of a DataBrew job.</p>
|
|
@@ -2844,22 +2844,22 @@ export interface Job {
|
|
|
2844
2844
|
* <p>The ID of the Amazon Web Services account that owns the job.</p>
|
|
2845
2845
|
* @public
|
|
2846
2846
|
*/
|
|
2847
|
-
AccountId?: string;
|
|
2847
|
+
AccountId?: string | undefined;
|
|
2848
2848
|
/**
|
|
2849
2849
|
* <p>The Amazon Resource Name (ARN) of the user who created the job.</p>
|
|
2850
2850
|
* @public
|
|
2851
2851
|
*/
|
|
2852
|
-
CreatedBy?: string;
|
|
2852
|
+
CreatedBy?: string | undefined;
|
|
2853
2853
|
/**
|
|
2854
2854
|
* <p>The date and time that the job was created.</p>
|
|
2855
2855
|
* @public
|
|
2856
2856
|
*/
|
|
2857
|
-
CreateDate?: Date;
|
|
2857
|
+
CreateDate?: Date | undefined;
|
|
2858
2858
|
/**
|
|
2859
2859
|
* <p>A dataset that the job is to process.</p>
|
|
2860
2860
|
* @public
|
|
2861
2861
|
*/
|
|
2862
|
-
DatasetName?: string;
|
|
2862
|
+
DatasetName?: string | undefined;
|
|
2863
2863
|
/**
|
|
2864
2864
|
* <p>The Amazon Resource Name (ARN) of an encryption key that is used to protect the job
|
|
2865
2865
|
* output. For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/encryption-security-configuration.html">Encrypting data
|
|
@@ -2867,7 +2867,7 @@ export interface Job {
|
|
|
2867
2867
|
* </p>
|
|
2868
2868
|
* @public
|
|
2869
2869
|
*/
|
|
2870
|
-
EncryptionKeyArn?: string;
|
|
2870
|
+
EncryptionKeyArn?: string | undefined;
|
|
2871
2871
|
/**
|
|
2872
2872
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
2873
2873
|
* <ul>
|
|
@@ -2882,7 +2882,7 @@ export interface Job {
|
|
|
2882
2882
|
* </ul>
|
|
2883
2883
|
* @public
|
|
2884
2884
|
*/
|
|
2885
|
-
EncryptionMode?: EncryptionMode;
|
|
2885
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
2886
2886
|
/**
|
|
2887
2887
|
* <p>The unique name of the job.</p>
|
|
2888
2888
|
* @public
|
|
@@ -2904,80 +2904,80 @@ export interface Job {
|
|
|
2904
2904
|
* </ul>
|
|
2905
2905
|
* @public
|
|
2906
2906
|
*/
|
|
2907
|
-
Type?: JobType;
|
|
2907
|
+
Type?: JobType | undefined;
|
|
2908
2908
|
/**
|
|
2909
2909
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the job.</p>
|
|
2910
2910
|
* @public
|
|
2911
2911
|
*/
|
|
2912
|
-
LastModifiedBy?: string;
|
|
2912
|
+
LastModifiedBy?: string | undefined;
|
|
2913
2913
|
/**
|
|
2914
2914
|
* <p>The modification date and time of the job.</p>
|
|
2915
2915
|
* @public
|
|
2916
2916
|
*/
|
|
2917
|
-
LastModifiedDate?: Date;
|
|
2917
|
+
LastModifiedDate?: Date | undefined;
|
|
2918
2918
|
/**
|
|
2919
2919
|
* <p>The current status of Amazon CloudWatch logging for the job.</p>
|
|
2920
2920
|
* @public
|
|
2921
2921
|
*/
|
|
2922
|
-
LogSubscription?: LogSubscription;
|
|
2922
|
+
LogSubscription?: LogSubscription | undefined;
|
|
2923
2923
|
/**
|
|
2924
2924
|
* <p>The maximum number of nodes that can be consumed when the job processes data.</p>
|
|
2925
2925
|
* @public
|
|
2926
2926
|
*/
|
|
2927
|
-
MaxCapacity?: number;
|
|
2927
|
+
MaxCapacity?: number | undefined;
|
|
2928
2928
|
/**
|
|
2929
2929
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
2930
2930
|
* @public
|
|
2931
2931
|
*/
|
|
2932
|
-
MaxRetries?: number;
|
|
2932
|
+
MaxRetries?: number | undefined;
|
|
2933
2933
|
/**
|
|
2934
2934
|
* <p>One or more artifacts that represent output from running the job.</p>
|
|
2935
2935
|
* @public
|
|
2936
2936
|
*/
|
|
2937
|
-
Outputs?: Output[];
|
|
2937
|
+
Outputs?: Output[] | undefined;
|
|
2938
2938
|
/**
|
|
2939
2939
|
* <p>One or more artifacts that represent the Glue Data Catalog output
|
|
2940
2940
|
* from running the job.</p>
|
|
2941
2941
|
* @public
|
|
2942
2942
|
*/
|
|
2943
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
2943
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
2944
2944
|
/**
|
|
2945
2945
|
* <p>Represents a list of JDBC database output objects which defines the output
|
|
2946
2946
|
* destination for a DataBrew recipe job to write into.</p>
|
|
2947
2947
|
* @public
|
|
2948
2948
|
*/
|
|
2949
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
2949
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
2950
2950
|
/**
|
|
2951
2951
|
* <p>The name of the project that the job is associated with.</p>
|
|
2952
2952
|
* @public
|
|
2953
2953
|
*/
|
|
2954
|
-
ProjectName?: string;
|
|
2954
|
+
ProjectName?: string | undefined;
|
|
2955
2955
|
/**
|
|
2956
2956
|
* <p>A set of steps that the job runs.</p>
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
RecipeReference?: RecipeReference;
|
|
2959
|
+
RecipeReference?: RecipeReference | undefined;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* <p>The unique Amazon Resource Name (ARN) for the job.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
ResourceArn?: string;
|
|
2964
|
+
ResourceArn?: string | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The Amazon Resource Name (ARN) of the role to be assumed for this job.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
RoleArn?: string;
|
|
2969
|
+
RoleArn?: string | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>The job's timeout in minutes. A job that attempts to run longer than this timeout
|
|
2972
2972
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
2973
2973
|
* @public
|
|
2974
2974
|
*/
|
|
2975
|
-
Timeout?: number;
|
|
2975
|
+
Timeout?: number | undefined;
|
|
2976
2976
|
/**
|
|
2977
2977
|
* <p>Metadata tags that have been applied to the job.</p>
|
|
2978
2978
|
* @public
|
|
2979
2979
|
*/
|
|
2980
|
-
Tags?: Record<string, string
|
|
2980
|
+
Tags?: Record<string, string> | undefined;
|
|
2981
2981
|
/**
|
|
2982
2982
|
* <p>A sample configuration for profile jobs only, which determines the number of rows on which the
|
|
2983
2983
|
* profile job is run. If a <code>JobSample</code> value isn't provided, the default value
|
|
@@ -2985,12 +2985,12 @@ export interface Job {
|
|
|
2985
2985
|
* size parameter.</p>
|
|
2986
2986
|
* @public
|
|
2987
2987
|
*/
|
|
2988
|
-
JobSample?: JobSample;
|
|
2988
|
+
JobSample?: JobSample | undefined;
|
|
2989
2989
|
/**
|
|
2990
2990
|
* <p>List of validation configurations that are applied to the profile job.</p>
|
|
2991
2991
|
* @public
|
|
2992
2992
|
*/
|
|
2993
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
2993
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
2994
2994
|
}
|
|
2995
2995
|
/**
|
|
2996
2996
|
* @public
|
|
@@ -3006,7 +3006,7 @@ export interface ListJobsResponse {
|
|
|
3006
3006
|
* results.</p>
|
|
3007
3007
|
* @public
|
|
3008
3008
|
*/
|
|
3009
|
-
NextToken?: string;
|
|
3009
|
+
NextToken?: string | undefined;
|
|
3010
3010
|
}
|
|
3011
3011
|
/**
|
|
3012
3012
|
* @public
|
|
@@ -3016,12 +3016,12 @@ export interface ListProjectsRequest {
|
|
|
3016
3016
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
3017
3017
|
* @public
|
|
3018
3018
|
*/
|
|
3019
|
-
NextToken?: string;
|
|
3019
|
+
NextToken?: string | undefined;
|
|
3020
3020
|
/**
|
|
3021
3021
|
* <p>The maximum number of results to return in this request. </p>
|
|
3022
3022
|
* @public
|
|
3023
3023
|
*/
|
|
3024
|
-
MaxResults?: number;
|
|
3024
|
+
MaxResults?: number | undefined;
|
|
3025
3025
|
}
|
|
3026
3026
|
/**
|
|
3027
3027
|
* <p>Represents all of the attributes of a DataBrew project.</p>
|
|
@@ -3032,32 +3032,32 @@ export interface Project {
|
|
|
3032
3032
|
* <p>The ID of the Amazon Web Services account that owns the project.</p>
|
|
3033
3033
|
* @public
|
|
3034
3034
|
*/
|
|
3035
|
-
AccountId?: string;
|
|
3035
|
+
AccountId?: string | undefined;
|
|
3036
3036
|
/**
|
|
3037
3037
|
* <p>The date and time that the project was created.</p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
CreateDate?: Date;
|
|
3040
|
+
CreateDate?: Date | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>The Amazon Resource Name (ARN) of the user who crated the project.</p>
|
|
3043
3043
|
* @public
|
|
3044
3044
|
*/
|
|
3045
|
-
CreatedBy?: string;
|
|
3045
|
+
CreatedBy?: string | undefined;
|
|
3046
3046
|
/**
|
|
3047
3047
|
* <p>The dataset that the project is to act upon.</p>
|
|
3048
3048
|
* @public
|
|
3049
3049
|
*/
|
|
3050
|
-
DatasetName?: string;
|
|
3050
|
+
DatasetName?: string | undefined;
|
|
3051
3051
|
/**
|
|
3052
3052
|
* <p>The last modification date and time for the project.</p>
|
|
3053
3053
|
* @public
|
|
3054
3054
|
*/
|
|
3055
|
-
LastModifiedDate?: Date;
|
|
3055
|
+
LastModifiedDate?: Date | undefined;
|
|
3056
3056
|
/**
|
|
3057
3057
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the project.</p>
|
|
3058
3058
|
* @public
|
|
3059
3059
|
*/
|
|
3060
|
-
LastModifiedBy?: string;
|
|
3060
|
+
LastModifiedBy?: string | undefined;
|
|
3061
3061
|
/**
|
|
3062
3062
|
* <p>The unique name of a project.</p>
|
|
3063
3063
|
* @public
|
|
@@ -3072,34 +3072,34 @@ export interface Project {
|
|
|
3072
3072
|
* <p>The Amazon Resource Name (ARN) for the project.</p>
|
|
3073
3073
|
* @public
|
|
3074
3074
|
*/
|
|
3075
|
-
ResourceArn?: string;
|
|
3075
|
+
ResourceArn?: string | undefined;
|
|
3076
3076
|
/**
|
|
3077
3077
|
* <p>The sample size and sampling type to apply to the data. If this parameter isn't
|
|
3078
3078
|
* specified, then the sample consists of the first 500 rows from the dataset.</p>
|
|
3079
3079
|
* @public
|
|
3080
3080
|
*/
|
|
3081
|
-
Sample?: Sample;
|
|
3081
|
+
Sample?: Sample | undefined;
|
|
3082
3082
|
/**
|
|
3083
3083
|
* <p>Metadata tags that have been applied to the project.</p>
|
|
3084
3084
|
* @public
|
|
3085
3085
|
*/
|
|
3086
|
-
Tags?: Record<string, string
|
|
3086
|
+
Tags?: Record<string, string> | undefined;
|
|
3087
3087
|
/**
|
|
3088
3088
|
* <p>The Amazon Resource Name (ARN) of the role that will be assumed for this
|
|
3089
3089
|
* project.</p>
|
|
3090
3090
|
* @public
|
|
3091
3091
|
*/
|
|
3092
|
-
RoleArn?: string;
|
|
3092
|
+
RoleArn?: string | undefined;
|
|
3093
3093
|
/**
|
|
3094
3094
|
* <p>The Amazon Resource Name (ARN) of the user that opened the project for use.</p>
|
|
3095
3095
|
* @public
|
|
3096
3096
|
*/
|
|
3097
|
-
OpenedBy?: string;
|
|
3097
|
+
OpenedBy?: string | undefined;
|
|
3098
3098
|
/**
|
|
3099
3099
|
* <p>The date and time when the project was opened.</p>
|
|
3100
3100
|
* @public
|
|
3101
3101
|
*/
|
|
3102
|
-
OpenDate?: Date;
|
|
3102
|
+
OpenDate?: Date | undefined;
|
|
3103
3103
|
}
|
|
3104
3104
|
/**
|
|
3105
3105
|
* @public
|
|
@@ -3115,7 +3115,7 @@ export interface ListProjectsResponse {
|
|
|
3115
3115
|
* results.</p>
|
|
3116
3116
|
* @public
|
|
3117
3117
|
*/
|
|
3118
|
-
NextToken?: string;
|
|
3118
|
+
NextToken?: string | undefined;
|
|
3119
3119
|
}
|
|
3120
3120
|
/**
|
|
3121
3121
|
* @public
|
|
@@ -3125,12 +3125,12 @@ export interface ListRecipesRequest {
|
|
|
3125
3125
|
* <p>The maximum number of results to return in this request. </p>
|
|
3126
3126
|
* @public
|
|
3127
3127
|
*/
|
|
3128
|
-
MaxResults?: number;
|
|
3128
|
+
MaxResults?: number | undefined;
|
|
3129
3129
|
/**
|
|
3130
3130
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
3131
3131
|
* @public
|
|
3132
3132
|
*/
|
|
3133
|
-
NextToken?: string;
|
|
3133
|
+
NextToken?: string | undefined;
|
|
3134
3134
|
/**
|
|
3135
3135
|
* <p>Return only those recipes with a version identifier of <code>LATEST_WORKING</code> or
|
|
3136
3136
|
* <code>LATEST_PUBLISHED</code>. If <code>RecipeVersion</code> is omitted,
|
|
@@ -3140,7 +3140,7 @@ export interface ListRecipesRequest {
|
|
|
3140
3140
|
* </p>
|
|
3141
3141
|
* @public
|
|
3142
3142
|
*/
|
|
3143
|
-
RecipeVersion?: string;
|
|
3143
|
+
RecipeVersion?: string | undefined;
|
|
3144
3144
|
}
|
|
3145
3145
|
/**
|
|
3146
3146
|
* <p>Represents one or more actions to be performed on a DataBrew dataset.</p>
|
|
@@ -3151,42 +3151,42 @@ export interface Recipe {
|
|
|
3151
3151
|
* <p>The Amazon Resource Name (ARN) of the user who created the recipe.</p>
|
|
3152
3152
|
* @public
|
|
3153
3153
|
*/
|
|
3154
|
-
CreatedBy?: string;
|
|
3154
|
+
CreatedBy?: string | undefined;
|
|
3155
3155
|
/**
|
|
3156
3156
|
* <p>The date and time that the recipe was created.</p>
|
|
3157
3157
|
* @public
|
|
3158
3158
|
*/
|
|
3159
|
-
CreateDate?: Date;
|
|
3159
|
+
CreateDate?: Date | undefined;
|
|
3160
3160
|
/**
|
|
3161
3161
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the recipe.</p>
|
|
3162
3162
|
* @public
|
|
3163
3163
|
*/
|
|
3164
|
-
LastModifiedBy?: string;
|
|
3164
|
+
LastModifiedBy?: string | undefined;
|
|
3165
3165
|
/**
|
|
3166
3166
|
* <p>The last modification date and time of the recipe.</p>
|
|
3167
3167
|
* @public
|
|
3168
3168
|
*/
|
|
3169
|
-
LastModifiedDate?: Date;
|
|
3169
|
+
LastModifiedDate?: Date | undefined;
|
|
3170
3170
|
/**
|
|
3171
3171
|
* <p>The name of the project that the recipe is associated with.</p>
|
|
3172
3172
|
* @public
|
|
3173
3173
|
*/
|
|
3174
|
-
ProjectName?: string;
|
|
3174
|
+
ProjectName?: string | undefined;
|
|
3175
3175
|
/**
|
|
3176
3176
|
* <p>The Amazon Resource Name (ARN) of the user who published the recipe.</p>
|
|
3177
3177
|
* @public
|
|
3178
3178
|
*/
|
|
3179
|
-
PublishedBy?: string;
|
|
3179
|
+
PublishedBy?: string | undefined;
|
|
3180
3180
|
/**
|
|
3181
3181
|
* <p>The date and time when the recipe was published.</p>
|
|
3182
3182
|
* @public
|
|
3183
3183
|
*/
|
|
3184
|
-
PublishedDate?: Date;
|
|
3184
|
+
PublishedDate?: Date | undefined;
|
|
3185
3185
|
/**
|
|
3186
3186
|
* <p>The description of the recipe.</p>
|
|
3187
3187
|
* @public
|
|
3188
3188
|
*/
|
|
3189
|
-
Description?: string;
|
|
3189
|
+
Description?: string | undefined;
|
|
3190
3190
|
/**
|
|
3191
3191
|
* <p>The unique name for the recipe.</p>
|
|
3192
3192
|
* @public
|
|
@@ -3196,17 +3196,17 @@ export interface Recipe {
|
|
|
3196
3196
|
* <p>The Amazon Resource Name (ARN) for the recipe.</p>
|
|
3197
3197
|
* @public
|
|
3198
3198
|
*/
|
|
3199
|
-
ResourceArn?: string;
|
|
3199
|
+
ResourceArn?: string | undefined;
|
|
3200
3200
|
/**
|
|
3201
3201
|
* <p>A list of steps that are defined by the recipe.</p>
|
|
3202
3202
|
* @public
|
|
3203
3203
|
*/
|
|
3204
|
-
Steps?: RecipeStep[];
|
|
3204
|
+
Steps?: RecipeStep[] | undefined;
|
|
3205
3205
|
/**
|
|
3206
3206
|
* <p>Metadata tags that have been applied to the recipe.</p>
|
|
3207
3207
|
* @public
|
|
3208
3208
|
*/
|
|
3209
|
-
Tags?: Record<string, string
|
|
3209
|
+
Tags?: Record<string, string> | undefined;
|
|
3210
3210
|
/**
|
|
3211
3211
|
* <p>The identifier for the version for the recipe. Must be one of the following:</p>
|
|
3212
3212
|
* <ul>
|
|
@@ -3228,7 +3228,7 @@ export interface Recipe {
|
|
|
3228
3228
|
* </ul>
|
|
3229
3229
|
* @public
|
|
3230
3230
|
*/
|
|
3231
|
-
RecipeVersion?: string;
|
|
3231
|
+
RecipeVersion?: string | undefined;
|
|
3232
3232
|
}
|
|
3233
3233
|
/**
|
|
3234
3234
|
* @public
|
|
@@ -3244,7 +3244,7 @@ export interface ListRecipesResponse {
|
|
|
3244
3244
|
* results.</p>
|
|
3245
3245
|
* @public
|
|
3246
3246
|
*/
|
|
3247
|
-
NextToken?: string;
|
|
3247
|
+
NextToken?: string | undefined;
|
|
3248
3248
|
}
|
|
3249
3249
|
/**
|
|
3250
3250
|
* @public
|
|
@@ -3254,12 +3254,12 @@ export interface ListRecipeVersionsRequest {
|
|
|
3254
3254
|
* <p>The maximum number of results to return in this request. </p>
|
|
3255
3255
|
* @public
|
|
3256
3256
|
*/
|
|
3257
|
-
MaxResults?: number;
|
|
3257
|
+
MaxResults?: number | undefined;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
3260
3260
|
* @public
|
|
3261
3261
|
*/
|
|
3262
|
-
NextToken?: string;
|
|
3262
|
+
NextToken?: string | undefined;
|
|
3263
3263
|
/**
|
|
3264
3264
|
* <p>The name of the recipe for which to return version information.</p>
|
|
3265
3265
|
* @public
|
|
@@ -3275,7 +3275,7 @@ export interface ListRecipeVersionsResponse {
|
|
|
3275
3275
|
* results.</p>
|
|
3276
3276
|
* @public
|
|
3277
3277
|
*/
|
|
3278
|
-
NextToken?: string;
|
|
3278
|
+
NextToken?: string | undefined;
|
|
3279
3279
|
/**
|
|
3280
3280
|
* <p>A list of versions for the specified recipe.</p>
|
|
3281
3281
|
* @public
|
|
@@ -3291,19 +3291,19 @@ export interface ListRulesetsRequest {
|
|
|
3291
3291
|
* indicates to return only those rulesets that are associated with the specified resource.</p>
|
|
3292
3292
|
* @public
|
|
3293
3293
|
*/
|
|
3294
|
-
TargetArn?: string;
|
|
3294
|
+
TargetArn?: string | undefined;
|
|
3295
3295
|
/**
|
|
3296
3296
|
* <p>The maximum number of results to return in this request.</p>
|
|
3297
3297
|
* @public
|
|
3298
3298
|
*/
|
|
3299
|
-
MaxResults?: number;
|
|
3299
|
+
MaxResults?: number | undefined;
|
|
3300
3300
|
/**
|
|
3301
3301
|
* <p>A token generated by DataBrew that specifies where to continue pagination
|
|
3302
3302
|
* if a previous request was truncated. To get the next set of pages, pass in
|
|
3303
3303
|
* the NextToken value from the response object of the previous page call.</p>
|
|
3304
3304
|
* @public
|
|
3305
3305
|
*/
|
|
3306
|
-
NextToken?: string;
|
|
3306
|
+
NextToken?: string | undefined;
|
|
3307
3307
|
}
|
|
3308
3308
|
/**
|
|
3309
3309
|
* <p>Contains metadata about the ruleset.</p>
|
|
@@ -3314,32 +3314,32 @@ export interface RulesetItem {
|
|
|
3314
3314
|
* <p>The ID of the Amazon Web Services account that owns the ruleset.</p>
|
|
3315
3315
|
* @public
|
|
3316
3316
|
*/
|
|
3317
|
-
AccountId?: string;
|
|
3317
|
+
AccountId?: string | undefined;
|
|
3318
3318
|
/**
|
|
3319
3319
|
* <p>The Amazon Resource Name (ARN) of the user who created the ruleset.</p>
|
|
3320
3320
|
* @public
|
|
3321
3321
|
*/
|
|
3322
|
-
CreatedBy?: string;
|
|
3322
|
+
CreatedBy?: string | undefined;
|
|
3323
3323
|
/**
|
|
3324
3324
|
* <p>The date and time that the ruleset was created.</p>
|
|
3325
3325
|
* @public
|
|
3326
3326
|
*/
|
|
3327
|
-
CreateDate?: Date;
|
|
3327
|
+
CreateDate?: Date | undefined;
|
|
3328
3328
|
/**
|
|
3329
3329
|
* <p>The description of the ruleset.</p>
|
|
3330
3330
|
* @public
|
|
3331
3331
|
*/
|
|
3332
|
-
Description?: string;
|
|
3332
|
+
Description?: string | undefined;
|
|
3333
3333
|
/**
|
|
3334
3334
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the ruleset.</p>
|
|
3335
3335
|
* @public
|
|
3336
3336
|
*/
|
|
3337
|
-
LastModifiedBy?: string;
|
|
3337
|
+
LastModifiedBy?: string | undefined;
|
|
3338
3338
|
/**
|
|
3339
3339
|
* <p>The modification date and time of the ruleset.</p>
|
|
3340
3340
|
* @public
|
|
3341
3341
|
*/
|
|
3342
|
-
LastModifiedDate?: Date;
|
|
3342
|
+
LastModifiedDate?: Date | undefined;
|
|
3343
3343
|
/**
|
|
3344
3344
|
* <p>The name of the ruleset.</p>
|
|
3345
3345
|
* @public
|
|
@@ -3349,17 +3349,17 @@ export interface RulesetItem {
|
|
|
3349
3349
|
* <p>The Amazon Resource Name (ARN) for the ruleset.</p>
|
|
3350
3350
|
* @public
|
|
3351
3351
|
*/
|
|
3352
|
-
ResourceArn?: string;
|
|
3352
|
+
ResourceArn?: string | undefined;
|
|
3353
3353
|
/**
|
|
3354
3354
|
* <p>The number of rules that are defined in the ruleset.</p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
RuleCount?: number;
|
|
3357
|
+
RuleCount?: number | undefined;
|
|
3358
3358
|
/**
|
|
3359
3359
|
* <p>Metadata tags that have been applied to the ruleset.</p>
|
|
3360
3360
|
* @public
|
|
3361
3361
|
*/
|
|
3362
|
-
Tags?: Record<string, string
|
|
3362
|
+
Tags?: Record<string, string> | undefined;
|
|
3363
3363
|
/**
|
|
3364
3364
|
* <p>The Amazon Resource Name (ARN) of a resource (dataset) that the ruleset is
|
|
3365
3365
|
* associated with.</p>
|
|
@@ -3381,7 +3381,7 @@ export interface ListRulesetsResponse {
|
|
|
3381
3381
|
* results.</p>
|
|
3382
3382
|
* @public
|
|
3383
3383
|
*/
|
|
3384
|
-
NextToken?: string;
|
|
3384
|
+
NextToken?: string | undefined;
|
|
3385
3385
|
}
|
|
3386
3386
|
/**
|
|
3387
3387
|
* @public
|
|
@@ -3391,17 +3391,17 @@ export interface ListSchedulesRequest {
|
|
|
3391
3391
|
* <p>The name of the job that these schedules apply to.</p>
|
|
3392
3392
|
* @public
|
|
3393
3393
|
*/
|
|
3394
|
-
JobName?: string;
|
|
3394
|
+
JobName?: string | undefined;
|
|
3395
3395
|
/**
|
|
3396
3396
|
* <p>The maximum number of results to return in this request. </p>
|
|
3397
3397
|
* @public
|
|
3398
3398
|
*/
|
|
3399
|
-
MaxResults?: number;
|
|
3399
|
+
MaxResults?: number | undefined;
|
|
3400
3400
|
/**
|
|
3401
3401
|
* <p>The token returned by a previous call to retrieve the next set of results.</p>
|
|
3402
3402
|
* @public
|
|
3403
3403
|
*/
|
|
3404
|
-
NextToken?: string;
|
|
3404
|
+
NextToken?: string | undefined;
|
|
3405
3405
|
}
|
|
3406
3406
|
/**
|
|
3407
3407
|
* <p>Represents one or more dates and times when a job is to run.</p>
|
|
@@ -3412,49 +3412,49 @@ export interface Schedule {
|
|
|
3412
3412
|
* <p>The ID of the Amazon Web Services account that owns the schedule.</p>
|
|
3413
3413
|
* @public
|
|
3414
3414
|
*/
|
|
3415
|
-
AccountId?: string;
|
|
3415
|
+
AccountId?: string | undefined;
|
|
3416
3416
|
/**
|
|
3417
3417
|
* <p>The Amazon Resource Name (ARN) of the user who created the schedule.</p>
|
|
3418
3418
|
* @public
|
|
3419
3419
|
*/
|
|
3420
|
-
CreatedBy?: string;
|
|
3420
|
+
CreatedBy?: string | undefined;
|
|
3421
3421
|
/**
|
|
3422
3422
|
* <p>The date and time that the schedule was created.</p>
|
|
3423
3423
|
* @public
|
|
3424
3424
|
*/
|
|
3425
|
-
CreateDate?: Date;
|
|
3425
|
+
CreateDate?: Date | undefined;
|
|
3426
3426
|
/**
|
|
3427
3427
|
* <p>A list of jobs to be run, according to the schedule.</p>
|
|
3428
3428
|
* @public
|
|
3429
3429
|
*/
|
|
3430
|
-
JobNames?: string[];
|
|
3430
|
+
JobNames?: string[] | undefined;
|
|
3431
3431
|
/**
|
|
3432
3432
|
* <p>The Amazon Resource Name (ARN) of the user who last modified the schedule.</p>
|
|
3433
3433
|
* @public
|
|
3434
3434
|
*/
|
|
3435
|
-
LastModifiedBy?: string;
|
|
3435
|
+
LastModifiedBy?: string | undefined;
|
|
3436
3436
|
/**
|
|
3437
3437
|
* <p>The date and time when the schedule was last modified.</p>
|
|
3438
3438
|
* @public
|
|
3439
3439
|
*/
|
|
3440
|
-
LastModifiedDate?: Date;
|
|
3440
|
+
LastModifiedDate?: Date | undefined;
|
|
3441
3441
|
/**
|
|
3442
3442
|
* <p>The Amazon Resource Name (ARN) of the schedule.</p>
|
|
3443
3443
|
* @public
|
|
3444
3444
|
*/
|
|
3445
|
-
ResourceArn?: string;
|
|
3445
|
+
ResourceArn?: string | undefined;
|
|
3446
3446
|
/**
|
|
3447
3447
|
* <p>The dates and times when the job is to run. For more information, see <a href="https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html">Cron
|
|
3448
3448
|
* expressions</a> in the <i>Glue DataBrew Developer
|
|
3449
3449
|
* Guide</i>.</p>
|
|
3450
3450
|
* @public
|
|
3451
3451
|
*/
|
|
3452
|
-
CronExpression?: string;
|
|
3452
|
+
CronExpression?: string | undefined;
|
|
3453
3453
|
/**
|
|
3454
3454
|
* <p>Metadata tags that have been applied to the schedule.</p>
|
|
3455
3455
|
* @public
|
|
3456
3456
|
*/
|
|
3457
|
-
Tags?: Record<string, string
|
|
3457
|
+
Tags?: Record<string, string> | undefined;
|
|
3458
3458
|
/**
|
|
3459
3459
|
* <p>The name of the schedule.</p>
|
|
3460
3460
|
* @public
|
|
@@ -3475,7 +3475,7 @@ export interface ListSchedulesResponse {
|
|
|
3475
3475
|
* results.</p>
|
|
3476
3476
|
* @public
|
|
3477
3477
|
*/
|
|
3478
|
-
NextToken?: string;
|
|
3478
|
+
NextToken?: string | undefined;
|
|
3479
3479
|
}
|
|
3480
3480
|
/**
|
|
3481
3481
|
* @public
|
|
@@ -3496,7 +3496,7 @@ export interface ListTagsForResourceResponse {
|
|
|
3496
3496
|
* <p>A list of tags associated with the DataBrew resource.</p>
|
|
3497
3497
|
* @public
|
|
3498
3498
|
*/
|
|
3499
|
-
Tags?: Record<string, string
|
|
3499
|
+
Tags?: Record<string, string> | undefined;
|
|
3500
3500
|
}
|
|
3501
3501
|
/**
|
|
3502
3502
|
* @public
|
|
@@ -3506,7 +3506,7 @@ export interface PublishRecipeRequest {
|
|
|
3506
3506
|
* <p>A description of the recipe to be published, for this version of the recipe.</p>
|
|
3507
3507
|
* @public
|
|
3508
3508
|
*/
|
|
3509
|
-
Description?: string;
|
|
3509
|
+
Description?: string | undefined;
|
|
3510
3510
|
/**
|
|
3511
3511
|
* <p>The name of the recipe to be published.</p>
|
|
3512
3512
|
* @public
|
|
@@ -3539,28 +3539,28 @@ export interface ViewFrame {
|
|
|
3539
3539
|
* <code>HiddenColumns</code> list.</p>
|
|
3540
3540
|
* @public
|
|
3541
3541
|
*/
|
|
3542
|
-
ColumnRange?: number;
|
|
3542
|
+
ColumnRange?: number | undefined;
|
|
3543
3543
|
/**
|
|
3544
3544
|
* <p>A list of columns to hide in the view frame.</p>
|
|
3545
3545
|
* @public
|
|
3546
3546
|
*/
|
|
3547
|
-
HiddenColumns?: string[];
|
|
3547
|
+
HiddenColumns?: string[] | undefined;
|
|
3548
3548
|
/**
|
|
3549
3549
|
* <p>The starting index for the range of rows to return in the view frame.</p>
|
|
3550
3550
|
* @public
|
|
3551
3551
|
*/
|
|
3552
|
-
StartRowIndex?: number;
|
|
3552
|
+
StartRowIndex?: number | undefined;
|
|
3553
3553
|
/**
|
|
3554
3554
|
* <p>The number of rows to include in the view frame, beginning with the
|
|
3555
3555
|
* <code>StartRowIndex</code> value.</p>
|
|
3556
3556
|
* @public
|
|
3557
3557
|
*/
|
|
3558
|
-
RowRange?: number;
|
|
3558
|
+
RowRange?: number | undefined;
|
|
3559
3559
|
/**
|
|
3560
3560
|
* <p>Controls if analytics computation is enabled or disabled. Enabled by default.</p>
|
|
3561
3561
|
* @public
|
|
3562
3562
|
*/
|
|
3563
|
-
Analytics?: AnalyticsMode;
|
|
3563
|
+
Analytics?: AnalyticsMode | undefined;
|
|
3564
3564
|
}
|
|
3565
3565
|
/**
|
|
3566
3566
|
* @public
|
|
@@ -3570,7 +3570,7 @@ export interface SendProjectSessionActionRequest {
|
|
|
3570
3570
|
* <p>If true, the result of the recipe step will be returned, but not applied.</p>
|
|
3571
3571
|
* @public
|
|
3572
3572
|
*/
|
|
3573
|
-
Preview?: boolean;
|
|
3573
|
+
Preview?: boolean | undefined;
|
|
3574
3574
|
/**
|
|
3575
3575
|
* <p>The name of the project to apply the action to.</p>
|
|
3576
3576
|
* @public
|
|
@@ -3580,25 +3580,25 @@ export interface SendProjectSessionActionRequest {
|
|
|
3580
3580
|
* <p>Represents a single step from a DataBrew recipe to be performed.</p>
|
|
3581
3581
|
* @public
|
|
3582
3582
|
*/
|
|
3583
|
-
RecipeStep?: RecipeStep;
|
|
3583
|
+
RecipeStep?: RecipeStep | undefined;
|
|
3584
3584
|
/**
|
|
3585
3585
|
* <p>The index from which to preview a step. This index is used to preview the result of
|
|
3586
3586
|
* steps that have already been applied, so that the resulting view frame is from earlier
|
|
3587
3587
|
* in the view frame stack.</p>
|
|
3588
3588
|
* @public
|
|
3589
3589
|
*/
|
|
3590
|
-
StepIndex?: number;
|
|
3590
|
+
StepIndex?: number | undefined;
|
|
3591
3591
|
/**
|
|
3592
3592
|
* <p>A unique identifier for an interactive session that's currently open and ready for
|
|
3593
3593
|
* work. The action will be performed on this session.</p>
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
ClientSessionId?: string;
|
|
3596
|
+
ClientSessionId?: string | undefined;
|
|
3597
3597
|
/**
|
|
3598
3598
|
* <p>Represents the data being transformed during an action.</p>
|
|
3599
3599
|
* @public
|
|
3600
3600
|
*/
|
|
3601
|
-
ViewFrame?: ViewFrame;
|
|
3601
|
+
ViewFrame?: ViewFrame | undefined;
|
|
3602
3602
|
}
|
|
3603
3603
|
/**
|
|
3604
3604
|
* @public
|
|
@@ -3608,7 +3608,7 @@ export interface SendProjectSessionActionResponse {
|
|
|
3608
3608
|
* <p>A message indicating the result of performing the action.</p>
|
|
3609
3609
|
* @public
|
|
3610
3610
|
*/
|
|
3611
|
-
Result?: string;
|
|
3611
|
+
Result?: string | undefined;
|
|
3612
3612
|
/**
|
|
3613
3613
|
* <p>The name of the project that was affected by the action.</p>
|
|
3614
3614
|
* @public
|
|
@@ -3618,7 +3618,7 @@ export interface SendProjectSessionActionResponse {
|
|
|
3618
3618
|
* <p>A unique identifier for the action that was performed.</p>
|
|
3619
3619
|
* @public
|
|
3620
3620
|
*/
|
|
3621
|
-
ActionId?: number;
|
|
3621
|
+
ActionId?: number | undefined;
|
|
3622
3622
|
}
|
|
3623
3623
|
/**
|
|
3624
3624
|
* @public
|
|
@@ -3654,7 +3654,7 @@ export interface StartProjectSessionRequest {
|
|
|
3654
3654
|
* client is currently accessing the project.</p>
|
|
3655
3655
|
* @public
|
|
3656
3656
|
*/
|
|
3657
|
-
AssumeControl?: boolean;
|
|
3657
|
+
AssumeControl?: boolean | undefined;
|
|
3658
3658
|
}
|
|
3659
3659
|
/**
|
|
3660
3660
|
* @public
|
|
@@ -3669,7 +3669,7 @@ export interface StartProjectSessionResponse {
|
|
|
3669
3669
|
* <p>A system-generated identifier for the session.</p>
|
|
3670
3670
|
* @public
|
|
3671
3671
|
*/
|
|
3672
|
-
ClientSessionId?: string;
|
|
3672
|
+
ClientSessionId?: string | undefined;
|
|
3673
3673
|
}
|
|
3674
3674
|
/**
|
|
3675
3675
|
* @public
|
|
@@ -3752,13 +3752,13 @@ export interface UpdateDatasetRequest {
|
|
|
3752
3752
|
* <p>The file format of a dataset that is created from an Amazon S3 file or folder.</p>
|
|
3753
3753
|
* @public
|
|
3754
3754
|
*/
|
|
3755
|
-
Format?: InputFormat;
|
|
3755
|
+
Format?: InputFormat | undefined;
|
|
3756
3756
|
/**
|
|
3757
3757
|
* <p>Represents a set of options that define the structure of either comma-separated value (CSV),
|
|
3758
3758
|
* Excel, or JSON input.</p>
|
|
3759
3759
|
* @public
|
|
3760
3760
|
*/
|
|
3761
|
-
FormatOptions?: FormatOptions;
|
|
3761
|
+
FormatOptions?: FormatOptions | undefined;
|
|
3762
3762
|
/**
|
|
3763
3763
|
* <p>Represents information on how DataBrew can find data, in either the Glue Data Catalog or
|
|
3764
3764
|
* Amazon S3.</p>
|
|
@@ -3769,7 +3769,7 @@ export interface UpdateDatasetRequest {
|
|
|
3769
3769
|
* <p>A set of options that defines how DataBrew interprets an Amazon S3 path of the dataset.</p>
|
|
3770
3770
|
* @public
|
|
3771
3771
|
*/
|
|
3772
|
-
PathOptions?: PathOptions;
|
|
3772
|
+
PathOptions?: PathOptions | undefined;
|
|
3773
3773
|
}
|
|
3774
3774
|
/**
|
|
3775
3775
|
* @public
|
|
@@ -3791,13 +3791,13 @@ export interface UpdateProfileJobRequest {
|
|
|
3791
3791
|
* profile job will run with default settings.</p>
|
|
3792
3792
|
* @public
|
|
3793
3793
|
*/
|
|
3794
|
-
Configuration?: ProfileConfiguration;
|
|
3794
|
+
Configuration?: ProfileConfiguration | undefined;
|
|
3795
3795
|
/**
|
|
3796
3796
|
* <p>The Amazon Resource Name (ARN) of an encryption key that is used to protect the
|
|
3797
3797
|
* job.</p>
|
|
3798
3798
|
* @public
|
|
3799
3799
|
*/
|
|
3800
|
-
EncryptionKeyArn?: string;
|
|
3800
|
+
EncryptionKeyArn?: string | undefined;
|
|
3801
3801
|
/**
|
|
3802
3802
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
3803
3803
|
* <ul>
|
|
@@ -3813,7 +3813,7 @@ export interface UpdateProfileJobRequest {
|
|
|
3813
3813
|
* </ul>
|
|
3814
3814
|
* @public
|
|
3815
3815
|
*/
|
|
3816
|
-
EncryptionMode?: EncryptionMode;
|
|
3816
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
3817
3817
|
/**
|
|
3818
3818
|
* <p>The name of the job to be updated.</p>
|
|
3819
3819
|
* @public
|
|
@@ -3824,18 +3824,18 @@ export interface UpdateProfileJobRequest {
|
|
|
3824
3824
|
* CloudWatch writes one log stream for each job run.</p>
|
|
3825
3825
|
* @public
|
|
3826
3826
|
*/
|
|
3827
|
-
LogSubscription?: LogSubscription;
|
|
3827
|
+
LogSubscription?: LogSubscription | undefined;
|
|
3828
3828
|
/**
|
|
3829
3829
|
* <p>The maximum number of compute nodes that DataBrew can use when the job processes
|
|
3830
3830
|
* data.</p>
|
|
3831
3831
|
* @public
|
|
3832
3832
|
*/
|
|
3833
|
-
MaxCapacity?: number;
|
|
3833
|
+
MaxCapacity?: number | undefined;
|
|
3834
3834
|
/**
|
|
3835
3835
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
3836
3836
|
* @public
|
|
3837
3837
|
*/
|
|
3838
|
-
MaxRetries?: number;
|
|
3838
|
+
MaxRetries?: number | undefined;
|
|
3839
3839
|
/**
|
|
3840
3840
|
* <p>Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read
|
|
3841
3841
|
* input data, or write output from a job.</p>
|
|
@@ -3846,7 +3846,7 @@ export interface UpdateProfileJobRequest {
|
|
|
3846
3846
|
* <p>List of validation configurations that are applied to the profile job.</p>
|
|
3847
3847
|
* @public
|
|
3848
3848
|
*/
|
|
3849
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
3849
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
3850
3850
|
/**
|
|
3851
3851
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to
|
|
3852
3852
|
* be assumed when DataBrew runs the job.</p>
|
|
@@ -3858,7 +3858,7 @@ export interface UpdateProfileJobRequest {
|
|
|
3858
3858
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
3859
3859
|
* @public
|
|
3860
3860
|
*/
|
|
3861
|
-
Timeout?: number;
|
|
3861
|
+
Timeout?: number | undefined;
|
|
3862
3862
|
/**
|
|
3863
3863
|
* <p>Sample configuration for Profile Jobs only. Determines the number of rows on which the
|
|
3864
3864
|
* Profile job will be executed. If a JobSample value is not provided for profile jobs, the
|
|
@@ -3866,7 +3866,7 @@ export interface UpdateProfileJobRequest {
|
|
|
3866
3866
|
* 20000 for the size parameter.</p>
|
|
3867
3867
|
* @public
|
|
3868
3868
|
*/
|
|
3869
|
-
JobSample?: JobSample;
|
|
3869
|
+
JobSample?: JobSample | undefined;
|
|
3870
3870
|
}
|
|
3871
3871
|
/**
|
|
3872
3872
|
* @public
|
|
@@ -3887,7 +3887,7 @@ export interface UpdateProjectRequest {
|
|
|
3887
3887
|
* analysis.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
Sample?: Sample;
|
|
3890
|
+
Sample?: Sample | undefined;
|
|
3891
3891
|
/**
|
|
3892
3892
|
* <p>The Amazon Resource Name (ARN) of the IAM role to be assumed for this request.</p>
|
|
3893
3893
|
* @public
|
|
@@ -3907,7 +3907,7 @@ export interface UpdateProjectResponse {
|
|
|
3907
3907
|
* <p>The date and time that the project was last modified.</p>
|
|
3908
3908
|
* @public
|
|
3909
3909
|
*/
|
|
3910
|
-
LastModifiedDate?: Date;
|
|
3910
|
+
LastModifiedDate?: Date | undefined;
|
|
3911
3911
|
/**
|
|
3912
3912
|
* <p>The name of the project that you updated.</p>
|
|
3913
3913
|
* @public
|
|
@@ -3922,7 +3922,7 @@ export interface UpdateRecipeRequest {
|
|
|
3922
3922
|
* <p>A description of the recipe.</p>
|
|
3923
3923
|
* @public
|
|
3924
3924
|
*/
|
|
3925
|
-
Description?: string;
|
|
3925
|
+
Description?: string | undefined;
|
|
3926
3926
|
/**
|
|
3927
3927
|
* <p>The name of the recipe to be updated.</p>
|
|
3928
3928
|
* @public
|
|
@@ -3933,7 +3933,7 @@ export interface UpdateRecipeRequest {
|
|
|
3933
3933
|
* the conditions under which the action should succeed.</p>
|
|
3934
3934
|
* @public
|
|
3935
3935
|
*/
|
|
3936
|
-
Steps?: RecipeStep[];
|
|
3936
|
+
Steps?: RecipeStep[] | undefined;
|
|
3937
3937
|
}
|
|
3938
3938
|
/**
|
|
3939
3939
|
* @public
|
|
@@ -3954,7 +3954,7 @@ export interface UpdateRecipeJobRequest {
|
|
|
3954
3954
|
* job.</p>
|
|
3955
3955
|
* @public
|
|
3956
3956
|
*/
|
|
3957
|
-
EncryptionKeyArn?: string;
|
|
3957
|
+
EncryptionKeyArn?: string | undefined;
|
|
3958
3958
|
/**
|
|
3959
3959
|
* <p>The encryption mode for the job, which can be one of the following:</p>
|
|
3960
3960
|
* <ul>
|
|
@@ -3969,7 +3969,7 @@ export interface UpdateRecipeJobRequest {
|
|
|
3969
3969
|
* </ul>
|
|
3970
3970
|
* @public
|
|
3971
3971
|
*/
|
|
3972
|
-
EncryptionMode?: EncryptionMode;
|
|
3972
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
3973
3973
|
/**
|
|
3974
3974
|
* <p>The name of the job to update.</p>
|
|
3975
3975
|
* @public
|
|
@@ -3980,34 +3980,34 @@ export interface UpdateRecipeJobRequest {
|
|
|
3980
3980
|
* CloudWatch writes one log stream for each job run.</p>
|
|
3981
3981
|
* @public
|
|
3982
3982
|
*/
|
|
3983
|
-
LogSubscription?: LogSubscription;
|
|
3983
|
+
LogSubscription?: LogSubscription | undefined;
|
|
3984
3984
|
/**
|
|
3985
3985
|
* <p>The maximum number of nodes that DataBrew can consume when the job processes
|
|
3986
3986
|
* data.</p>
|
|
3987
3987
|
* @public
|
|
3988
3988
|
*/
|
|
3989
|
-
MaxCapacity?: number;
|
|
3989
|
+
MaxCapacity?: number | undefined;
|
|
3990
3990
|
/**
|
|
3991
3991
|
* <p>The maximum number of times to retry the job after a job run fails.</p>
|
|
3992
3992
|
* @public
|
|
3993
3993
|
*/
|
|
3994
|
-
MaxRetries?: number;
|
|
3994
|
+
MaxRetries?: number | undefined;
|
|
3995
3995
|
/**
|
|
3996
3996
|
* <p>One or more artifacts that represent the output from running the job. </p>
|
|
3997
3997
|
* @public
|
|
3998
3998
|
*/
|
|
3999
|
-
Outputs?: Output[];
|
|
3999
|
+
Outputs?: Output[] | undefined;
|
|
4000
4000
|
/**
|
|
4001
4001
|
* <p>One or more artifacts that represent the Glue Data Catalog output from running the job.</p>
|
|
4002
4002
|
* @public
|
|
4003
4003
|
*/
|
|
4004
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
4004
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
4005
4005
|
/**
|
|
4006
4006
|
* <p>Represents a list of JDBC database output objects which defines the output destination for a
|
|
4007
4007
|
* DataBrew recipe job to write into.</p>
|
|
4008
4008
|
* @public
|
|
4009
4009
|
*/
|
|
4010
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
4010
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
4011
4011
|
/**
|
|
4012
4012
|
* <p>The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to
|
|
4013
4013
|
* be assumed when DataBrew runs the job.</p>
|
|
@@ -4019,7 +4019,7 @@ export interface UpdateRecipeJobRequest {
|
|
|
4019
4019
|
* period ends with a status of <code>TIMEOUT</code>.</p>
|
|
4020
4020
|
* @public
|
|
4021
4021
|
*/
|
|
4022
|
-
Timeout?: number;
|
|
4022
|
+
Timeout?: number | undefined;
|
|
4023
4023
|
}
|
|
4024
4024
|
/**
|
|
4025
4025
|
* @public
|
|
@@ -4044,7 +4044,7 @@ export interface UpdateRulesetRequest {
|
|
|
4044
4044
|
* <p>The description of the ruleset.</p>
|
|
4045
4045
|
* @public
|
|
4046
4046
|
*/
|
|
4047
|
-
Description?: string;
|
|
4047
|
+
Description?: string | undefined;
|
|
4048
4048
|
/**
|
|
4049
4049
|
* <p>A list of rules that are defined with the ruleset. A rule includes one or more
|
|
4050
4050
|
* checks to be validated on a DataBrew dataset.</p>
|
|
@@ -4070,7 +4070,7 @@ export interface UpdateScheduleRequest {
|
|
|
4070
4070
|
* <p>The name or names of one or more jobs to be run for this schedule.</p>
|
|
4071
4071
|
* @public
|
|
4072
4072
|
*/
|
|
4073
|
-
JobNames?: string[];
|
|
4073
|
+
JobNames?: string[] | undefined;
|
|
4074
4074
|
/**
|
|
4075
4075
|
* <p>The date or dates and time or times when the jobs are to be run. For more information,
|
|
4076
4076
|
* see <a href="https://docs.aws.amazon.com/databrew/latest/dg/jobs.cron.html">Cron
|