@aws-sdk/client-machine-learning 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.
@@ -9,8 +9,8 @@ export declare const TaggableResourceType: {
9
9
  export type TaggableResourceType =
10
10
  (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
11
11
  export interface Tag {
12
- Key?: string;
13
- Value?: string;
12
+ Key?: string | undefined;
13
+ Value?: string | undefined;
14
14
  }
15
15
  export interface AddTagsInput {
16
16
  Tags: Tag[] | undefined;
@@ -18,13 +18,13 @@ export interface AddTagsInput {
18
18
  ResourceType: TaggableResourceType | undefined;
19
19
  }
20
20
  export interface AddTagsOutput {
21
- ResourceId?: string;
22
- ResourceType?: TaggableResourceType;
21
+ ResourceId?: string | undefined;
22
+ ResourceType?: TaggableResourceType | undefined;
23
23
  }
24
24
  export declare class InternalServerException extends __BaseException {
25
25
  readonly name: "InternalServerException";
26
26
  readonly $fault: "server";
27
- code?: number;
27
+ code?: number | undefined;
28
28
  constructor(
29
29
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
30
30
  );
@@ -32,7 +32,7 @@ export declare class InternalServerException extends __BaseException {
32
32
  export declare class InvalidInputException extends __BaseException {
33
33
  readonly name: "InvalidInputException";
34
34
  readonly $fault: "client";
35
- code?: number;
35
+ code?: number | undefined;
36
36
  constructor(
37
37
  opts: __ExceptionOptionType<InvalidInputException, __BaseException>
38
38
  );
@@ -47,7 +47,7 @@ export declare class InvalidTagException extends __BaseException {
47
47
  export declare class ResourceNotFoundException extends __BaseException {
48
48
  readonly name: "ResourceNotFoundException";
49
49
  readonly $fault: "client";
50
- code?: number;
50
+ code?: number | undefined;
51
51
  constructor(
52
52
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
53
53
  );
@@ -65,18 +65,18 @@ export declare const Algorithm: {
65
65
  export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
66
66
  export interface CreateBatchPredictionInput {
67
67
  BatchPredictionId: string | undefined;
68
- BatchPredictionName?: string;
68
+ BatchPredictionName?: string | undefined;
69
69
  MLModelId: string | undefined;
70
70
  BatchPredictionDataSourceId: string | undefined;
71
71
  OutputUri: string | undefined;
72
72
  }
73
73
  export interface CreateBatchPredictionOutput {
74
- BatchPredictionId?: string;
74
+ BatchPredictionId?: string | undefined;
75
75
  }
76
76
  export declare class IdempotentParameterMismatchException extends __BaseException {
77
77
  readonly name: "IdempotentParameterMismatchException";
78
78
  readonly $fault: "client";
79
- code?: number;
79
+ code?: number | undefined;
80
80
  constructor(
81
81
  opts: __ExceptionOptionType<
82
82
  IdempotentParameterMismatchException,
@@ -97,9 +97,9 @@ export interface RDSDataSpec {
97
97
  SelectSqlQuery: string | undefined;
98
98
  DatabaseCredentials: RDSDatabaseCredentials | undefined;
99
99
  S3StagingLocation: string | undefined;
100
- DataRearrangement?: string;
101
- DataSchema?: string;
102
- DataSchemaUri?: string;
100
+ DataRearrangement?: string | undefined;
101
+ DataSchema?: string | undefined;
102
+ DataSchemaUri?: string | undefined;
103
103
  ResourceRole: string | undefined;
104
104
  ServiceRole: string | undefined;
105
105
  SubnetId: string | undefined;
@@ -107,13 +107,13 @@ export interface RDSDataSpec {
107
107
  }
108
108
  export interface CreateDataSourceFromRDSInput {
109
109
  DataSourceId: string | undefined;
110
- DataSourceName?: string;
110
+ DataSourceName?: string | undefined;
111
111
  RDSData: RDSDataSpec | undefined;
112
112
  RoleARN: string | undefined;
113
- ComputeStatistics?: boolean;
113
+ ComputeStatistics?: boolean | undefined;
114
114
  }
115
115
  export interface CreateDataSourceFromRDSOutput {
116
- DataSourceId?: string;
116
+ DataSourceId?: string | undefined;
117
117
  }
118
118
  export interface RedshiftDatabaseCredentials {
119
119
  Username: string | undefined;
@@ -128,43 +128,43 @@ export interface RedshiftDataSpec {
128
128
  SelectSqlQuery: string | undefined;
129
129
  DatabaseCredentials: RedshiftDatabaseCredentials | undefined;
130
130
  S3StagingLocation: string | undefined;
131
- DataRearrangement?: string;
132
- DataSchema?: string;
133
- DataSchemaUri?: string;
131
+ DataRearrangement?: string | undefined;
132
+ DataSchema?: string | undefined;
133
+ DataSchemaUri?: string | undefined;
134
134
  }
135
135
  export interface CreateDataSourceFromRedshiftInput {
136
136
  DataSourceId: string | undefined;
137
- DataSourceName?: string;
137
+ DataSourceName?: string | undefined;
138
138
  DataSpec: RedshiftDataSpec | undefined;
139
139
  RoleARN: string | undefined;
140
- ComputeStatistics?: boolean;
140
+ ComputeStatistics?: boolean | undefined;
141
141
  }
142
142
  export interface CreateDataSourceFromRedshiftOutput {
143
- DataSourceId?: string;
143
+ DataSourceId?: string | undefined;
144
144
  }
145
145
  export interface S3DataSpec {
146
146
  DataLocationS3: string | undefined;
147
- DataRearrangement?: string;
148
- DataSchema?: string;
149
- DataSchemaLocationS3?: string;
147
+ DataRearrangement?: string | undefined;
148
+ DataSchema?: string | undefined;
149
+ DataSchemaLocationS3?: string | undefined;
150
150
  }
151
151
  export interface CreateDataSourceFromS3Input {
152
152
  DataSourceId: string | undefined;
153
- DataSourceName?: string;
153
+ DataSourceName?: string | undefined;
154
154
  DataSpec: S3DataSpec | undefined;
155
- ComputeStatistics?: boolean;
155
+ ComputeStatistics?: boolean | undefined;
156
156
  }
157
157
  export interface CreateDataSourceFromS3Output {
158
- DataSourceId?: string;
158
+ DataSourceId?: string | undefined;
159
159
  }
160
160
  export interface CreateEvaluationInput {
161
161
  EvaluationId: string | undefined;
162
- EvaluationName?: string;
162
+ EvaluationName?: string | undefined;
163
163
  MLModelId: string | undefined;
164
164
  EvaluationDataSourceId: string | undefined;
165
165
  }
166
166
  export interface CreateEvaluationOutput {
167
- EvaluationId?: string;
167
+ EvaluationId?: string | undefined;
168
168
  }
169
169
  export declare const MLModelType: {
170
170
  readonly BINARY: "BINARY";
@@ -174,15 +174,15 @@ export declare const MLModelType: {
174
174
  export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
175
175
  export interface CreateMLModelInput {
176
176
  MLModelId: string | undefined;
177
- MLModelName?: string;
177
+ MLModelName?: string | undefined;
178
178
  MLModelType: MLModelType | undefined;
179
- Parameters?: Record<string, string>;
179
+ Parameters?: Record<string, string> | undefined;
180
180
  TrainingDataSourceId: string | undefined;
181
- Recipe?: string;
182
- RecipeUri?: string;
181
+ Recipe?: string | undefined;
182
+ RecipeUri?: string | undefined;
183
183
  }
184
184
  export interface CreateMLModelOutput {
185
- MLModelId?: string;
185
+ MLModelId?: string | undefined;
186
186
  }
187
187
  export interface CreateRealtimeEndpointInput {
188
188
  MLModelId: string | undefined;
@@ -196,45 +196,45 @@ export declare const RealtimeEndpointStatus: {
196
196
  export type RealtimeEndpointStatus =
197
197
  (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
198
198
  export interface RealtimeEndpointInfo {
199
- PeakRequestsPerSecond?: number;
200
- CreatedAt?: Date;
201
- EndpointUrl?: string;
202
- EndpointStatus?: RealtimeEndpointStatus;
199
+ PeakRequestsPerSecond?: number | undefined;
200
+ CreatedAt?: Date | undefined;
201
+ EndpointUrl?: string | undefined;
202
+ EndpointStatus?: RealtimeEndpointStatus | undefined;
203
203
  }
204
204
  export interface CreateRealtimeEndpointOutput {
205
- MLModelId?: string;
206
- RealtimeEndpointInfo?: RealtimeEndpointInfo;
205
+ MLModelId?: string | undefined;
206
+ RealtimeEndpointInfo?: RealtimeEndpointInfo | undefined;
207
207
  }
208
208
  export interface DeleteBatchPredictionInput {
209
209
  BatchPredictionId: string | undefined;
210
210
  }
211
211
  export interface DeleteBatchPredictionOutput {
212
- BatchPredictionId?: string;
212
+ BatchPredictionId?: string | undefined;
213
213
  }
214
214
  export interface DeleteDataSourceInput {
215
215
  DataSourceId: string | undefined;
216
216
  }
217
217
  export interface DeleteDataSourceOutput {
218
- DataSourceId?: string;
218
+ DataSourceId?: string | undefined;
219
219
  }
220
220
  export interface DeleteEvaluationInput {
221
221
  EvaluationId: string | undefined;
222
222
  }
223
223
  export interface DeleteEvaluationOutput {
224
- EvaluationId?: string;
224
+ EvaluationId?: string | undefined;
225
225
  }
226
226
  export interface DeleteMLModelInput {
227
227
  MLModelId: string | undefined;
228
228
  }
229
229
  export interface DeleteMLModelOutput {
230
- MLModelId?: string;
230
+ MLModelId?: string | undefined;
231
231
  }
232
232
  export interface DeleteRealtimeEndpointInput {
233
233
  MLModelId: string | undefined;
234
234
  }
235
235
  export interface DeleteRealtimeEndpointOutput {
236
- MLModelId?: string;
237
- RealtimeEndpointInfo?: RealtimeEndpointInfo;
236
+ MLModelId?: string | undefined;
237
+ RealtimeEndpointInfo?: RealtimeEndpointInfo | undefined;
238
238
  }
239
239
  export interface DeleteTagsInput {
240
240
  TagKeys: string[] | undefined;
@@ -242,8 +242,8 @@ export interface DeleteTagsInput {
242
242
  ResourceType: TaggableResourceType | undefined;
243
243
  }
244
244
  export interface DeleteTagsOutput {
245
- ResourceId?: string;
246
- ResourceType?: TaggableResourceType;
245
+ ResourceId?: string | undefined;
246
+ ResourceType?: TaggableResourceType | undefined;
247
247
  }
248
248
  export declare const BatchPredictionFilterVariable: {
249
249
  readonly CREATED_AT: "CreatedAt";
@@ -263,17 +263,17 @@ export declare const SortOrder: {
263
263
  };
264
264
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
265
265
  export interface DescribeBatchPredictionsInput {
266
- FilterVariable?: BatchPredictionFilterVariable;
267
- EQ?: string;
268
- GT?: string;
269
- LT?: string;
270
- GE?: string;
271
- LE?: string;
272
- NE?: string;
273
- Prefix?: string;
274
- SortOrder?: SortOrder;
275
- NextToken?: string;
276
- Limit?: number;
266
+ FilterVariable?: BatchPredictionFilterVariable | undefined;
267
+ EQ?: string | undefined;
268
+ GT?: string | undefined;
269
+ LT?: string | undefined;
270
+ GE?: string | undefined;
271
+ LE?: string | undefined;
272
+ NE?: string | undefined;
273
+ Prefix?: string | undefined;
274
+ SortOrder?: SortOrder | undefined;
275
+ NextToken?: string | undefined;
276
+ Limit?: number | undefined;
277
277
  }
278
278
  export declare const EntityStatus: {
279
279
  readonly COMPLETED: "COMPLETED";
@@ -284,26 +284,26 @@ export declare const EntityStatus: {
284
284
  };
285
285
  export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
286
286
  export interface BatchPrediction {
287
- BatchPredictionId?: string;
288
- MLModelId?: string;
289
- BatchPredictionDataSourceId?: string;
290
- InputDataLocationS3?: string;
291
- CreatedByIamUser?: string;
292
- CreatedAt?: Date;
293
- LastUpdatedAt?: Date;
294
- Name?: string;
295
- Status?: EntityStatus;
296
- OutputUri?: string;
297
- Message?: string;
298
- ComputeTime?: number;
299
- FinishedAt?: Date;
300
- StartedAt?: Date;
301
- TotalRecordCount?: number;
302
- InvalidRecordCount?: number;
287
+ BatchPredictionId?: string | undefined;
288
+ MLModelId?: string | undefined;
289
+ BatchPredictionDataSourceId?: string | undefined;
290
+ InputDataLocationS3?: string | undefined;
291
+ CreatedByIamUser?: string | undefined;
292
+ CreatedAt?: Date | undefined;
293
+ LastUpdatedAt?: Date | undefined;
294
+ Name?: string | undefined;
295
+ Status?: EntityStatus | undefined;
296
+ OutputUri?: string | undefined;
297
+ Message?: string | undefined;
298
+ ComputeTime?: number | undefined;
299
+ FinishedAt?: Date | undefined;
300
+ StartedAt?: Date | undefined;
301
+ TotalRecordCount?: number | undefined;
302
+ InvalidRecordCount?: number | undefined;
303
303
  }
304
304
  export interface DescribeBatchPredictionsOutput {
305
- Results?: BatchPrediction[];
306
- NextToken?: string;
305
+ Results?: BatchPrediction[] | undefined;
306
+ NextToken?: string | undefined;
307
307
  }
308
308
  export declare const DataSourceFilterVariable: {
309
309
  readonly CREATED_AT: "CreatedAt";
@@ -316,54 +316,54 @@ export declare const DataSourceFilterVariable: {
316
316
  export type DataSourceFilterVariable =
317
317
  (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
318
318
  export interface DescribeDataSourcesInput {
319
- FilterVariable?: DataSourceFilterVariable;
320
- EQ?: string;
321
- GT?: string;
322
- LT?: string;
323
- GE?: string;
324
- LE?: string;
325
- NE?: string;
326
- Prefix?: string;
327
- SortOrder?: SortOrder;
328
- NextToken?: string;
329
- Limit?: number;
319
+ FilterVariable?: DataSourceFilterVariable | undefined;
320
+ EQ?: string | undefined;
321
+ GT?: string | undefined;
322
+ LT?: string | undefined;
323
+ GE?: string | undefined;
324
+ LE?: string | undefined;
325
+ NE?: string | undefined;
326
+ Prefix?: string | undefined;
327
+ SortOrder?: SortOrder | undefined;
328
+ NextToken?: string | undefined;
329
+ Limit?: number | undefined;
330
330
  }
331
331
  export interface RDSMetadata {
332
- Database?: RDSDatabase;
333
- DatabaseUserName?: string;
334
- SelectSqlQuery?: string;
335
- ResourceRole?: string;
336
- ServiceRole?: string;
337
- DataPipelineId?: string;
332
+ Database?: RDSDatabase | undefined;
333
+ DatabaseUserName?: string | undefined;
334
+ SelectSqlQuery?: string | undefined;
335
+ ResourceRole?: string | undefined;
336
+ ServiceRole?: string | undefined;
337
+ DataPipelineId?: string | undefined;
338
338
  }
339
339
  export interface RedshiftMetadata {
340
- RedshiftDatabase?: RedshiftDatabase;
341
- DatabaseUserName?: string;
342
- SelectSqlQuery?: string;
340
+ RedshiftDatabase?: RedshiftDatabase | undefined;
341
+ DatabaseUserName?: string | undefined;
342
+ SelectSqlQuery?: string | undefined;
343
343
  }
344
344
  export interface DataSource {
345
- DataSourceId?: string;
346
- DataLocationS3?: string;
347
- DataRearrangement?: string;
348
- CreatedByIamUser?: string;
349
- CreatedAt?: Date;
350
- LastUpdatedAt?: Date;
351
- DataSizeInBytes?: number;
352
- NumberOfFiles?: number;
353
- Name?: string;
354
- Status?: EntityStatus;
355
- Message?: string;
356
- RedshiftMetadata?: RedshiftMetadata;
357
- RDSMetadata?: RDSMetadata;
358
- RoleARN?: string;
359
- ComputeStatistics?: boolean;
360
- ComputeTime?: number;
361
- FinishedAt?: Date;
362
- StartedAt?: Date;
345
+ DataSourceId?: string | undefined;
346
+ DataLocationS3?: string | undefined;
347
+ DataRearrangement?: string | undefined;
348
+ CreatedByIamUser?: string | undefined;
349
+ CreatedAt?: Date | undefined;
350
+ LastUpdatedAt?: Date | undefined;
351
+ DataSizeInBytes?: number | undefined;
352
+ NumberOfFiles?: number | undefined;
353
+ Name?: string | undefined;
354
+ Status?: EntityStatus | undefined;
355
+ Message?: string | undefined;
356
+ RedshiftMetadata?: RedshiftMetadata | undefined;
357
+ RDSMetadata?: RDSMetadata | undefined;
358
+ RoleARN?: string | undefined;
359
+ ComputeStatistics?: boolean | undefined;
360
+ ComputeTime?: number | undefined;
361
+ FinishedAt?: Date | undefined;
362
+ StartedAt?: Date | undefined;
363
363
  }
364
364
  export interface DescribeDataSourcesOutput {
365
- Results?: DataSource[];
366
- NextToken?: string;
365
+ Results?: DataSource[] | undefined;
366
+ NextToken?: string | undefined;
367
367
  }
368
368
  export declare const EvaluationFilterVariable: {
369
369
  readonly CREATED_AT: "CreatedAt";
@@ -378,40 +378,40 @@ export declare const EvaluationFilterVariable: {
378
378
  export type EvaluationFilterVariable =
379
379
  (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
380
380
  export interface DescribeEvaluationsInput {
381
- FilterVariable?: EvaluationFilterVariable;
382
- EQ?: string;
383
- GT?: string;
384
- LT?: string;
385
- GE?: string;
386
- LE?: string;
387
- NE?: string;
388
- Prefix?: string;
389
- SortOrder?: SortOrder;
390
- NextToken?: string;
391
- Limit?: number;
381
+ FilterVariable?: EvaluationFilterVariable | undefined;
382
+ EQ?: string | undefined;
383
+ GT?: string | undefined;
384
+ LT?: string | undefined;
385
+ GE?: string | undefined;
386
+ LE?: string | undefined;
387
+ NE?: string | undefined;
388
+ Prefix?: string | undefined;
389
+ SortOrder?: SortOrder | undefined;
390
+ NextToken?: string | undefined;
391
+ Limit?: number | undefined;
392
392
  }
393
393
  export interface PerformanceMetrics {
394
- Properties?: Record<string, string>;
394
+ Properties?: Record<string, string> | undefined;
395
395
  }
396
396
  export interface Evaluation {
397
- EvaluationId?: string;
398
- MLModelId?: string;
399
- EvaluationDataSourceId?: string;
400
- InputDataLocationS3?: string;
401
- CreatedByIamUser?: string;
402
- CreatedAt?: Date;
403
- LastUpdatedAt?: Date;
404
- Name?: string;
405
- Status?: EntityStatus;
406
- PerformanceMetrics?: PerformanceMetrics;
407
- Message?: string;
408
- ComputeTime?: number;
409
- FinishedAt?: Date;
410
- StartedAt?: Date;
397
+ EvaluationId?: string | undefined;
398
+ MLModelId?: string | undefined;
399
+ EvaluationDataSourceId?: string | undefined;
400
+ InputDataLocationS3?: string | undefined;
401
+ CreatedByIamUser?: string | undefined;
402
+ CreatedAt?: Date | undefined;
403
+ LastUpdatedAt?: Date | undefined;
404
+ Name?: string | undefined;
405
+ Status?: EntityStatus | undefined;
406
+ PerformanceMetrics?: PerformanceMetrics | undefined;
407
+ Message?: string | undefined;
408
+ ComputeTime?: number | undefined;
409
+ FinishedAt?: Date | undefined;
410
+ StartedAt?: Date | undefined;
411
411
  }
412
412
  export interface DescribeEvaluationsOutput {
413
- Results?: Evaluation[];
414
- NextToken?: string;
413
+ Results?: Evaluation[] | undefined;
414
+ NextToken?: string | undefined;
415
415
  }
416
416
  export declare const MLModelFilterVariable: {
417
417
  readonly ALGORITHM: "Algorithm";
@@ -428,151 +428,151 @@ export declare const MLModelFilterVariable: {
428
428
  export type MLModelFilterVariable =
429
429
  (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
430
430
  export interface DescribeMLModelsInput {
431
- FilterVariable?: MLModelFilterVariable;
432
- EQ?: string;
433
- GT?: string;
434
- LT?: string;
435
- GE?: string;
436
- LE?: string;
437
- NE?: string;
438
- Prefix?: string;
439
- SortOrder?: SortOrder;
440
- NextToken?: string;
441
- Limit?: number;
431
+ FilterVariable?: MLModelFilterVariable | undefined;
432
+ EQ?: string | undefined;
433
+ GT?: string | undefined;
434
+ LT?: string | undefined;
435
+ GE?: string | undefined;
436
+ LE?: string | undefined;
437
+ NE?: string | undefined;
438
+ Prefix?: string | undefined;
439
+ SortOrder?: SortOrder | undefined;
440
+ NextToken?: string | undefined;
441
+ Limit?: number | undefined;
442
442
  }
443
443
  export interface MLModel {
444
- MLModelId?: string;
445
- TrainingDataSourceId?: string;
446
- CreatedByIamUser?: string;
447
- CreatedAt?: Date;
448
- LastUpdatedAt?: Date;
449
- Name?: string;
450
- Status?: EntityStatus;
451
- SizeInBytes?: number;
452
- EndpointInfo?: RealtimeEndpointInfo;
453
- TrainingParameters?: Record<string, string>;
454
- InputDataLocationS3?: string;
455
- Algorithm?: Algorithm;
456
- MLModelType?: MLModelType;
457
- ScoreThreshold?: number;
458
- ScoreThresholdLastUpdatedAt?: Date;
459
- Message?: string;
460
- ComputeTime?: number;
461
- FinishedAt?: Date;
462
- StartedAt?: Date;
444
+ MLModelId?: string | undefined;
445
+ TrainingDataSourceId?: string | undefined;
446
+ CreatedByIamUser?: string | undefined;
447
+ CreatedAt?: Date | undefined;
448
+ LastUpdatedAt?: Date | undefined;
449
+ Name?: string | undefined;
450
+ Status?: EntityStatus | undefined;
451
+ SizeInBytes?: number | undefined;
452
+ EndpointInfo?: RealtimeEndpointInfo | undefined;
453
+ TrainingParameters?: Record<string, string> | undefined;
454
+ InputDataLocationS3?: string | undefined;
455
+ Algorithm?: Algorithm | undefined;
456
+ MLModelType?: MLModelType | undefined;
457
+ ScoreThreshold?: number | undefined;
458
+ ScoreThresholdLastUpdatedAt?: Date | undefined;
459
+ Message?: string | undefined;
460
+ ComputeTime?: number | undefined;
461
+ FinishedAt?: Date | undefined;
462
+ StartedAt?: Date | undefined;
463
463
  }
464
464
  export interface DescribeMLModelsOutput {
465
- Results?: MLModel[];
466
- NextToken?: string;
465
+ Results?: MLModel[] | undefined;
466
+ NextToken?: string | undefined;
467
467
  }
468
468
  export interface DescribeTagsInput {
469
469
  ResourceId: string | undefined;
470
470
  ResourceType: TaggableResourceType | undefined;
471
471
  }
472
472
  export interface DescribeTagsOutput {
473
- ResourceId?: string;
474
- ResourceType?: TaggableResourceType;
475
- Tags?: Tag[];
473
+ ResourceId?: string | undefined;
474
+ ResourceType?: TaggableResourceType | undefined;
475
+ Tags?: Tag[] | undefined;
476
476
  }
477
477
  export interface GetBatchPredictionInput {
478
478
  BatchPredictionId: string | undefined;
479
479
  }
480
480
  export interface GetBatchPredictionOutput {
481
- BatchPredictionId?: string;
482
- MLModelId?: string;
483
- BatchPredictionDataSourceId?: string;
484
- InputDataLocationS3?: string;
485
- CreatedByIamUser?: string;
486
- CreatedAt?: Date;
487
- LastUpdatedAt?: Date;
488
- Name?: string;
489
- Status?: EntityStatus;
490
- OutputUri?: string;
491
- LogUri?: string;
492
- Message?: string;
493
- ComputeTime?: number;
494
- FinishedAt?: Date;
495
- StartedAt?: Date;
496
- TotalRecordCount?: number;
497
- InvalidRecordCount?: number;
481
+ BatchPredictionId?: string | undefined;
482
+ MLModelId?: string | undefined;
483
+ BatchPredictionDataSourceId?: string | undefined;
484
+ InputDataLocationS3?: string | undefined;
485
+ CreatedByIamUser?: string | undefined;
486
+ CreatedAt?: Date | undefined;
487
+ LastUpdatedAt?: Date | undefined;
488
+ Name?: string | undefined;
489
+ Status?: EntityStatus | undefined;
490
+ OutputUri?: string | undefined;
491
+ LogUri?: string | undefined;
492
+ Message?: string | undefined;
493
+ ComputeTime?: number | undefined;
494
+ FinishedAt?: Date | undefined;
495
+ StartedAt?: Date | undefined;
496
+ TotalRecordCount?: number | undefined;
497
+ InvalidRecordCount?: number | undefined;
498
498
  }
499
499
  export interface GetDataSourceInput {
500
500
  DataSourceId: string | undefined;
501
- Verbose?: boolean;
501
+ Verbose?: boolean | undefined;
502
502
  }
503
503
  export interface GetDataSourceOutput {
504
- DataSourceId?: string;
505
- DataLocationS3?: string;
506
- DataRearrangement?: string;
507
- CreatedByIamUser?: string;
508
- CreatedAt?: Date;
509
- LastUpdatedAt?: Date;
510
- DataSizeInBytes?: number;
511
- NumberOfFiles?: number;
512
- Name?: string;
513
- Status?: EntityStatus;
514
- LogUri?: string;
515
- Message?: string;
516
- RedshiftMetadata?: RedshiftMetadata;
517
- RDSMetadata?: RDSMetadata;
518
- RoleARN?: string;
519
- ComputeStatistics?: boolean;
520
- ComputeTime?: number;
521
- FinishedAt?: Date;
522
- StartedAt?: Date;
523
- DataSourceSchema?: string;
504
+ DataSourceId?: string | undefined;
505
+ DataLocationS3?: string | undefined;
506
+ DataRearrangement?: string | undefined;
507
+ CreatedByIamUser?: string | undefined;
508
+ CreatedAt?: Date | undefined;
509
+ LastUpdatedAt?: Date | undefined;
510
+ DataSizeInBytes?: number | undefined;
511
+ NumberOfFiles?: number | undefined;
512
+ Name?: string | undefined;
513
+ Status?: EntityStatus | undefined;
514
+ LogUri?: string | undefined;
515
+ Message?: string | undefined;
516
+ RedshiftMetadata?: RedshiftMetadata | undefined;
517
+ RDSMetadata?: RDSMetadata | undefined;
518
+ RoleARN?: string | undefined;
519
+ ComputeStatistics?: boolean | undefined;
520
+ ComputeTime?: number | undefined;
521
+ FinishedAt?: Date | undefined;
522
+ StartedAt?: Date | undefined;
523
+ DataSourceSchema?: string | undefined;
524
524
  }
525
525
  export interface GetEvaluationInput {
526
526
  EvaluationId: string | undefined;
527
527
  }
528
528
  export interface GetEvaluationOutput {
529
- EvaluationId?: string;
530
- MLModelId?: string;
531
- EvaluationDataSourceId?: string;
532
- InputDataLocationS3?: string;
533
- CreatedByIamUser?: string;
534
- CreatedAt?: Date;
535
- LastUpdatedAt?: Date;
536
- Name?: string;
537
- Status?: EntityStatus;
538
- PerformanceMetrics?: PerformanceMetrics;
539
- LogUri?: string;
540
- Message?: string;
541
- ComputeTime?: number;
542
- FinishedAt?: Date;
543
- StartedAt?: Date;
529
+ EvaluationId?: string | undefined;
530
+ MLModelId?: string | undefined;
531
+ EvaluationDataSourceId?: string | undefined;
532
+ InputDataLocationS3?: string | undefined;
533
+ CreatedByIamUser?: string | undefined;
534
+ CreatedAt?: Date | undefined;
535
+ LastUpdatedAt?: Date | undefined;
536
+ Name?: string | undefined;
537
+ Status?: EntityStatus | undefined;
538
+ PerformanceMetrics?: PerformanceMetrics | undefined;
539
+ LogUri?: string | undefined;
540
+ Message?: string | undefined;
541
+ ComputeTime?: number | undefined;
542
+ FinishedAt?: Date | undefined;
543
+ StartedAt?: Date | undefined;
544
544
  }
545
545
  export interface GetMLModelInput {
546
546
  MLModelId: string | undefined;
547
- Verbose?: boolean;
547
+ Verbose?: boolean | undefined;
548
548
  }
549
549
  export interface GetMLModelOutput {
550
- MLModelId?: string;
551
- TrainingDataSourceId?: string;
552
- CreatedByIamUser?: string;
553
- CreatedAt?: Date;
554
- LastUpdatedAt?: Date;
555
- Name?: string;
556
- Status?: EntityStatus;
557
- SizeInBytes?: number;
558
- EndpointInfo?: RealtimeEndpointInfo;
559
- TrainingParameters?: Record<string, string>;
560
- InputDataLocationS3?: string;
561
- MLModelType?: MLModelType;
562
- ScoreThreshold?: number;
563
- ScoreThresholdLastUpdatedAt?: Date;
564
- LogUri?: string;
565
- Message?: string;
566
- ComputeTime?: number;
567
- FinishedAt?: Date;
568
- StartedAt?: Date;
569
- Recipe?: string;
570
- Schema?: string;
550
+ MLModelId?: string | undefined;
551
+ TrainingDataSourceId?: string | undefined;
552
+ CreatedByIamUser?: string | undefined;
553
+ CreatedAt?: Date | undefined;
554
+ LastUpdatedAt?: Date | undefined;
555
+ Name?: string | undefined;
556
+ Status?: EntityStatus | undefined;
557
+ SizeInBytes?: number | undefined;
558
+ EndpointInfo?: RealtimeEndpointInfo | undefined;
559
+ TrainingParameters?: Record<string, string> | undefined;
560
+ InputDataLocationS3?: string | undefined;
561
+ MLModelType?: MLModelType | undefined;
562
+ ScoreThreshold?: number | undefined;
563
+ ScoreThresholdLastUpdatedAt?: Date | undefined;
564
+ LogUri?: string | undefined;
565
+ Message?: string | undefined;
566
+ ComputeTime?: number | undefined;
567
+ FinishedAt?: Date | undefined;
568
+ StartedAt?: Date | undefined;
569
+ Recipe?: string | undefined;
570
+ Schema?: string | undefined;
571
571
  }
572
572
  export declare class LimitExceededException extends __BaseException {
573
573
  readonly name: "LimitExceededException";
574
574
  readonly $fault: "client";
575
- code?: number;
575
+ code?: number | undefined;
576
576
  constructor(
577
577
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
578
578
  );
@@ -596,42 +596,42 @@ export declare const DetailsAttributes: {
596
596
  export type DetailsAttributes =
597
597
  (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
598
598
  export interface Prediction {
599
- predictedLabel?: string;
600
- predictedValue?: number;
601
- predictedScores?: Record<string, number>;
602
- details?: Partial<Record<DetailsAttributes, string>>;
599
+ predictedLabel?: string | undefined;
600
+ predictedValue?: number | undefined;
601
+ predictedScores?: Record<string, number> | undefined;
602
+ details?: Partial<Record<DetailsAttributes, string>> | undefined;
603
603
  }
604
604
  export interface PredictOutput {
605
- Prediction?: Prediction;
605
+ Prediction?: Prediction | undefined;
606
606
  }
607
607
  export interface UpdateBatchPredictionInput {
608
608
  BatchPredictionId: string | undefined;
609
609
  BatchPredictionName: string | undefined;
610
610
  }
611
611
  export interface UpdateBatchPredictionOutput {
612
- BatchPredictionId?: string;
612
+ BatchPredictionId?: string | undefined;
613
613
  }
614
614
  export interface UpdateDataSourceInput {
615
615
  DataSourceId: string | undefined;
616
616
  DataSourceName: string | undefined;
617
617
  }
618
618
  export interface UpdateDataSourceOutput {
619
- DataSourceId?: string;
619
+ DataSourceId?: string | undefined;
620
620
  }
621
621
  export interface UpdateEvaluationInput {
622
622
  EvaluationId: string | undefined;
623
623
  EvaluationName: string | undefined;
624
624
  }
625
625
  export interface UpdateEvaluationOutput {
626
- EvaluationId?: string;
626
+ EvaluationId?: string | undefined;
627
627
  }
628
628
  export interface UpdateMLModelInput {
629
629
  MLModelId: string | undefined;
630
- MLModelName?: string;
631
- ScoreThreshold?: number;
630
+ MLModelName?: string | undefined;
631
+ ScoreThreshold?: number | undefined;
632
632
  }
633
633
  export interface UpdateMLModelOutput {
634
- MLModelId?: string;
634
+ MLModelId?: string | undefined;
635
635
  }
636
636
  export declare const RDSDatabaseCredentialsFilterSensitiveLog: (
637
637
  obj: RDSDatabaseCredentials