aws-sdk-machinelearning 1.49.0 → 1.50.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-machinelearning/client.rb +1 -1
- data/lib/aws-sdk-machinelearning/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-machinelearning.rb +1 -1
- data/sig/client.rbs +615 -0
- data/sig/errors.rbs +45 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +678 -0
- data/sig/waiters.rbs +93 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,678 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::MachineLearning
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AddTagsInput
|
12
|
+
attr_accessor tags: ::Array[Types::Tag]
|
13
|
+
attr_accessor resource_id: ::String
|
14
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
15
|
+
SENSITIVE: []
|
16
|
+
end
|
17
|
+
|
18
|
+
class AddTagsOutput
|
19
|
+
attr_accessor resource_id: ::String
|
20
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class BatchPrediction
|
25
|
+
attr_accessor batch_prediction_id: ::String
|
26
|
+
attr_accessor ml_model_id: ::String
|
27
|
+
attr_accessor batch_prediction_data_source_id: ::String
|
28
|
+
attr_accessor input_data_location_s3: ::String
|
29
|
+
attr_accessor created_by_iam_user: ::String
|
30
|
+
attr_accessor created_at: ::Time
|
31
|
+
attr_accessor last_updated_at: ::Time
|
32
|
+
attr_accessor name: ::String
|
33
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
34
|
+
attr_accessor output_uri: ::String
|
35
|
+
attr_accessor message: ::String
|
36
|
+
attr_accessor compute_time: ::Integer
|
37
|
+
attr_accessor finished_at: ::Time
|
38
|
+
attr_accessor started_at: ::Time
|
39
|
+
attr_accessor total_record_count: ::Integer
|
40
|
+
attr_accessor invalid_record_count: ::Integer
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class CreateBatchPredictionInput
|
45
|
+
attr_accessor batch_prediction_id: ::String
|
46
|
+
attr_accessor batch_prediction_name: ::String
|
47
|
+
attr_accessor ml_model_id: ::String
|
48
|
+
attr_accessor batch_prediction_data_source_id: ::String
|
49
|
+
attr_accessor output_uri: ::String
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class CreateBatchPredictionOutput
|
54
|
+
attr_accessor batch_prediction_id: ::String
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class CreateDataSourceFromRDSInput
|
59
|
+
attr_accessor data_source_id: ::String
|
60
|
+
attr_accessor data_source_name: ::String
|
61
|
+
attr_accessor rds_data: Types::RDSDataSpec
|
62
|
+
attr_accessor role_arn: ::String
|
63
|
+
attr_accessor compute_statistics: bool
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class CreateDataSourceFromRDSOutput
|
68
|
+
attr_accessor data_source_id: ::String
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class CreateDataSourceFromRedshiftInput
|
73
|
+
attr_accessor data_source_id: ::String
|
74
|
+
attr_accessor data_source_name: ::String
|
75
|
+
attr_accessor data_spec: Types::RedshiftDataSpec
|
76
|
+
attr_accessor role_arn: ::String
|
77
|
+
attr_accessor compute_statistics: bool
|
78
|
+
SENSITIVE: []
|
79
|
+
end
|
80
|
+
|
81
|
+
class CreateDataSourceFromRedshiftOutput
|
82
|
+
attr_accessor data_source_id: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class CreateDataSourceFromS3Input
|
87
|
+
attr_accessor data_source_id: ::String
|
88
|
+
attr_accessor data_source_name: ::String
|
89
|
+
attr_accessor data_spec: Types::S3DataSpec
|
90
|
+
attr_accessor compute_statistics: bool
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CreateDataSourceFromS3Output
|
95
|
+
attr_accessor data_source_id: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class CreateEvaluationInput
|
100
|
+
attr_accessor evaluation_id: ::String
|
101
|
+
attr_accessor evaluation_name: ::String
|
102
|
+
attr_accessor ml_model_id: ::String
|
103
|
+
attr_accessor evaluation_data_source_id: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class CreateEvaluationOutput
|
108
|
+
attr_accessor evaluation_id: ::String
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class CreateMLModelInput
|
113
|
+
attr_accessor ml_model_id: ::String
|
114
|
+
attr_accessor ml_model_name: ::String
|
115
|
+
attr_accessor ml_model_type: ("REGRESSION" | "BINARY" | "MULTICLASS")
|
116
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
117
|
+
attr_accessor training_data_source_id: ::String
|
118
|
+
attr_accessor recipe: ::String
|
119
|
+
attr_accessor recipe_uri: ::String
|
120
|
+
SENSITIVE: []
|
121
|
+
end
|
122
|
+
|
123
|
+
class CreateMLModelOutput
|
124
|
+
attr_accessor ml_model_id: ::String
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class CreateRealtimeEndpointInput
|
129
|
+
attr_accessor ml_model_id: ::String
|
130
|
+
SENSITIVE: []
|
131
|
+
end
|
132
|
+
|
133
|
+
class CreateRealtimeEndpointOutput
|
134
|
+
attr_accessor ml_model_id: ::String
|
135
|
+
attr_accessor realtime_endpoint_info: Types::RealtimeEndpointInfo
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class DataSource
|
140
|
+
attr_accessor data_source_id: ::String
|
141
|
+
attr_accessor data_location_s3: ::String
|
142
|
+
attr_accessor data_rearrangement: ::String
|
143
|
+
attr_accessor created_by_iam_user: ::String
|
144
|
+
attr_accessor created_at: ::Time
|
145
|
+
attr_accessor last_updated_at: ::Time
|
146
|
+
attr_accessor data_size_in_bytes: ::Integer
|
147
|
+
attr_accessor number_of_files: ::Integer
|
148
|
+
attr_accessor name: ::String
|
149
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
150
|
+
attr_accessor message: ::String
|
151
|
+
attr_accessor redshift_metadata: Types::RedshiftMetadata
|
152
|
+
attr_accessor rds_metadata: Types::RDSMetadata
|
153
|
+
attr_accessor role_arn: ::String
|
154
|
+
attr_accessor compute_statistics: bool
|
155
|
+
attr_accessor compute_time: ::Integer
|
156
|
+
attr_accessor finished_at: ::Time
|
157
|
+
attr_accessor started_at: ::Time
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class DeleteBatchPredictionInput
|
162
|
+
attr_accessor batch_prediction_id: ::String
|
163
|
+
SENSITIVE: []
|
164
|
+
end
|
165
|
+
|
166
|
+
class DeleteBatchPredictionOutput
|
167
|
+
attr_accessor batch_prediction_id: ::String
|
168
|
+
SENSITIVE: []
|
169
|
+
end
|
170
|
+
|
171
|
+
class DeleteDataSourceInput
|
172
|
+
attr_accessor data_source_id: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class DeleteDataSourceOutput
|
177
|
+
attr_accessor data_source_id: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class DeleteEvaluationInput
|
182
|
+
attr_accessor evaluation_id: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DeleteEvaluationOutput
|
187
|
+
attr_accessor evaluation_id: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class DeleteMLModelInput
|
192
|
+
attr_accessor ml_model_id: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class DeleteMLModelOutput
|
197
|
+
attr_accessor ml_model_id: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class DeleteRealtimeEndpointInput
|
202
|
+
attr_accessor ml_model_id: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class DeleteRealtimeEndpointOutput
|
207
|
+
attr_accessor ml_model_id: ::String
|
208
|
+
attr_accessor realtime_endpoint_info: Types::RealtimeEndpointInfo
|
209
|
+
SENSITIVE: []
|
210
|
+
end
|
211
|
+
|
212
|
+
class DeleteTagsInput
|
213
|
+
attr_accessor tag_keys: ::Array[::String]
|
214
|
+
attr_accessor resource_id: ::String
|
215
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
219
|
+
class DeleteTagsOutput
|
220
|
+
attr_accessor resource_id: ::String
|
221
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class DescribeBatchPredictionsInput
|
226
|
+
attr_accessor filter_variable: ("CreatedAt" | "LastUpdatedAt" | "Status" | "Name" | "IAMUser" | "MLModelId" | "DataSourceId" | "DataURI")
|
227
|
+
attr_accessor eq: ::String
|
228
|
+
attr_accessor gt: ::String
|
229
|
+
attr_accessor lt: ::String
|
230
|
+
attr_accessor ge: ::String
|
231
|
+
attr_accessor le: ::String
|
232
|
+
attr_accessor ne: ::String
|
233
|
+
attr_accessor prefix: ::String
|
234
|
+
attr_accessor sort_order: ("asc" | "dsc")
|
235
|
+
attr_accessor next_token: ::String
|
236
|
+
attr_accessor limit: ::Integer
|
237
|
+
SENSITIVE: []
|
238
|
+
end
|
239
|
+
|
240
|
+
class DescribeBatchPredictionsOutput
|
241
|
+
attr_accessor results: ::Array[Types::BatchPrediction]
|
242
|
+
attr_accessor next_token: ::String
|
243
|
+
SENSITIVE: []
|
244
|
+
end
|
245
|
+
|
246
|
+
class DescribeDataSourcesInput
|
247
|
+
attr_accessor filter_variable: ("CreatedAt" | "LastUpdatedAt" | "Status" | "Name" | "DataLocationS3" | "IAMUser")
|
248
|
+
attr_accessor eq: ::String
|
249
|
+
attr_accessor gt: ::String
|
250
|
+
attr_accessor lt: ::String
|
251
|
+
attr_accessor ge: ::String
|
252
|
+
attr_accessor le: ::String
|
253
|
+
attr_accessor ne: ::String
|
254
|
+
attr_accessor prefix: ::String
|
255
|
+
attr_accessor sort_order: ("asc" | "dsc")
|
256
|
+
attr_accessor next_token: ::String
|
257
|
+
attr_accessor limit: ::Integer
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class DescribeDataSourcesOutput
|
262
|
+
attr_accessor results: ::Array[Types::DataSource]
|
263
|
+
attr_accessor next_token: ::String
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class DescribeEvaluationsInput
|
268
|
+
attr_accessor filter_variable: ("CreatedAt" | "LastUpdatedAt" | "Status" | "Name" | "IAMUser" | "MLModelId" | "DataSourceId" | "DataURI")
|
269
|
+
attr_accessor eq: ::String
|
270
|
+
attr_accessor gt: ::String
|
271
|
+
attr_accessor lt: ::String
|
272
|
+
attr_accessor ge: ::String
|
273
|
+
attr_accessor le: ::String
|
274
|
+
attr_accessor ne: ::String
|
275
|
+
attr_accessor prefix: ::String
|
276
|
+
attr_accessor sort_order: ("asc" | "dsc")
|
277
|
+
attr_accessor next_token: ::String
|
278
|
+
attr_accessor limit: ::Integer
|
279
|
+
SENSITIVE: []
|
280
|
+
end
|
281
|
+
|
282
|
+
class DescribeEvaluationsOutput
|
283
|
+
attr_accessor results: ::Array[Types::Evaluation]
|
284
|
+
attr_accessor next_token: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class DescribeMLModelsInput
|
289
|
+
attr_accessor filter_variable: ("CreatedAt" | "LastUpdatedAt" | "Status" | "Name" | "IAMUser" | "TrainingDataSourceId" | "RealtimeEndpointStatus" | "MLModelType" | "Algorithm" | "TrainingDataURI")
|
290
|
+
attr_accessor eq: ::String
|
291
|
+
attr_accessor gt: ::String
|
292
|
+
attr_accessor lt: ::String
|
293
|
+
attr_accessor ge: ::String
|
294
|
+
attr_accessor le: ::String
|
295
|
+
attr_accessor ne: ::String
|
296
|
+
attr_accessor prefix: ::String
|
297
|
+
attr_accessor sort_order: ("asc" | "dsc")
|
298
|
+
attr_accessor next_token: ::String
|
299
|
+
attr_accessor limit: ::Integer
|
300
|
+
SENSITIVE: []
|
301
|
+
end
|
302
|
+
|
303
|
+
class DescribeMLModelsOutput
|
304
|
+
attr_accessor results: ::Array[Types::MLModel]
|
305
|
+
attr_accessor next_token: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DescribeTagsInput
|
310
|
+
attr_accessor resource_id: ::String
|
311
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class DescribeTagsOutput
|
316
|
+
attr_accessor resource_id: ::String
|
317
|
+
attr_accessor resource_type: ("BatchPrediction" | "DataSource" | "Evaluation" | "MLModel")
|
318
|
+
attr_accessor tags: ::Array[Types::Tag]
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class Evaluation
|
323
|
+
attr_accessor evaluation_id: ::String
|
324
|
+
attr_accessor ml_model_id: ::String
|
325
|
+
attr_accessor evaluation_data_source_id: ::String
|
326
|
+
attr_accessor input_data_location_s3: ::String
|
327
|
+
attr_accessor created_by_iam_user: ::String
|
328
|
+
attr_accessor created_at: ::Time
|
329
|
+
attr_accessor last_updated_at: ::Time
|
330
|
+
attr_accessor name: ::String
|
331
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
332
|
+
attr_accessor performance_metrics: Types::PerformanceMetrics
|
333
|
+
attr_accessor message: ::String
|
334
|
+
attr_accessor compute_time: ::Integer
|
335
|
+
attr_accessor finished_at: ::Time
|
336
|
+
attr_accessor started_at: ::Time
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class GetBatchPredictionInput
|
341
|
+
attr_accessor batch_prediction_id: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class GetBatchPredictionOutput
|
346
|
+
attr_accessor batch_prediction_id: ::String
|
347
|
+
attr_accessor ml_model_id: ::String
|
348
|
+
attr_accessor batch_prediction_data_source_id: ::String
|
349
|
+
attr_accessor input_data_location_s3: ::String
|
350
|
+
attr_accessor created_by_iam_user: ::String
|
351
|
+
attr_accessor created_at: ::Time
|
352
|
+
attr_accessor last_updated_at: ::Time
|
353
|
+
attr_accessor name: ::String
|
354
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
355
|
+
attr_accessor output_uri: ::String
|
356
|
+
attr_accessor log_uri: ::String
|
357
|
+
attr_accessor message: ::String
|
358
|
+
attr_accessor compute_time: ::Integer
|
359
|
+
attr_accessor finished_at: ::Time
|
360
|
+
attr_accessor started_at: ::Time
|
361
|
+
attr_accessor total_record_count: ::Integer
|
362
|
+
attr_accessor invalid_record_count: ::Integer
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class GetDataSourceInput
|
367
|
+
attr_accessor data_source_id: ::String
|
368
|
+
attr_accessor verbose: bool
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class GetDataSourceOutput
|
373
|
+
attr_accessor data_source_id: ::String
|
374
|
+
attr_accessor data_location_s3: ::String
|
375
|
+
attr_accessor data_rearrangement: ::String
|
376
|
+
attr_accessor created_by_iam_user: ::String
|
377
|
+
attr_accessor created_at: ::Time
|
378
|
+
attr_accessor last_updated_at: ::Time
|
379
|
+
attr_accessor data_size_in_bytes: ::Integer
|
380
|
+
attr_accessor number_of_files: ::Integer
|
381
|
+
attr_accessor name: ::String
|
382
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
383
|
+
attr_accessor log_uri: ::String
|
384
|
+
attr_accessor message: ::String
|
385
|
+
attr_accessor redshift_metadata: Types::RedshiftMetadata
|
386
|
+
attr_accessor rds_metadata: Types::RDSMetadata
|
387
|
+
attr_accessor role_arn: ::String
|
388
|
+
attr_accessor compute_statistics: bool
|
389
|
+
attr_accessor compute_time: ::Integer
|
390
|
+
attr_accessor finished_at: ::Time
|
391
|
+
attr_accessor started_at: ::Time
|
392
|
+
attr_accessor data_source_schema: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class GetEvaluationInput
|
397
|
+
attr_accessor evaluation_id: ::String
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class GetEvaluationOutput
|
402
|
+
attr_accessor evaluation_id: ::String
|
403
|
+
attr_accessor ml_model_id: ::String
|
404
|
+
attr_accessor evaluation_data_source_id: ::String
|
405
|
+
attr_accessor input_data_location_s3: ::String
|
406
|
+
attr_accessor created_by_iam_user: ::String
|
407
|
+
attr_accessor created_at: ::Time
|
408
|
+
attr_accessor last_updated_at: ::Time
|
409
|
+
attr_accessor name: ::String
|
410
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
411
|
+
attr_accessor performance_metrics: Types::PerformanceMetrics
|
412
|
+
attr_accessor log_uri: ::String
|
413
|
+
attr_accessor message: ::String
|
414
|
+
attr_accessor compute_time: ::Integer
|
415
|
+
attr_accessor finished_at: ::Time
|
416
|
+
attr_accessor started_at: ::Time
|
417
|
+
SENSITIVE: []
|
418
|
+
end
|
419
|
+
|
420
|
+
class GetMLModelInput
|
421
|
+
attr_accessor ml_model_id: ::String
|
422
|
+
attr_accessor verbose: bool
|
423
|
+
SENSITIVE: []
|
424
|
+
end
|
425
|
+
|
426
|
+
class GetMLModelOutput
|
427
|
+
attr_accessor ml_model_id: ::String
|
428
|
+
attr_accessor training_data_source_id: ::String
|
429
|
+
attr_accessor created_by_iam_user: ::String
|
430
|
+
attr_accessor created_at: ::Time
|
431
|
+
attr_accessor last_updated_at: ::Time
|
432
|
+
attr_accessor name: ::String
|
433
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
434
|
+
attr_accessor size_in_bytes: ::Integer
|
435
|
+
attr_accessor endpoint_info: Types::RealtimeEndpointInfo
|
436
|
+
attr_accessor training_parameters: ::Hash[::String, ::String]
|
437
|
+
attr_accessor input_data_location_s3: ::String
|
438
|
+
attr_accessor ml_model_type: ("REGRESSION" | "BINARY" | "MULTICLASS")
|
439
|
+
attr_accessor score_threshold: ::Float
|
440
|
+
attr_accessor score_threshold_last_updated_at: ::Time
|
441
|
+
attr_accessor log_uri: ::String
|
442
|
+
attr_accessor message: ::String
|
443
|
+
attr_accessor compute_time: ::Integer
|
444
|
+
attr_accessor finished_at: ::Time
|
445
|
+
attr_accessor started_at: ::Time
|
446
|
+
attr_accessor recipe: ::String
|
447
|
+
attr_accessor schema: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class IdempotentParameterMismatchException
|
452
|
+
attr_accessor message: ::String
|
453
|
+
attr_accessor code: ::Integer
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class InternalServerException
|
458
|
+
attr_accessor message: ::String
|
459
|
+
attr_accessor code: ::Integer
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class InvalidInputException
|
464
|
+
attr_accessor message: ::String
|
465
|
+
attr_accessor code: ::Integer
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class InvalidTagException
|
470
|
+
attr_accessor message: ::String
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class LimitExceededException
|
475
|
+
attr_accessor message: ::String
|
476
|
+
attr_accessor code: ::Integer
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class MLModel
|
481
|
+
attr_accessor ml_model_id: ::String
|
482
|
+
attr_accessor training_data_source_id: ::String
|
483
|
+
attr_accessor created_by_iam_user: ::String
|
484
|
+
attr_accessor created_at: ::Time
|
485
|
+
attr_accessor last_updated_at: ::Time
|
486
|
+
attr_accessor name: ::String
|
487
|
+
attr_accessor status: ("PENDING" | "INPROGRESS" | "FAILED" | "COMPLETED" | "DELETED")
|
488
|
+
attr_accessor size_in_bytes: ::Integer
|
489
|
+
attr_accessor endpoint_info: Types::RealtimeEndpointInfo
|
490
|
+
attr_accessor training_parameters: ::Hash[::String, ::String]
|
491
|
+
attr_accessor input_data_location_s3: ::String
|
492
|
+
attr_accessor algorithm: ("sgd")
|
493
|
+
attr_accessor ml_model_type: ("REGRESSION" | "BINARY" | "MULTICLASS")
|
494
|
+
attr_accessor score_threshold: ::Float
|
495
|
+
attr_accessor score_threshold_last_updated_at: ::Time
|
496
|
+
attr_accessor message: ::String
|
497
|
+
attr_accessor compute_time: ::Integer
|
498
|
+
attr_accessor finished_at: ::Time
|
499
|
+
attr_accessor started_at: ::Time
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class PerformanceMetrics
|
504
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
505
|
+
SENSITIVE: []
|
506
|
+
end
|
507
|
+
|
508
|
+
class PredictInput
|
509
|
+
attr_accessor ml_model_id: ::String
|
510
|
+
attr_accessor record: ::Hash[::String, ::String]
|
511
|
+
attr_accessor predict_endpoint: ::String
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class PredictOutput
|
516
|
+
attr_accessor prediction: Types::Prediction
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class Prediction
|
521
|
+
attr_accessor predicted_label: ::String
|
522
|
+
attr_accessor predicted_value: ::Float
|
523
|
+
attr_accessor predicted_scores: ::Hash[::String, ::Float]
|
524
|
+
attr_accessor details: ::Hash[("PredictiveModelType" | "Algorithm"), ::String]
|
525
|
+
SENSITIVE: []
|
526
|
+
end
|
527
|
+
|
528
|
+
class PredictorNotMountedException
|
529
|
+
attr_accessor message: ::String
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class RDSDataSpec
|
534
|
+
attr_accessor database_information: Types::RDSDatabase
|
535
|
+
attr_accessor select_sql_query: ::String
|
536
|
+
attr_accessor database_credentials: Types::RDSDatabaseCredentials
|
537
|
+
attr_accessor s3_staging_location: ::String
|
538
|
+
attr_accessor data_rearrangement: ::String
|
539
|
+
attr_accessor data_schema: ::String
|
540
|
+
attr_accessor data_schema_uri: ::String
|
541
|
+
attr_accessor resource_role: ::String
|
542
|
+
attr_accessor service_role: ::String
|
543
|
+
attr_accessor subnet_id: ::String
|
544
|
+
attr_accessor security_group_ids: ::Array[::String]
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class RDSDatabase
|
549
|
+
attr_accessor instance_identifier: ::String
|
550
|
+
attr_accessor database_name: ::String
|
551
|
+
SENSITIVE: []
|
552
|
+
end
|
553
|
+
|
554
|
+
class RDSDatabaseCredentials
|
555
|
+
attr_accessor username: ::String
|
556
|
+
attr_accessor password: ::String
|
557
|
+
SENSITIVE: [:password]
|
558
|
+
end
|
559
|
+
|
560
|
+
class RDSMetadata
|
561
|
+
attr_accessor database: Types::RDSDatabase
|
562
|
+
attr_accessor database_user_name: ::String
|
563
|
+
attr_accessor select_sql_query: ::String
|
564
|
+
attr_accessor resource_role: ::String
|
565
|
+
attr_accessor service_role: ::String
|
566
|
+
attr_accessor data_pipeline_id: ::String
|
567
|
+
SENSITIVE: []
|
568
|
+
end
|
569
|
+
|
570
|
+
class RealtimeEndpointInfo
|
571
|
+
attr_accessor peak_requests_per_second: ::Integer
|
572
|
+
attr_accessor created_at: ::Time
|
573
|
+
attr_accessor endpoint_url: ::String
|
574
|
+
attr_accessor endpoint_status: ("NONE" | "READY" | "UPDATING" | "FAILED")
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class RedshiftDataSpec
|
579
|
+
attr_accessor database_information: Types::RedshiftDatabase
|
580
|
+
attr_accessor select_sql_query: ::String
|
581
|
+
attr_accessor database_credentials: Types::RedshiftDatabaseCredentials
|
582
|
+
attr_accessor s3_staging_location: ::String
|
583
|
+
attr_accessor data_rearrangement: ::String
|
584
|
+
attr_accessor data_schema: ::String
|
585
|
+
attr_accessor data_schema_uri: ::String
|
586
|
+
SENSITIVE: []
|
587
|
+
end
|
588
|
+
|
589
|
+
class RedshiftDatabase
|
590
|
+
attr_accessor database_name: ::String
|
591
|
+
attr_accessor cluster_identifier: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class RedshiftDatabaseCredentials
|
596
|
+
attr_accessor username: ::String
|
597
|
+
attr_accessor password: ::String
|
598
|
+
SENSITIVE: [:password]
|
599
|
+
end
|
600
|
+
|
601
|
+
class RedshiftMetadata
|
602
|
+
attr_accessor redshift_database: Types::RedshiftDatabase
|
603
|
+
attr_accessor database_user_name: ::String
|
604
|
+
attr_accessor select_sql_query: ::String
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class ResourceNotFoundException
|
609
|
+
attr_accessor message: ::String
|
610
|
+
attr_accessor code: ::Integer
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class S3DataSpec
|
615
|
+
attr_accessor data_location_s3: ::String
|
616
|
+
attr_accessor data_rearrangement: ::String
|
617
|
+
attr_accessor data_schema: ::String
|
618
|
+
attr_accessor data_schema_location_s3: ::String
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class Tag
|
623
|
+
attr_accessor key: ::String
|
624
|
+
attr_accessor value: ::String
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class TagLimitExceededException
|
629
|
+
attr_accessor message: ::String
|
630
|
+
SENSITIVE: []
|
631
|
+
end
|
632
|
+
|
633
|
+
class UpdateBatchPredictionInput
|
634
|
+
attr_accessor batch_prediction_id: ::String
|
635
|
+
attr_accessor batch_prediction_name: ::String
|
636
|
+
SENSITIVE: []
|
637
|
+
end
|
638
|
+
|
639
|
+
class UpdateBatchPredictionOutput
|
640
|
+
attr_accessor batch_prediction_id: ::String
|
641
|
+
SENSITIVE: []
|
642
|
+
end
|
643
|
+
|
644
|
+
class UpdateDataSourceInput
|
645
|
+
attr_accessor data_source_id: ::String
|
646
|
+
attr_accessor data_source_name: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class UpdateDataSourceOutput
|
651
|
+
attr_accessor data_source_id: ::String
|
652
|
+
SENSITIVE: []
|
653
|
+
end
|
654
|
+
|
655
|
+
class UpdateEvaluationInput
|
656
|
+
attr_accessor evaluation_id: ::String
|
657
|
+
attr_accessor evaluation_name: ::String
|
658
|
+
SENSITIVE: []
|
659
|
+
end
|
660
|
+
|
661
|
+
class UpdateEvaluationOutput
|
662
|
+
attr_accessor evaluation_id: ::String
|
663
|
+
SENSITIVE: []
|
664
|
+
end
|
665
|
+
|
666
|
+
class UpdateMLModelInput
|
667
|
+
attr_accessor ml_model_id: ::String
|
668
|
+
attr_accessor ml_model_name: ::String
|
669
|
+
attr_accessor score_threshold: ::Float
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class UpdateMLModelOutput
|
674
|
+
attr_accessor ml_model_id: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
end
|
678
|
+
end
|