@aws-sdk/client-databrew 3.686.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
|
@@ -3,7 +3,7 @@ import { DataBrewServiceException as __BaseException } from "./DataBrewServiceEx
|
|
|
3
3
|
export declare class AccessDeniedException extends __BaseException {
|
|
4
4
|
readonly name: "AccessDeniedException";
|
|
5
5
|
readonly $fault: "client";
|
|
6
|
-
Message?: string;
|
|
6
|
+
Message?: string | undefined;
|
|
7
7
|
constructor(
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
@@ -21,24 +21,24 @@ export interface BatchDeleteRecipeVersionRequest {
|
|
|
21
21
|
RecipeVersions: string[] | undefined;
|
|
22
22
|
}
|
|
23
23
|
export interface RecipeVersionErrorDetail {
|
|
24
|
-
ErrorCode?: string;
|
|
25
|
-
ErrorMessage?: string;
|
|
26
|
-
RecipeVersion?: string;
|
|
24
|
+
ErrorCode?: string | undefined;
|
|
25
|
+
ErrorMessage?: string | undefined;
|
|
26
|
+
RecipeVersion?: string | undefined;
|
|
27
27
|
}
|
|
28
28
|
export interface BatchDeleteRecipeVersionResponse {
|
|
29
29
|
Name: string | undefined;
|
|
30
|
-
Errors?: RecipeVersionErrorDetail[];
|
|
30
|
+
Errors?: RecipeVersionErrorDetail[] | undefined;
|
|
31
31
|
}
|
|
32
32
|
export declare class ConflictException extends __BaseException {
|
|
33
33
|
readonly name: "ConflictException";
|
|
34
34
|
readonly $fault: "client";
|
|
35
|
-
Message?: string;
|
|
35
|
+
Message?: string | undefined;
|
|
36
36
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
37
37
|
}
|
|
38
38
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
39
|
readonly name: "ResourceNotFoundException";
|
|
40
40
|
readonly $fault: "client";
|
|
41
|
-
Message?: string;
|
|
41
|
+
Message?: string | undefined;
|
|
42
42
|
constructor(
|
|
43
43
|
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
44
44
|
);
|
|
@@ -46,7 +46,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
46
46
|
export declare class ValidationException extends __BaseException {
|
|
47
47
|
readonly name: "ValidationException";
|
|
48
48
|
readonly $fault: "client";
|
|
49
|
-
Message?: string;
|
|
49
|
+
Message?: string | undefined;
|
|
50
50
|
constructor(
|
|
51
51
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
52
52
|
);
|
|
@@ -60,47 +60,47 @@ export declare const InputFormat: {
|
|
|
60
60
|
};
|
|
61
61
|
export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
|
|
62
62
|
export interface CsvOptions {
|
|
63
|
-
Delimiter?: string;
|
|
64
|
-
HeaderRow?: boolean;
|
|
63
|
+
Delimiter?: string | undefined;
|
|
64
|
+
HeaderRow?: boolean | undefined;
|
|
65
65
|
}
|
|
66
66
|
export interface ExcelOptions {
|
|
67
|
-
SheetNames?: string[];
|
|
68
|
-
SheetIndexes?: number[];
|
|
69
|
-
HeaderRow?: boolean;
|
|
67
|
+
SheetNames?: string[] | undefined;
|
|
68
|
+
SheetIndexes?: number[] | undefined;
|
|
69
|
+
HeaderRow?: boolean | undefined;
|
|
70
70
|
}
|
|
71
71
|
export interface JsonOptions {
|
|
72
|
-
MultiLine?: boolean;
|
|
72
|
+
MultiLine?: boolean | undefined;
|
|
73
73
|
}
|
|
74
74
|
export interface FormatOptions {
|
|
75
|
-
Json?: JsonOptions;
|
|
76
|
-
Excel?: ExcelOptions;
|
|
77
|
-
Csv?: CsvOptions;
|
|
75
|
+
Json?: JsonOptions | undefined;
|
|
76
|
+
Excel?: ExcelOptions | undefined;
|
|
77
|
+
Csv?: CsvOptions | undefined;
|
|
78
78
|
}
|
|
79
79
|
export interface S3Location {
|
|
80
80
|
Bucket: string | undefined;
|
|
81
|
-
Key?: string;
|
|
82
|
-
BucketOwner?: string;
|
|
81
|
+
Key?: string | undefined;
|
|
82
|
+
BucketOwner?: string | undefined;
|
|
83
83
|
}
|
|
84
84
|
export interface DatabaseInputDefinition {
|
|
85
85
|
GlueConnectionName: string | undefined;
|
|
86
|
-
DatabaseTableName?: string;
|
|
87
|
-
TempDirectory?: S3Location;
|
|
88
|
-
QueryString?: string;
|
|
86
|
+
DatabaseTableName?: string | undefined;
|
|
87
|
+
TempDirectory?: S3Location | undefined;
|
|
88
|
+
QueryString?: string | undefined;
|
|
89
89
|
}
|
|
90
90
|
export interface DataCatalogInputDefinition {
|
|
91
|
-
CatalogId?: string;
|
|
91
|
+
CatalogId?: string | undefined;
|
|
92
92
|
DatabaseName: string | undefined;
|
|
93
93
|
TableName: string | undefined;
|
|
94
|
-
TempDirectory?: S3Location;
|
|
94
|
+
TempDirectory?: S3Location | undefined;
|
|
95
95
|
}
|
|
96
96
|
export interface Metadata {
|
|
97
|
-
SourceArn?: string;
|
|
97
|
+
SourceArn?: string | undefined;
|
|
98
98
|
}
|
|
99
99
|
export interface Input {
|
|
100
|
-
S3InputDefinition?: S3Location;
|
|
101
|
-
DataCatalogInputDefinition?: DataCatalogInputDefinition;
|
|
102
|
-
DatabaseInputDefinition?: DatabaseInputDefinition;
|
|
103
|
-
Metadata?: Metadata;
|
|
100
|
+
S3InputDefinition?: S3Location | undefined;
|
|
101
|
+
DataCatalogInputDefinition?: DataCatalogInputDefinition | undefined;
|
|
102
|
+
DatabaseInputDefinition?: DatabaseInputDefinition | undefined;
|
|
103
|
+
Metadata?: Metadata | undefined;
|
|
104
104
|
}
|
|
105
105
|
export declare const Order: {
|
|
106
106
|
readonly ASCENDING: "ASCENDING";
|
|
@@ -113,8 +113,8 @@ export declare const OrderedBy: {
|
|
|
113
113
|
export type OrderedBy = (typeof OrderedBy)[keyof typeof OrderedBy];
|
|
114
114
|
export interface FilesLimit {
|
|
115
115
|
MaxFiles: number | undefined;
|
|
116
|
-
OrderedBy?: OrderedBy;
|
|
117
|
-
Order?: Order;
|
|
116
|
+
OrderedBy?: OrderedBy | undefined;
|
|
117
|
+
Order?: Order | undefined;
|
|
118
118
|
}
|
|
119
119
|
export interface FilterExpression {
|
|
120
120
|
Expression: string | undefined;
|
|
@@ -122,8 +122,8 @@ export interface FilterExpression {
|
|
|
122
122
|
}
|
|
123
123
|
export interface DatetimeOptions {
|
|
124
124
|
Format: string | undefined;
|
|
125
|
-
TimezoneOffset?: string;
|
|
126
|
-
LocaleCode?: string;
|
|
125
|
+
TimezoneOffset?: string | undefined;
|
|
126
|
+
LocaleCode?: string | undefined;
|
|
127
127
|
}
|
|
128
128
|
export declare const ParameterType: {
|
|
129
129
|
readonly Datetime: "Datetime";
|
|
@@ -134,22 +134,22 @@ export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
|
134
134
|
export interface DatasetParameter {
|
|
135
135
|
Name: string | undefined;
|
|
136
136
|
Type: ParameterType | undefined;
|
|
137
|
-
DatetimeOptions?: DatetimeOptions;
|
|
138
|
-
CreateColumn?: boolean;
|
|
139
|
-
Filter?: FilterExpression;
|
|
137
|
+
DatetimeOptions?: DatetimeOptions | undefined;
|
|
138
|
+
CreateColumn?: boolean | undefined;
|
|
139
|
+
Filter?: FilterExpression | undefined;
|
|
140
140
|
}
|
|
141
141
|
export interface PathOptions {
|
|
142
|
-
LastModifiedDateCondition?: FilterExpression;
|
|
143
|
-
FilesLimit?: FilesLimit;
|
|
144
|
-
Parameters?: Record<string, DatasetParameter
|
|
142
|
+
LastModifiedDateCondition?: FilterExpression | undefined;
|
|
143
|
+
FilesLimit?: FilesLimit | undefined;
|
|
144
|
+
Parameters?: Record<string, DatasetParameter> | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface CreateDatasetRequest {
|
|
147
147
|
Name: string | undefined;
|
|
148
|
-
Format?: InputFormat;
|
|
149
|
-
FormatOptions?: FormatOptions;
|
|
148
|
+
Format?: InputFormat | undefined;
|
|
149
|
+
FormatOptions?: FormatOptions | undefined;
|
|
150
150
|
Input: Input | undefined;
|
|
151
|
-
PathOptions?: PathOptions;
|
|
152
|
-
Tags?: Record<string, string
|
|
151
|
+
PathOptions?: PathOptions | undefined;
|
|
152
|
+
Tags?: Record<string, string> | undefined;
|
|
153
153
|
}
|
|
154
154
|
export interface CreateDatasetResponse {
|
|
155
155
|
Name: string | undefined;
|
|
@@ -157,36 +157,36 @@ export interface CreateDatasetResponse {
|
|
|
157
157
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
158
158
|
readonly name: "ServiceQuotaExceededException";
|
|
159
159
|
readonly $fault: "client";
|
|
160
|
-
Message?: string;
|
|
160
|
+
Message?: string | undefined;
|
|
161
161
|
constructor(
|
|
162
162
|
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
163
163
|
);
|
|
164
164
|
}
|
|
165
165
|
export interface ColumnSelector {
|
|
166
|
-
Regex?: string;
|
|
167
|
-
Name?: string;
|
|
166
|
+
Regex?: string | undefined;
|
|
167
|
+
Name?: string | undefined;
|
|
168
168
|
}
|
|
169
169
|
export interface StatisticOverride {
|
|
170
170
|
Statistic: string | undefined;
|
|
171
171
|
Parameters: Record<string, string> | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface StatisticsConfiguration {
|
|
174
|
-
IncludedStatistics?: string[];
|
|
175
|
-
Overrides?: StatisticOverride[];
|
|
174
|
+
IncludedStatistics?: string[] | undefined;
|
|
175
|
+
Overrides?: StatisticOverride[] | undefined;
|
|
176
176
|
}
|
|
177
177
|
export interface ColumnStatisticsConfiguration {
|
|
178
|
-
Selectors?: ColumnSelector[];
|
|
178
|
+
Selectors?: ColumnSelector[] | undefined;
|
|
179
179
|
Statistics: StatisticsConfiguration | undefined;
|
|
180
180
|
}
|
|
181
181
|
export interface EntityDetectorConfiguration {
|
|
182
182
|
EntityTypes: string[] | undefined;
|
|
183
|
-
AllowedStatistics?: AllowedStatistics[];
|
|
183
|
+
AllowedStatistics?: AllowedStatistics[] | undefined;
|
|
184
184
|
}
|
|
185
185
|
export interface ProfileConfiguration {
|
|
186
|
-
DatasetStatisticsConfiguration?: StatisticsConfiguration;
|
|
187
|
-
ProfileColumns?: ColumnSelector[];
|
|
188
|
-
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[];
|
|
189
|
-
EntityDetectorConfiguration?: EntityDetectorConfiguration;
|
|
186
|
+
DatasetStatisticsConfiguration?: StatisticsConfiguration | undefined;
|
|
187
|
+
ProfileColumns?: ColumnSelector[] | undefined;
|
|
188
|
+
ColumnStatisticsConfigurations?: ColumnStatisticsConfiguration[] | undefined;
|
|
189
|
+
EntityDetectorConfiguration?: EntityDetectorConfiguration | undefined;
|
|
190
190
|
}
|
|
191
191
|
export declare const EncryptionMode: {
|
|
192
192
|
readonly SSEKMS: "SSE-KMS";
|
|
@@ -200,8 +200,8 @@ export declare const SampleMode: {
|
|
|
200
200
|
};
|
|
201
201
|
export type SampleMode = (typeof SampleMode)[keyof typeof SampleMode];
|
|
202
202
|
export interface JobSample {
|
|
203
|
-
Mode?: SampleMode;
|
|
204
|
-
Size?: number;
|
|
203
|
+
Mode?: SampleMode | undefined;
|
|
204
|
+
Size?: number | undefined;
|
|
205
205
|
}
|
|
206
206
|
export declare const LogSubscription: {
|
|
207
207
|
readonly DISABLE: "DISABLE";
|
|
@@ -216,23 +216,23 @@ export type ValidationMode =
|
|
|
216
216
|
(typeof ValidationMode)[keyof typeof ValidationMode];
|
|
217
217
|
export interface ValidationConfiguration {
|
|
218
218
|
RulesetArn: string | undefined;
|
|
219
|
-
ValidationMode?: ValidationMode;
|
|
219
|
+
ValidationMode?: ValidationMode | undefined;
|
|
220
220
|
}
|
|
221
221
|
export interface CreateProfileJobRequest {
|
|
222
222
|
DatasetName: string | undefined;
|
|
223
|
-
EncryptionKeyArn?: string;
|
|
224
|
-
EncryptionMode?: EncryptionMode;
|
|
223
|
+
EncryptionKeyArn?: string | undefined;
|
|
224
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
225
225
|
Name: string | undefined;
|
|
226
|
-
LogSubscription?: LogSubscription;
|
|
227
|
-
MaxCapacity?: number;
|
|
228
|
-
MaxRetries?: number;
|
|
226
|
+
LogSubscription?: LogSubscription | undefined;
|
|
227
|
+
MaxCapacity?: number | undefined;
|
|
228
|
+
MaxRetries?: number | undefined;
|
|
229
229
|
OutputLocation: S3Location | undefined;
|
|
230
|
-
Configuration?: ProfileConfiguration;
|
|
231
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
230
|
+
Configuration?: ProfileConfiguration | undefined;
|
|
231
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
232
232
|
RoleArn: string | undefined;
|
|
233
|
-
Tags?: Record<string, string
|
|
234
|
-
Timeout?: number;
|
|
235
|
-
JobSample?: JobSample;
|
|
233
|
+
Tags?: Record<string, string> | undefined;
|
|
234
|
+
Timeout?: number | undefined;
|
|
235
|
+
JobSample?: JobSample | undefined;
|
|
236
236
|
}
|
|
237
237
|
export interface CreateProfileJobResponse {
|
|
238
238
|
Name: string | undefined;
|
|
@@ -244,16 +244,16 @@ export declare const SampleType: {
|
|
|
244
244
|
};
|
|
245
245
|
export type SampleType = (typeof SampleType)[keyof typeof SampleType];
|
|
246
246
|
export interface Sample {
|
|
247
|
-
Size?: number;
|
|
247
|
+
Size?: number | undefined;
|
|
248
248
|
Type: SampleType | undefined;
|
|
249
249
|
}
|
|
250
250
|
export interface CreateProjectRequest {
|
|
251
251
|
DatasetName: string | undefined;
|
|
252
252
|
Name: string | undefined;
|
|
253
253
|
RecipeName: string | undefined;
|
|
254
|
-
Sample?: Sample;
|
|
254
|
+
Sample?: Sample | undefined;
|
|
255
255
|
RoleArn: string | undefined;
|
|
256
|
-
Tags?: Record<string, string
|
|
256
|
+
Tags?: Record<string, string> | undefined;
|
|
257
257
|
}
|
|
258
258
|
export interface CreateProjectResponse {
|
|
259
259
|
Name: string | undefined;
|
|
@@ -261,35 +261,35 @@ export interface CreateProjectResponse {
|
|
|
261
261
|
export declare class InternalServerException extends __BaseException {
|
|
262
262
|
readonly name: "InternalServerException";
|
|
263
263
|
readonly $fault: "server";
|
|
264
|
-
Message?: string;
|
|
264
|
+
Message?: string | undefined;
|
|
265
265
|
constructor(
|
|
266
266
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
267
267
|
);
|
|
268
268
|
}
|
|
269
269
|
export interface RecipeAction {
|
|
270
270
|
Operation: string | undefined;
|
|
271
|
-
Parameters?: Record<string, string
|
|
271
|
+
Parameters?: Record<string, string> | undefined;
|
|
272
272
|
}
|
|
273
273
|
export interface ConditionExpression {
|
|
274
274
|
Condition: string | undefined;
|
|
275
|
-
Value?: string;
|
|
275
|
+
Value?: string | undefined;
|
|
276
276
|
TargetColumn: string | undefined;
|
|
277
277
|
}
|
|
278
278
|
export interface RecipeStep {
|
|
279
279
|
Action: RecipeAction | undefined;
|
|
280
|
-
ConditionExpressions?: ConditionExpression[];
|
|
280
|
+
ConditionExpressions?: ConditionExpression[] | undefined;
|
|
281
281
|
}
|
|
282
282
|
export interface CreateRecipeRequest {
|
|
283
|
-
Description?: string;
|
|
283
|
+
Description?: string | undefined;
|
|
284
284
|
Name: string | undefined;
|
|
285
285
|
Steps: RecipeStep[] | undefined;
|
|
286
|
-
Tags?: Record<string, string
|
|
286
|
+
Tags?: Record<string, string> | undefined;
|
|
287
287
|
}
|
|
288
288
|
export interface CreateRecipeResponse {
|
|
289
289
|
Name: string | undefined;
|
|
290
290
|
}
|
|
291
291
|
export interface DatabaseTableOutputOptions {
|
|
292
|
-
TempDirectory?: S3Location;
|
|
292
|
+
TempDirectory?: S3Location | undefined;
|
|
293
293
|
TableName: string | undefined;
|
|
294
294
|
}
|
|
295
295
|
export declare const DatabaseOutputMode: {
|
|
@@ -300,18 +300,18 @@ export type DatabaseOutputMode =
|
|
|
300
300
|
export interface DatabaseOutput {
|
|
301
301
|
GlueConnectionName: string | undefined;
|
|
302
302
|
DatabaseOptions: DatabaseTableOutputOptions | undefined;
|
|
303
|
-
DatabaseOutputMode?: DatabaseOutputMode;
|
|
303
|
+
DatabaseOutputMode?: DatabaseOutputMode | undefined;
|
|
304
304
|
}
|
|
305
305
|
export interface S3TableOutputOptions {
|
|
306
306
|
Location: S3Location | undefined;
|
|
307
307
|
}
|
|
308
308
|
export interface DataCatalogOutput {
|
|
309
|
-
CatalogId?: string;
|
|
309
|
+
CatalogId?: string | undefined;
|
|
310
310
|
DatabaseName: string | undefined;
|
|
311
311
|
TableName: string | undefined;
|
|
312
|
-
S3Options?: S3TableOutputOptions;
|
|
313
|
-
DatabaseOptions?: DatabaseTableOutputOptions;
|
|
314
|
-
Overwrite?: boolean;
|
|
312
|
+
S3Options?: S3TableOutputOptions | undefined;
|
|
313
|
+
DatabaseOptions?: DatabaseTableOutputOptions | undefined;
|
|
314
|
+
Overwrite?: boolean | undefined;
|
|
315
315
|
}
|
|
316
316
|
export declare const CompressionFormat: {
|
|
317
317
|
readonly BROTLI: "BROTLI";
|
|
@@ -338,40 +338,40 @@ export declare const OutputFormat: {
|
|
|
338
338
|
};
|
|
339
339
|
export type OutputFormat = (typeof OutputFormat)[keyof typeof OutputFormat];
|
|
340
340
|
export interface CsvOutputOptions {
|
|
341
|
-
Delimiter?: string;
|
|
341
|
+
Delimiter?: string | undefined;
|
|
342
342
|
}
|
|
343
343
|
export interface OutputFormatOptions {
|
|
344
|
-
Csv?: CsvOutputOptions;
|
|
344
|
+
Csv?: CsvOutputOptions | undefined;
|
|
345
345
|
}
|
|
346
346
|
export interface Output {
|
|
347
|
-
CompressionFormat?: CompressionFormat;
|
|
348
|
-
Format?: OutputFormat;
|
|
349
|
-
PartitionColumns?: string[];
|
|
347
|
+
CompressionFormat?: CompressionFormat | undefined;
|
|
348
|
+
Format?: OutputFormat | undefined;
|
|
349
|
+
PartitionColumns?: string[] | undefined;
|
|
350
350
|
Location: S3Location | undefined;
|
|
351
|
-
Overwrite?: boolean;
|
|
352
|
-
FormatOptions?: OutputFormatOptions;
|
|
353
|
-
MaxOutputFiles?: number;
|
|
351
|
+
Overwrite?: boolean | undefined;
|
|
352
|
+
FormatOptions?: OutputFormatOptions | undefined;
|
|
353
|
+
MaxOutputFiles?: number | undefined;
|
|
354
354
|
}
|
|
355
355
|
export interface RecipeReference {
|
|
356
356
|
Name: string | undefined;
|
|
357
|
-
RecipeVersion?: string;
|
|
357
|
+
RecipeVersion?: string | undefined;
|
|
358
358
|
}
|
|
359
359
|
export interface CreateRecipeJobRequest {
|
|
360
|
-
DatasetName?: string;
|
|
361
|
-
EncryptionKeyArn?: string;
|
|
362
|
-
EncryptionMode?: EncryptionMode;
|
|
363
|
-
Name: string | undefined;
|
|
364
|
-
LogSubscription?: LogSubscription;
|
|
365
|
-
MaxCapacity?: number;
|
|
366
|
-
MaxRetries?: number;
|
|
367
|
-
Outputs?: Output[];
|
|
368
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
369
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
370
|
-
ProjectName?: string;
|
|
371
|
-
RecipeReference?: RecipeReference;
|
|
360
|
+
DatasetName?: string | undefined;
|
|
361
|
+
EncryptionKeyArn?: string | undefined;
|
|
362
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
363
|
+
Name: string | undefined;
|
|
364
|
+
LogSubscription?: LogSubscription | undefined;
|
|
365
|
+
MaxCapacity?: number | undefined;
|
|
366
|
+
MaxRetries?: number | undefined;
|
|
367
|
+
Outputs?: Output[] | undefined;
|
|
368
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
369
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
370
|
+
ProjectName?: string | undefined;
|
|
371
|
+
RecipeReference?: RecipeReference | undefined;
|
|
372
372
|
RoleArn: string | undefined;
|
|
373
|
-
Tags?: Record<string, string
|
|
374
|
-
Timeout?: number;
|
|
373
|
+
Tags?: Record<string, string> | undefined;
|
|
374
|
+
Timeout?: number | undefined;
|
|
375
375
|
}
|
|
376
376
|
export interface CreateRecipeJobResponse {
|
|
377
377
|
Name: string | undefined;
|
|
@@ -390,31 +390,31 @@ export declare const ThresholdUnit: {
|
|
|
390
390
|
export type ThresholdUnit = (typeof ThresholdUnit)[keyof typeof ThresholdUnit];
|
|
391
391
|
export interface Threshold {
|
|
392
392
|
Value: number | undefined;
|
|
393
|
-
Type?: ThresholdType;
|
|
394
|
-
Unit?: ThresholdUnit;
|
|
393
|
+
Type?: ThresholdType | undefined;
|
|
394
|
+
Unit?: ThresholdUnit | undefined;
|
|
395
395
|
}
|
|
396
396
|
export interface Rule {
|
|
397
397
|
Name: string | undefined;
|
|
398
|
-
Disabled?: boolean;
|
|
398
|
+
Disabled?: boolean | undefined;
|
|
399
399
|
CheckExpression: string | undefined;
|
|
400
|
-
SubstitutionMap?: Record<string, string
|
|
401
|
-
Threshold?: Threshold;
|
|
402
|
-
ColumnSelectors?: ColumnSelector[];
|
|
400
|
+
SubstitutionMap?: Record<string, string> | undefined;
|
|
401
|
+
Threshold?: Threshold | undefined;
|
|
402
|
+
ColumnSelectors?: ColumnSelector[] | undefined;
|
|
403
403
|
}
|
|
404
404
|
export interface CreateRulesetRequest {
|
|
405
405
|
Name: string | undefined;
|
|
406
|
-
Description?: string;
|
|
406
|
+
Description?: string | undefined;
|
|
407
407
|
TargetArn: string | undefined;
|
|
408
408
|
Rules: Rule[] | undefined;
|
|
409
|
-
Tags?: Record<string, string
|
|
409
|
+
Tags?: Record<string, string> | undefined;
|
|
410
410
|
}
|
|
411
411
|
export interface CreateRulesetResponse {
|
|
412
412
|
Name: string | undefined;
|
|
413
413
|
}
|
|
414
414
|
export interface CreateScheduleRequest {
|
|
415
|
-
JobNames?: string[];
|
|
415
|
+
JobNames?: string[] | undefined;
|
|
416
416
|
CronExpression: string | undefined;
|
|
417
|
-
Tags?: Record<string, string
|
|
417
|
+
Tags?: Record<string, string> | undefined;
|
|
418
418
|
Name: string | undefined;
|
|
419
419
|
}
|
|
420
420
|
export interface CreateScheduleResponse {
|
|
@@ -468,18 +468,18 @@ export declare const Source: {
|
|
|
468
468
|
};
|
|
469
469
|
export type Source = (typeof Source)[keyof typeof Source];
|
|
470
470
|
export interface DescribeDatasetResponse {
|
|
471
|
-
CreatedBy?: string;
|
|
472
|
-
CreateDate?: Date;
|
|
471
|
+
CreatedBy?: string | undefined;
|
|
472
|
+
CreateDate?: Date | undefined;
|
|
473
473
|
Name: string | undefined;
|
|
474
|
-
Format?: InputFormat;
|
|
475
|
-
FormatOptions?: FormatOptions;
|
|
474
|
+
Format?: InputFormat | undefined;
|
|
475
|
+
FormatOptions?: FormatOptions | undefined;
|
|
476
476
|
Input: Input | undefined;
|
|
477
|
-
LastModifiedDate?: Date;
|
|
478
|
-
LastModifiedBy?: string;
|
|
479
|
-
Source?: Source;
|
|
480
|
-
PathOptions?: PathOptions;
|
|
481
|
-
Tags?: Record<string, string
|
|
482
|
-
ResourceArn?: string;
|
|
477
|
+
LastModifiedDate?: Date | undefined;
|
|
478
|
+
LastModifiedBy?: string | undefined;
|
|
479
|
+
Source?: Source | undefined;
|
|
480
|
+
PathOptions?: PathOptions | undefined;
|
|
481
|
+
Tags?: Record<string, string> | undefined;
|
|
482
|
+
ResourceArn?: string | undefined;
|
|
483
483
|
}
|
|
484
484
|
export interface DescribeJobRequest {
|
|
485
485
|
Name: string | undefined;
|
|
@@ -490,30 +490,30 @@ export declare const JobType: {
|
|
|
490
490
|
};
|
|
491
491
|
export type JobType = (typeof JobType)[keyof typeof JobType];
|
|
492
492
|
export interface DescribeJobResponse {
|
|
493
|
-
CreateDate?: Date;
|
|
494
|
-
CreatedBy?: string;
|
|
495
|
-
DatasetName?: string;
|
|
496
|
-
EncryptionKeyArn?: string;
|
|
497
|
-
EncryptionMode?: EncryptionMode;
|
|
498
|
-
Name: string | undefined;
|
|
499
|
-
Type?: JobType;
|
|
500
|
-
LastModifiedBy?: string;
|
|
501
|
-
LastModifiedDate?: Date;
|
|
502
|
-
LogSubscription?: LogSubscription;
|
|
503
|
-
MaxCapacity?: number;
|
|
504
|
-
MaxRetries?: number;
|
|
505
|
-
Outputs?: Output[];
|
|
506
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
507
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
508
|
-
ProjectName?: string;
|
|
509
|
-
ProfileConfiguration?: ProfileConfiguration;
|
|
510
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
511
|
-
RecipeReference?: RecipeReference;
|
|
512
|
-
ResourceArn?: string;
|
|
513
|
-
RoleArn?: string;
|
|
514
|
-
Tags?: Record<string, string
|
|
515
|
-
Timeout?: number;
|
|
516
|
-
JobSample?: JobSample;
|
|
493
|
+
CreateDate?: Date | undefined;
|
|
494
|
+
CreatedBy?: string | undefined;
|
|
495
|
+
DatasetName?: string | undefined;
|
|
496
|
+
EncryptionKeyArn?: string | undefined;
|
|
497
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
498
|
+
Name: string | undefined;
|
|
499
|
+
Type?: JobType | undefined;
|
|
500
|
+
LastModifiedBy?: string | undefined;
|
|
501
|
+
LastModifiedDate?: Date | undefined;
|
|
502
|
+
LogSubscription?: LogSubscription | undefined;
|
|
503
|
+
MaxCapacity?: number | undefined;
|
|
504
|
+
MaxRetries?: number | undefined;
|
|
505
|
+
Outputs?: Output[] | undefined;
|
|
506
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
507
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
508
|
+
ProjectName?: string | undefined;
|
|
509
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
510
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
511
|
+
RecipeReference?: RecipeReference | undefined;
|
|
512
|
+
ResourceArn?: string | undefined;
|
|
513
|
+
RoleArn?: string | undefined;
|
|
514
|
+
Tags?: Record<string, string> | undefined;
|
|
515
|
+
Timeout?: number | undefined;
|
|
516
|
+
JobSample?: JobSample | undefined;
|
|
517
517
|
}
|
|
518
518
|
export interface DescribeJobRunRequest {
|
|
519
519
|
Name: string | undefined;
|
|
@@ -530,25 +530,25 @@ export declare const JobRunState: {
|
|
|
530
530
|
};
|
|
531
531
|
export type JobRunState = (typeof JobRunState)[keyof typeof JobRunState];
|
|
532
532
|
export interface DescribeJobRunResponse {
|
|
533
|
-
Attempt?: number;
|
|
534
|
-
CompletedOn?: Date;
|
|
535
|
-
DatasetName?: string;
|
|
536
|
-
ErrorMessage?: string;
|
|
537
|
-
ExecutionTime?: number;
|
|
533
|
+
Attempt?: number | undefined;
|
|
534
|
+
CompletedOn?: Date | undefined;
|
|
535
|
+
DatasetName?: string | undefined;
|
|
536
|
+
ErrorMessage?: string | undefined;
|
|
537
|
+
ExecutionTime?: number | undefined;
|
|
538
538
|
JobName: string | undefined;
|
|
539
|
-
ProfileConfiguration?: ProfileConfiguration;
|
|
540
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
541
|
-
RunId?: string;
|
|
542
|
-
State?: JobRunState;
|
|
543
|
-
LogSubscription?: LogSubscription;
|
|
544
|
-
LogGroupName?: string;
|
|
545
|
-
Outputs?: Output[];
|
|
546
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
547
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
548
|
-
RecipeReference?: RecipeReference;
|
|
549
|
-
StartedBy?: string;
|
|
550
|
-
StartedOn?: Date;
|
|
551
|
-
JobSample?: JobSample;
|
|
539
|
+
ProfileConfiguration?: ProfileConfiguration | undefined;
|
|
540
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
541
|
+
RunId?: string | undefined;
|
|
542
|
+
State?: JobRunState | undefined;
|
|
543
|
+
LogSubscription?: LogSubscription | undefined;
|
|
544
|
+
LogGroupName?: string | undefined;
|
|
545
|
+
Outputs?: Output[] | undefined;
|
|
546
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
547
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
548
|
+
RecipeReference?: RecipeReference | undefined;
|
|
549
|
+
StartedBy?: string | undefined;
|
|
550
|
+
StartedOn?: Date | undefined;
|
|
551
|
+
JobSample?: JobSample | undefined;
|
|
552
552
|
}
|
|
553
553
|
export interface DescribeProjectRequest {
|
|
554
554
|
Name: string | undefined;
|
|
@@ -567,265 +567,265 @@ export declare const SessionStatus: {
|
|
|
567
567
|
};
|
|
568
568
|
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
569
569
|
export interface DescribeProjectResponse {
|
|
570
|
-
CreateDate?: Date;
|
|
571
|
-
CreatedBy?: string;
|
|
572
|
-
DatasetName?: string;
|
|
573
|
-
LastModifiedDate?: Date;
|
|
574
|
-
LastModifiedBy?: string;
|
|
575
|
-
Name: string | undefined;
|
|
576
|
-
RecipeName?: string;
|
|
577
|
-
ResourceArn?: string;
|
|
578
|
-
Sample?: Sample;
|
|
579
|
-
RoleArn?: string;
|
|
580
|
-
Tags?: Record<string, string
|
|
581
|
-
SessionStatus?: SessionStatus;
|
|
582
|
-
OpenedBy?: string;
|
|
583
|
-
OpenDate?: Date;
|
|
570
|
+
CreateDate?: Date | undefined;
|
|
571
|
+
CreatedBy?: string | undefined;
|
|
572
|
+
DatasetName?: string | undefined;
|
|
573
|
+
LastModifiedDate?: Date | undefined;
|
|
574
|
+
LastModifiedBy?: string | undefined;
|
|
575
|
+
Name: string | undefined;
|
|
576
|
+
RecipeName?: string | undefined;
|
|
577
|
+
ResourceArn?: string | undefined;
|
|
578
|
+
Sample?: Sample | undefined;
|
|
579
|
+
RoleArn?: string | undefined;
|
|
580
|
+
Tags?: Record<string, string> | undefined;
|
|
581
|
+
SessionStatus?: SessionStatus | undefined;
|
|
582
|
+
OpenedBy?: string | undefined;
|
|
583
|
+
OpenDate?: Date | undefined;
|
|
584
584
|
}
|
|
585
585
|
export interface DescribeRecipeRequest {
|
|
586
586
|
Name: string | undefined;
|
|
587
|
-
RecipeVersion?: string;
|
|
587
|
+
RecipeVersion?: string | undefined;
|
|
588
588
|
}
|
|
589
589
|
export interface DescribeRecipeResponse {
|
|
590
|
-
CreatedBy?: string;
|
|
591
|
-
CreateDate?: Date;
|
|
592
|
-
LastModifiedBy?: string;
|
|
593
|
-
LastModifiedDate?: Date;
|
|
594
|
-
ProjectName?: string;
|
|
595
|
-
PublishedBy?: string;
|
|
596
|
-
PublishedDate?: Date;
|
|
597
|
-
Description?: string;
|
|
598
|
-
Name: string | undefined;
|
|
599
|
-
Steps?: RecipeStep[];
|
|
600
|
-
Tags?: Record<string, string
|
|
601
|
-
ResourceArn?: string;
|
|
602
|
-
RecipeVersion?: string;
|
|
590
|
+
CreatedBy?: string | undefined;
|
|
591
|
+
CreateDate?: Date | undefined;
|
|
592
|
+
LastModifiedBy?: string | undefined;
|
|
593
|
+
LastModifiedDate?: Date | undefined;
|
|
594
|
+
ProjectName?: string | undefined;
|
|
595
|
+
PublishedBy?: string | undefined;
|
|
596
|
+
PublishedDate?: Date | undefined;
|
|
597
|
+
Description?: string | undefined;
|
|
598
|
+
Name: string | undefined;
|
|
599
|
+
Steps?: RecipeStep[] | undefined;
|
|
600
|
+
Tags?: Record<string, string> | undefined;
|
|
601
|
+
ResourceArn?: string | undefined;
|
|
602
|
+
RecipeVersion?: string | undefined;
|
|
603
603
|
}
|
|
604
604
|
export interface DescribeRulesetRequest {
|
|
605
605
|
Name: string | undefined;
|
|
606
606
|
}
|
|
607
607
|
export interface DescribeRulesetResponse {
|
|
608
608
|
Name: string | undefined;
|
|
609
|
-
Description?: string;
|
|
610
|
-
TargetArn?: string;
|
|
611
|
-
Rules?: Rule[];
|
|
612
|
-
CreateDate?: Date;
|
|
613
|
-
CreatedBy?: string;
|
|
614
|
-
LastModifiedBy?: string;
|
|
615
|
-
LastModifiedDate?: Date;
|
|
616
|
-
ResourceArn?: string;
|
|
617
|
-
Tags?: Record<string, string
|
|
609
|
+
Description?: string | undefined;
|
|
610
|
+
TargetArn?: string | undefined;
|
|
611
|
+
Rules?: Rule[] | undefined;
|
|
612
|
+
CreateDate?: Date | undefined;
|
|
613
|
+
CreatedBy?: string | undefined;
|
|
614
|
+
LastModifiedBy?: string | undefined;
|
|
615
|
+
LastModifiedDate?: Date | undefined;
|
|
616
|
+
ResourceArn?: string | undefined;
|
|
617
|
+
Tags?: Record<string, string> | undefined;
|
|
618
618
|
}
|
|
619
619
|
export interface DescribeScheduleRequest {
|
|
620
620
|
Name: string | undefined;
|
|
621
621
|
}
|
|
622
622
|
export interface DescribeScheduleResponse {
|
|
623
|
-
CreateDate?: Date;
|
|
624
|
-
CreatedBy?: string;
|
|
625
|
-
JobNames?: string[];
|
|
626
|
-
LastModifiedBy?: string;
|
|
627
|
-
LastModifiedDate?: Date;
|
|
628
|
-
ResourceArn?: string;
|
|
629
|
-
CronExpression?: string;
|
|
630
|
-
Tags?: Record<string, string
|
|
623
|
+
CreateDate?: Date | undefined;
|
|
624
|
+
CreatedBy?: string | undefined;
|
|
625
|
+
JobNames?: string[] | undefined;
|
|
626
|
+
LastModifiedBy?: string | undefined;
|
|
627
|
+
LastModifiedDate?: Date | undefined;
|
|
628
|
+
ResourceArn?: string | undefined;
|
|
629
|
+
CronExpression?: string | undefined;
|
|
630
|
+
Tags?: Record<string, string> | undefined;
|
|
631
631
|
Name: string | undefined;
|
|
632
632
|
}
|
|
633
633
|
export interface ListDatasetsRequest {
|
|
634
|
-
MaxResults?: number;
|
|
635
|
-
NextToken?: string;
|
|
634
|
+
MaxResults?: number | undefined;
|
|
635
|
+
NextToken?: string | undefined;
|
|
636
636
|
}
|
|
637
637
|
export interface Dataset {
|
|
638
|
-
AccountId?: string;
|
|
639
|
-
CreatedBy?: string;
|
|
640
|
-
CreateDate?: Date;
|
|
638
|
+
AccountId?: string | undefined;
|
|
639
|
+
CreatedBy?: string | undefined;
|
|
640
|
+
CreateDate?: Date | undefined;
|
|
641
641
|
Name: string | undefined;
|
|
642
|
-
Format?: InputFormat;
|
|
643
|
-
FormatOptions?: FormatOptions;
|
|
642
|
+
Format?: InputFormat | undefined;
|
|
643
|
+
FormatOptions?: FormatOptions | undefined;
|
|
644
644
|
Input: Input | undefined;
|
|
645
|
-
LastModifiedDate?: Date;
|
|
646
|
-
LastModifiedBy?: string;
|
|
647
|
-
Source?: Source;
|
|
648
|
-
PathOptions?: PathOptions;
|
|
649
|
-
Tags?: Record<string, string
|
|
650
|
-
ResourceArn?: string;
|
|
645
|
+
LastModifiedDate?: Date | undefined;
|
|
646
|
+
LastModifiedBy?: string | undefined;
|
|
647
|
+
Source?: Source | undefined;
|
|
648
|
+
PathOptions?: PathOptions | undefined;
|
|
649
|
+
Tags?: Record<string, string> | undefined;
|
|
650
|
+
ResourceArn?: string | undefined;
|
|
651
651
|
}
|
|
652
652
|
export interface ListDatasetsResponse {
|
|
653
653
|
Datasets: Dataset[] | undefined;
|
|
654
|
-
NextToken?: string;
|
|
654
|
+
NextToken?: string | undefined;
|
|
655
655
|
}
|
|
656
656
|
export interface ListJobRunsRequest {
|
|
657
657
|
Name: string | undefined;
|
|
658
|
-
MaxResults?: number;
|
|
659
|
-
NextToken?: string;
|
|
658
|
+
MaxResults?: number | undefined;
|
|
659
|
+
NextToken?: string | undefined;
|
|
660
660
|
}
|
|
661
661
|
export interface JobRun {
|
|
662
|
-
Attempt?: number;
|
|
663
|
-
CompletedOn?: Date;
|
|
664
|
-
DatasetName?: string;
|
|
665
|
-
ErrorMessage?: string;
|
|
666
|
-
ExecutionTime?: number;
|
|
667
|
-
JobName?: string;
|
|
668
|
-
RunId?: string;
|
|
669
|
-
State?: JobRunState;
|
|
670
|
-
LogSubscription?: LogSubscription;
|
|
671
|
-
LogGroupName?: string;
|
|
672
|
-
Outputs?: Output[];
|
|
673
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
674
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
675
|
-
RecipeReference?: RecipeReference;
|
|
676
|
-
StartedBy?: string;
|
|
677
|
-
StartedOn?: Date;
|
|
678
|
-
JobSample?: JobSample;
|
|
679
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
662
|
+
Attempt?: number | undefined;
|
|
663
|
+
CompletedOn?: Date | undefined;
|
|
664
|
+
DatasetName?: string | undefined;
|
|
665
|
+
ErrorMessage?: string | undefined;
|
|
666
|
+
ExecutionTime?: number | undefined;
|
|
667
|
+
JobName?: string | undefined;
|
|
668
|
+
RunId?: string | undefined;
|
|
669
|
+
State?: JobRunState | undefined;
|
|
670
|
+
LogSubscription?: LogSubscription | undefined;
|
|
671
|
+
LogGroupName?: string | undefined;
|
|
672
|
+
Outputs?: Output[] | undefined;
|
|
673
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
674
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
675
|
+
RecipeReference?: RecipeReference | undefined;
|
|
676
|
+
StartedBy?: string | undefined;
|
|
677
|
+
StartedOn?: Date | undefined;
|
|
678
|
+
JobSample?: JobSample | undefined;
|
|
679
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
680
680
|
}
|
|
681
681
|
export interface ListJobRunsResponse {
|
|
682
682
|
JobRuns: JobRun[] | undefined;
|
|
683
|
-
NextToken?: string;
|
|
683
|
+
NextToken?: string | undefined;
|
|
684
684
|
}
|
|
685
685
|
export interface ListJobsRequest {
|
|
686
|
-
DatasetName?: string;
|
|
687
|
-
MaxResults?: number;
|
|
688
|
-
NextToken?: string;
|
|
689
|
-
ProjectName?: string;
|
|
686
|
+
DatasetName?: string | undefined;
|
|
687
|
+
MaxResults?: number | undefined;
|
|
688
|
+
NextToken?: string | undefined;
|
|
689
|
+
ProjectName?: string | undefined;
|
|
690
690
|
}
|
|
691
691
|
export interface Job {
|
|
692
|
-
AccountId?: string;
|
|
693
|
-
CreatedBy?: string;
|
|
694
|
-
CreateDate?: Date;
|
|
695
|
-
DatasetName?: string;
|
|
696
|
-
EncryptionKeyArn?: string;
|
|
697
|
-
EncryptionMode?: EncryptionMode;
|
|
698
|
-
Name: string | undefined;
|
|
699
|
-
Type?: JobType;
|
|
700
|
-
LastModifiedBy?: string;
|
|
701
|
-
LastModifiedDate?: Date;
|
|
702
|
-
LogSubscription?: LogSubscription;
|
|
703
|
-
MaxCapacity?: number;
|
|
704
|
-
MaxRetries?: number;
|
|
705
|
-
Outputs?: Output[];
|
|
706
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
707
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
708
|
-
ProjectName?: string;
|
|
709
|
-
RecipeReference?: RecipeReference;
|
|
710
|
-
ResourceArn?: string;
|
|
711
|
-
RoleArn?: string;
|
|
712
|
-
Timeout?: number;
|
|
713
|
-
Tags?: Record<string, string
|
|
714
|
-
JobSample?: JobSample;
|
|
715
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
692
|
+
AccountId?: string | undefined;
|
|
693
|
+
CreatedBy?: string | undefined;
|
|
694
|
+
CreateDate?: Date | undefined;
|
|
695
|
+
DatasetName?: string | undefined;
|
|
696
|
+
EncryptionKeyArn?: string | undefined;
|
|
697
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
698
|
+
Name: string | undefined;
|
|
699
|
+
Type?: JobType | undefined;
|
|
700
|
+
LastModifiedBy?: string | undefined;
|
|
701
|
+
LastModifiedDate?: Date | undefined;
|
|
702
|
+
LogSubscription?: LogSubscription | undefined;
|
|
703
|
+
MaxCapacity?: number | undefined;
|
|
704
|
+
MaxRetries?: number | undefined;
|
|
705
|
+
Outputs?: Output[] | undefined;
|
|
706
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
707
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
708
|
+
ProjectName?: string | undefined;
|
|
709
|
+
RecipeReference?: RecipeReference | undefined;
|
|
710
|
+
ResourceArn?: string | undefined;
|
|
711
|
+
RoleArn?: string | undefined;
|
|
712
|
+
Timeout?: number | undefined;
|
|
713
|
+
Tags?: Record<string, string> | undefined;
|
|
714
|
+
JobSample?: JobSample | undefined;
|
|
715
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
716
716
|
}
|
|
717
717
|
export interface ListJobsResponse {
|
|
718
718
|
Jobs: Job[] | undefined;
|
|
719
|
-
NextToken?: string;
|
|
719
|
+
NextToken?: string | undefined;
|
|
720
720
|
}
|
|
721
721
|
export interface ListProjectsRequest {
|
|
722
|
-
NextToken?: string;
|
|
723
|
-
MaxResults?: number;
|
|
722
|
+
NextToken?: string | undefined;
|
|
723
|
+
MaxResults?: number | undefined;
|
|
724
724
|
}
|
|
725
725
|
export interface Project {
|
|
726
|
-
AccountId?: string;
|
|
727
|
-
CreateDate?: Date;
|
|
728
|
-
CreatedBy?: string;
|
|
729
|
-
DatasetName?: string;
|
|
730
|
-
LastModifiedDate?: Date;
|
|
731
|
-
LastModifiedBy?: string;
|
|
726
|
+
AccountId?: string | undefined;
|
|
727
|
+
CreateDate?: Date | undefined;
|
|
728
|
+
CreatedBy?: string | undefined;
|
|
729
|
+
DatasetName?: string | undefined;
|
|
730
|
+
LastModifiedDate?: Date | undefined;
|
|
731
|
+
LastModifiedBy?: string | undefined;
|
|
732
732
|
Name: string | undefined;
|
|
733
733
|
RecipeName: string | undefined;
|
|
734
|
-
ResourceArn?: string;
|
|
735
|
-
Sample?: Sample;
|
|
736
|
-
Tags?: Record<string, string
|
|
737
|
-
RoleArn?: string;
|
|
738
|
-
OpenedBy?: string;
|
|
739
|
-
OpenDate?: Date;
|
|
734
|
+
ResourceArn?: string | undefined;
|
|
735
|
+
Sample?: Sample | undefined;
|
|
736
|
+
Tags?: Record<string, string> | undefined;
|
|
737
|
+
RoleArn?: string | undefined;
|
|
738
|
+
OpenedBy?: string | undefined;
|
|
739
|
+
OpenDate?: Date | undefined;
|
|
740
740
|
}
|
|
741
741
|
export interface ListProjectsResponse {
|
|
742
742
|
Projects: Project[] | undefined;
|
|
743
|
-
NextToken?: string;
|
|
743
|
+
NextToken?: string | undefined;
|
|
744
744
|
}
|
|
745
745
|
export interface ListRecipesRequest {
|
|
746
|
-
MaxResults?: number;
|
|
747
|
-
NextToken?: string;
|
|
748
|
-
RecipeVersion?: string;
|
|
746
|
+
MaxResults?: number | undefined;
|
|
747
|
+
NextToken?: string | undefined;
|
|
748
|
+
RecipeVersion?: string | undefined;
|
|
749
749
|
}
|
|
750
750
|
export interface Recipe {
|
|
751
|
-
CreatedBy?: string;
|
|
752
|
-
CreateDate?: Date;
|
|
753
|
-
LastModifiedBy?: string;
|
|
754
|
-
LastModifiedDate?: Date;
|
|
755
|
-
ProjectName?: string;
|
|
756
|
-
PublishedBy?: string;
|
|
757
|
-
PublishedDate?: Date;
|
|
758
|
-
Description?: string;
|
|
759
|
-
Name: string | undefined;
|
|
760
|
-
ResourceArn?: string;
|
|
761
|
-
Steps?: RecipeStep[];
|
|
762
|
-
Tags?: Record<string, string
|
|
763
|
-
RecipeVersion?: string;
|
|
751
|
+
CreatedBy?: string | undefined;
|
|
752
|
+
CreateDate?: Date | undefined;
|
|
753
|
+
LastModifiedBy?: string | undefined;
|
|
754
|
+
LastModifiedDate?: Date | undefined;
|
|
755
|
+
ProjectName?: string | undefined;
|
|
756
|
+
PublishedBy?: string | undefined;
|
|
757
|
+
PublishedDate?: Date | undefined;
|
|
758
|
+
Description?: string | undefined;
|
|
759
|
+
Name: string | undefined;
|
|
760
|
+
ResourceArn?: string | undefined;
|
|
761
|
+
Steps?: RecipeStep[] | undefined;
|
|
762
|
+
Tags?: Record<string, string> | undefined;
|
|
763
|
+
RecipeVersion?: string | undefined;
|
|
764
764
|
}
|
|
765
765
|
export interface ListRecipesResponse {
|
|
766
766
|
Recipes: Recipe[] | undefined;
|
|
767
|
-
NextToken?: string;
|
|
767
|
+
NextToken?: string | undefined;
|
|
768
768
|
}
|
|
769
769
|
export interface ListRecipeVersionsRequest {
|
|
770
|
-
MaxResults?: number;
|
|
771
|
-
NextToken?: string;
|
|
770
|
+
MaxResults?: number | undefined;
|
|
771
|
+
NextToken?: string | undefined;
|
|
772
772
|
Name: string | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface ListRecipeVersionsResponse {
|
|
775
|
-
NextToken?: string;
|
|
775
|
+
NextToken?: string | undefined;
|
|
776
776
|
Recipes: Recipe[] | undefined;
|
|
777
777
|
}
|
|
778
778
|
export interface ListRulesetsRequest {
|
|
779
|
-
TargetArn?: string;
|
|
780
|
-
MaxResults?: number;
|
|
781
|
-
NextToken?: string;
|
|
779
|
+
TargetArn?: string | undefined;
|
|
780
|
+
MaxResults?: number | undefined;
|
|
781
|
+
NextToken?: string | undefined;
|
|
782
782
|
}
|
|
783
783
|
export interface RulesetItem {
|
|
784
|
-
AccountId?: string;
|
|
785
|
-
CreatedBy?: string;
|
|
786
|
-
CreateDate?: Date;
|
|
787
|
-
Description?: string;
|
|
788
|
-
LastModifiedBy?: string;
|
|
789
|
-
LastModifiedDate?: Date;
|
|
790
|
-
Name: string | undefined;
|
|
791
|
-
ResourceArn?: string;
|
|
792
|
-
RuleCount?: number;
|
|
793
|
-
Tags?: Record<string, string
|
|
784
|
+
AccountId?: string | undefined;
|
|
785
|
+
CreatedBy?: string | undefined;
|
|
786
|
+
CreateDate?: Date | undefined;
|
|
787
|
+
Description?: string | undefined;
|
|
788
|
+
LastModifiedBy?: string | undefined;
|
|
789
|
+
LastModifiedDate?: Date | undefined;
|
|
790
|
+
Name: string | undefined;
|
|
791
|
+
ResourceArn?: string | undefined;
|
|
792
|
+
RuleCount?: number | undefined;
|
|
793
|
+
Tags?: Record<string, string> | undefined;
|
|
794
794
|
TargetArn: string | undefined;
|
|
795
795
|
}
|
|
796
796
|
export interface ListRulesetsResponse {
|
|
797
797
|
Rulesets: RulesetItem[] | undefined;
|
|
798
|
-
NextToken?: string;
|
|
798
|
+
NextToken?: string | undefined;
|
|
799
799
|
}
|
|
800
800
|
export interface ListSchedulesRequest {
|
|
801
|
-
JobName?: string;
|
|
802
|
-
MaxResults?: number;
|
|
803
|
-
NextToken?: string;
|
|
801
|
+
JobName?: string | undefined;
|
|
802
|
+
MaxResults?: number | undefined;
|
|
803
|
+
NextToken?: string | undefined;
|
|
804
804
|
}
|
|
805
805
|
export interface Schedule {
|
|
806
|
-
AccountId?: string;
|
|
807
|
-
CreatedBy?: string;
|
|
808
|
-
CreateDate?: Date;
|
|
809
|
-
JobNames?: string[];
|
|
810
|
-
LastModifiedBy?: string;
|
|
811
|
-
LastModifiedDate?: Date;
|
|
812
|
-
ResourceArn?: string;
|
|
813
|
-
CronExpression?: string;
|
|
814
|
-
Tags?: Record<string, string
|
|
806
|
+
AccountId?: string | undefined;
|
|
807
|
+
CreatedBy?: string | undefined;
|
|
808
|
+
CreateDate?: Date | undefined;
|
|
809
|
+
JobNames?: string[] | undefined;
|
|
810
|
+
LastModifiedBy?: string | undefined;
|
|
811
|
+
LastModifiedDate?: Date | undefined;
|
|
812
|
+
ResourceArn?: string | undefined;
|
|
813
|
+
CronExpression?: string | undefined;
|
|
814
|
+
Tags?: Record<string, string> | undefined;
|
|
815
815
|
Name: string | undefined;
|
|
816
816
|
}
|
|
817
817
|
export interface ListSchedulesResponse {
|
|
818
818
|
Schedules: Schedule[] | undefined;
|
|
819
|
-
NextToken?: string;
|
|
819
|
+
NextToken?: string | undefined;
|
|
820
820
|
}
|
|
821
821
|
export interface ListTagsForResourceRequest {
|
|
822
822
|
ResourceArn: string | undefined;
|
|
823
823
|
}
|
|
824
824
|
export interface ListTagsForResourceResponse {
|
|
825
|
-
Tags?: Record<string, string
|
|
825
|
+
Tags?: Record<string, string> | undefined;
|
|
826
826
|
}
|
|
827
827
|
export interface PublishRecipeRequest {
|
|
828
|
-
Description?: string;
|
|
828
|
+
Description?: string | undefined;
|
|
829
829
|
Name: string | undefined;
|
|
830
830
|
}
|
|
831
831
|
export interface PublishRecipeResponse {
|
|
@@ -833,24 +833,24 @@ export interface PublishRecipeResponse {
|
|
|
833
833
|
}
|
|
834
834
|
export interface ViewFrame {
|
|
835
835
|
StartColumnIndex: number | undefined;
|
|
836
|
-
ColumnRange?: number;
|
|
837
|
-
HiddenColumns?: string[];
|
|
838
|
-
StartRowIndex?: number;
|
|
839
|
-
RowRange?: number;
|
|
840
|
-
Analytics?: AnalyticsMode;
|
|
836
|
+
ColumnRange?: number | undefined;
|
|
837
|
+
HiddenColumns?: string[] | undefined;
|
|
838
|
+
StartRowIndex?: number | undefined;
|
|
839
|
+
RowRange?: number | undefined;
|
|
840
|
+
Analytics?: AnalyticsMode | undefined;
|
|
841
841
|
}
|
|
842
842
|
export interface SendProjectSessionActionRequest {
|
|
843
|
-
Preview?: boolean;
|
|
843
|
+
Preview?: boolean | undefined;
|
|
844
844
|
Name: string | undefined;
|
|
845
|
-
RecipeStep?: RecipeStep;
|
|
846
|
-
StepIndex?: number;
|
|
847
|
-
ClientSessionId?: string;
|
|
848
|
-
ViewFrame?: ViewFrame;
|
|
845
|
+
RecipeStep?: RecipeStep | undefined;
|
|
846
|
+
StepIndex?: number | undefined;
|
|
847
|
+
ClientSessionId?: string | undefined;
|
|
848
|
+
ViewFrame?: ViewFrame | undefined;
|
|
849
849
|
}
|
|
850
850
|
export interface SendProjectSessionActionResponse {
|
|
851
|
-
Result?: string;
|
|
851
|
+
Result?: string | undefined;
|
|
852
852
|
Name: string | undefined;
|
|
853
|
-
ActionId?: number;
|
|
853
|
+
ActionId?: number | undefined;
|
|
854
854
|
}
|
|
855
855
|
export interface StartJobRunRequest {
|
|
856
856
|
Name: string | undefined;
|
|
@@ -860,11 +860,11 @@ export interface StartJobRunResponse {
|
|
|
860
860
|
}
|
|
861
861
|
export interface StartProjectSessionRequest {
|
|
862
862
|
Name: string | undefined;
|
|
863
|
-
AssumeControl?: boolean;
|
|
863
|
+
AssumeControl?: boolean | undefined;
|
|
864
864
|
}
|
|
865
865
|
export interface StartProjectSessionResponse {
|
|
866
866
|
Name: string | undefined;
|
|
867
|
-
ClientSessionId?: string;
|
|
867
|
+
ClientSessionId?: string | undefined;
|
|
868
868
|
}
|
|
869
869
|
export interface StopJobRunRequest {
|
|
870
870
|
Name: string | undefined;
|
|
@@ -885,74 +885,74 @@ export interface UntagResourceRequest {
|
|
|
885
885
|
export interface UntagResourceResponse {}
|
|
886
886
|
export interface UpdateDatasetRequest {
|
|
887
887
|
Name: string | undefined;
|
|
888
|
-
Format?: InputFormat;
|
|
889
|
-
FormatOptions?: FormatOptions;
|
|
888
|
+
Format?: InputFormat | undefined;
|
|
889
|
+
FormatOptions?: FormatOptions | undefined;
|
|
890
890
|
Input: Input | undefined;
|
|
891
|
-
PathOptions?: PathOptions;
|
|
891
|
+
PathOptions?: PathOptions | undefined;
|
|
892
892
|
}
|
|
893
893
|
export interface UpdateDatasetResponse {
|
|
894
894
|
Name: string | undefined;
|
|
895
895
|
}
|
|
896
896
|
export interface UpdateProfileJobRequest {
|
|
897
|
-
Configuration?: ProfileConfiguration;
|
|
898
|
-
EncryptionKeyArn?: string;
|
|
899
|
-
EncryptionMode?: EncryptionMode;
|
|
897
|
+
Configuration?: ProfileConfiguration | undefined;
|
|
898
|
+
EncryptionKeyArn?: string | undefined;
|
|
899
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
900
900
|
Name: string | undefined;
|
|
901
|
-
LogSubscription?: LogSubscription;
|
|
902
|
-
MaxCapacity?: number;
|
|
903
|
-
MaxRetries?: number;
|
|
901
|
+
LogSubscription?: LogSubscription | undefined;
|
|
902
|
+
MaxCapacity?: number | undefined;
|
|
903
|
+
MaxRetries?: number | undefined;
|
|
904
904
|
OutputLocation: S3Location | undefined;
|
|
905
|
-
ValidationConfigurations?: ValidationConfiguration[];
|
|
905
|
+
ValidationConfigurations?: ValidationConfiguration[] | undefined;
|
|
906
906
|
RoleArn: string | undefined;
|
|
907
|
-
Timeout?: number;
|
|
908
|
-
JobSample?: JobSample;
|
|
907
|
+
Timeout?: number | undefined;
|
|
908
|
+
JobSample?: JobSample | undefined;
|
|
909
909
|
}
|
|
910
910
|
export interface UpdateProfileJobResponse {
|
|
911
911
|
Name: string | undefined;
|
|
912
912
|
}
|
|
913
913
|
export interface UpdateProjectRequest {
|
|
914
|
-
Sample?: Sample;
|
|
914
|
+
Sample?: Sample | undefined;
|
|
915
915
|
RoleArn: string | undefined;
|
|
916
916
|
Name: string | undefined;
|
|
917
917
|
}
|
|
918
918
|
export interface UpdateProjectResponse {
|
|
919
|
-
LastModifiedDate?: Date;
|
|
919
|
+
LastModifiedDate?: Date | undefined;
|
|
920
920
|
Name: string | undefined;
|
|
921
921
|
}
|
|
922
922
|
export interface UpdateRecipeRequest {
|
|
923
|
-
Description?: string;
|
|
923
|
+
Description?: string | undefined;
|
|
924
924
|
Name: string | undefined;
|
|
925
|
-
Steps?: RecipeStep[];
|
|
925
|
+
Steps?: RecipeStep[] | undefined;
|
|
926
926
|
}
|
|
927
927
|
export interface UpdateRecipeResponse {
|
|
928
928
|
Name: string | undefined;
|
|
929
929
|
}
|
|
930
930
|
export interface UpdateRecipeJobRequest {
|
|
931
|
-
EncryptionKeyArn?: string;
|
|
932
|
-
EncryptionMode?: EncryptionMode;
|
|
933
|
-
Name: string | undefined;
|
|
934
|
-
LogSubscription?: LogSubscription;
|
|
935
|
-
MaxCapacity?: number;
|
|
936
|
-
MaxRetries?: number;
|
|
937
|
-
Outputs?: Output[];
|
|
938
|
-
DataCatalogOutputs?: DataCatalogOutput[];
|
|
939
|
-
DatabaseOutputs?: DatabaseOutput[];
|
|
931
|
+
EncryptionKeyArn?: string | undefined;
|
|
932
|
+
EncryptionMode?: EncryptionMode | undefined;
|
|
933
|
+
Name: string | undefined;
|
|
934
|
+
LogSubscription?: LogSubscription | undefined;
|
|
935
|
+
MaxCapacity?: number | undefined;
|
|
936
|
+
MaxRetries?: number | undefined;
|
|
937
|
+
Outputs?: Output[] | undefined;
|
|
938
|
+
DataCatalogOutputs?: DataCatalogOutput[] | undefined;
|
|
939
|
+
DatabaseOutputs?: DatabaseOutput[] | undefined;
|
|
940
940
|
RoleArn: string | undefined;
|
|
941
|
-
Timeout?: number;
|
|
941
|
+
Timeout?: number | undefined;
|
|
942
942
|
}
|
|
943
943
|
export interface UpdateRecipeJobResponse {
|
|
944
944
|
Name: string | undefined;
|
|
945
945
|
}
|
|
946
946
|
export interface UpdateRulesetRequest {
|
|
947
947
|
Name: string | undefined;
|
|
948
|
-
Description?: string;
|
|
948
|
+
Description?: string | undefined;
|
|
949
949
|
Rules: Rule[] | undefined;
|
|
950
950
|
}
|
|
951
951
|
export interface UpdateRulesetResponse {
|
|
952
952
|
Name: string | undefined;
|
|
953
953
|
}
|
|
954
954
|
export interface UpdateScheduleRequest {
|
|
955
|
-
JobNames?: string[];
|
|
955
|
+
JobNames?: string[] | undefined;
|
|
956
956
|
CronExpression: string | undefined;
|
|
957
957
|
Name: string | undefined;
|
|
958
958
|
}
|