forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmazonMachineLearning.java
More file actions
972 lines (932 loc) · 41.8 KB
/
AmazonMachineLearning.java
File metadata and controls
972 lines (932 loc) · 41.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
/*
* Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
* use this file except in compliance with the License. A copy of the License is
* located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.amazonaws.services.machinelearning;
import com.amazonaws.*;
import com.amazonaws.regions.*;
import com.amazonaws.services.machinelearning.model.*;
/**
* Interface for accessing Amazon Machine Learning.
* <p>
* Definition of the public APIs exposed by Amazon Machine Learning
*/
public interface AmazonMachineLearning {
/**
* The region metadata service name for computing region endpoints. You can
* use this value to retrieve metadata (such as supported regions) of the
* service.
*
* @see RegionUtils#getRegionsForService(String)
*/
String ENDPOINT_PREFIX = "machinelearning";
/**
* Overrides the default endpoint for this client
* ("https://machinelearning.us-east-1.amazonaws.com"). Callers can use this
* method to control which AWS region they want to work with.
* <p>
* Callers can pass in just the endpoint (ex:
* "machinelearning.us-east-1.amazonaws.com") or a full URL, including the
* protocol (ex: "https://machinelearning.us-east-1.amazonaws.com"). If the
* protocol is not specified here, the default protocol from this client's
* {@link ClientConfiguration} will be used, which by default is HTTPS.
* <p>
* For more information on using AWS regions with the AWS SDK for Java, and
* a complete list of all available endpoints for all AWS services, see: <a
* href=
* "http://developer.amazonwebservices.com/connect/entry.jspa?externalID=3912"
* > http://developer.amazonwebservices.com/connect/entry.jspa?externalID=
* 3912</a>
* <p>
* <b>This method is not threadsafe. An endpoint should be configured when
* the client is created and before any service requests are made. Changing
* it afterwards creates inevitable race conditions for any service requests
* in transit or retrying.</b>
*
* @param endpoint
* The endpoint (ex: "machinelearning.us-east-1.amazonaws.com") or a
* full URL, including the protocol (ex:
* "https://machinelearning.us-east-1.amazonaws.com") of the region
* specific AWS endpoint this client will communicate with.
*/
void setEndpoint(String endpoint);
/**
* An alternative to {@link AmazonMachineLearning#setEndpoint(String)}, sets
* the regional endpoint for this client's service calls. Callers can use
* this method to control which AWS region they want to work with.
* <p>
* By default, all service endpoints in all regions use the https protocol.
* To use http instead, specify it in the {@link ClientConfiguration}
* supplied at construction.
* <p>
* <b>This method is not threadsafe. A region should be configured when the
* client is created and before any service requests are made. Changing it
* afterwards creates inevitable race conditions for any service requests in
* transit or retrying.</b>
*
* @param region
* The region this client will communicate with. See
* {@link Region#getRegion(com.amazonaws.regions.Regions)} for
* accessing a given region. Must not be null and must be a region
* where the service is available.
*
* @see Region#getRegion(com.amazonaws.regions.Regions)
* @see Region#createClient(Class,
* com.amazonaws.auth.AWSCredentialsProvider, ClientConfiguration)
* @see Region#isServiceSupported(String)
*/
void setRegion(Region region);
/**
* <p>
* Adds one or more tags to an object, up to a limit of 10. Each tag
* consists of a key and an optional value. If you add a tag using a key
* that is already associated with the ML object, <code>AddTags</code>
* updates the tag's value.
* </p>
*
* @param addTagsRequest
* @return Result of the AddTags operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InvalidTagException
* @throws TagLimitExceededException
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.AddTags
*/
AddTagsResult addTags(AddTagsRequest addTagsRequest);
/**
* <p>
* Generates predictions for a group of observations. The observations to
* process exist in one or more data files referenced by a
* <code>DataSource</code>. This operation creates a new
* <code>BatchPrediction</code>, and uses an <code>MLModel</code> and the
* data files referenced by the <code>DataSource</code> as information
* sources.
* </p>
* <p>
* <code>CreateBatchPrediction</code> is an asynchronous operation. In
* response to <code>CreateBatchPrediction</code>, Amazon Machine Learning
* (Amazon ML) immediately returns and sets the <code>BatchPrediction</code>
* status to <code>PENDING</code>. After the <code>BatchPrediction</code>
* completes, Amazon ML sets the status to <code>COMPLETED</code>.
* </p>
* <p>
* You can poll for status updates by using the <a>GetBatchPrediction</a>
* operation and checking the <code>Status</code> parameter of the result.
* After the <code>COMPLETED</code> status appears, the results are
* available in the location specified by the <code>OutputUri</code>
* parameter.
* </p>
*
* @param createBatchPredictionRequest
* @return Result of the CreateBatchPrediction operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateBatchPrediction
*/
CreateBatchPredictionResult createBatchPrediction(
CreateBatchPredictionRequest createBatchPredictionRequest);
/**
* <p>
* Creates a <code>DataSource</code> object from an <a
* href="http://aws.amazon.com/rds/"> Amazon Relational Database Service</a>
* (Amazon RDS). A <code>DataSource</code> references data that can be used
* to perform <code>CreateMLModel</code>, <code>CreateEvaluation</code>, or
* <code>CreateBatchPrediction</code> operations.
* </p>
* <p>
* <code>CreateDataSourceFromRDS</code> is an asynchronous operation. In
* response to <code>CreateDataSourceFromRDS</code>, Amazon Machine Learning
* (Amazon ML) immediately returns and sets the <code>DataSource</code>
* status to <code>PENDING</code>. After the <code>DataSource</code> is
* created and ready for use, Amazon ML sets the <code>Status</code>
* parameter to <code>COMPLETED</code>. <code>DataSource</code> in the
* <code>COMPLETED</code> or <code>PENDING</code> state can be used only to
* perform <code>>CreateMLModel</code>>, <code>CreateEvaluation</code>
* , or <code>CreateBatchPrediction</code> operations.
* </p>
* <p>
* If Amazon ML cannot accept the input source, it sets the
* <code>Status</code> parameter to <code>FAILED</code> and includes an
* error message in the <code>Message</code> attribute of the
* <code>GetDataSource</code> operation response.
* </p>
*
* @param createDataSourceFromRDSRequest
* @return Result of the CreateDataSourceFromRDS operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateDataSourceFromRDS
*/
CreateDataSourceFromRDSResult createDataSourceFromRDS(
CreateDataSourceFromRDSRequest createDataSourceFromRDSRequest);
/**
* <p>
* Creates a <code>DataSource</code> from a database hosted on an Amazon
* Redshift cluster. A <code>DataSource</code> references data that can be
* used to perform either <code>CreateMLModel</code>,
* <code>CreateEvaluation</code>, or <code>CreateBatchPrediction</code>
* operations.
* </p>
* <p>
* <code>CreateDataSourceFromRedshift</code> is an asynchronous operation.
* In response to <code>CreateDataSourceFromRedshift</code>, Amazon Machine
* Learning (Amazon ML) immediately returns and sets the
* <code>DataSource</code> status to <code>PENDING</code>. After the
* <code>DataSource</code> is created and ready for use, Amazon ML sets the
* <code>Status</code> parameter to <code>COMPLETED</code>.
* <code>DataSource</code> in <code>COMPLETED</code> or <code>PENDING</code>
* states can be used to perform only <code>CreateMLModel</code>,
* <code>CreateEvaluation</code>, or <code>CreateBatchPrediction</code>
* operations.
* </p>
* <p>
* If Amazon ML can't accept the input source, it sets the
* <code>Status</code> parameter to <code>FAILED</code> and includes an
* error message in the <code>Message</code> attribute of the
* <code>GetDataSource</code> operation response.
* </p>
* <p>
* The observations should be contained in the database hosted on an Amazon
* Redshift cluster and should be specified by a <code>SelectSqlQuery</code>
* query. Amazon ML executes an <code>Unload</code> command in Amazon
* Redshift to transfer the result set of the <code>SelectSqlQuery</code>
* query to <code>S3StagingLocation</code>.
* </p>
* <p>
* After the <code>DataSource</code> has been created, it's ready for use in
* evaluations and batch predictions. If you plan to use the
* <code>DataSource</code> to train an <code>MLModel</code>, the
* <code>DataSource</code> also requires a recipe. A recipe describes how
* each input variable will be used in training an <code>MLModel</code>.
* Will the variable be included or excluded from training? Will the
* variable be manipulated; for example, will it be combined with another
* variable or will it be split apart into word combinations? The recipe
* provides answers to these questions.
* </p>
* <?oxy_insert_start author="laurama" timestamp="20160406T153842-0700">
* <p>
* You can't change an existing datasource, but you can copy and modify the
* settings from an existing Amazon Redshift datasource to create a new
* datasource. To do so, call <code>GetDataSource</code> for an existing
* datasource and copy the values to a <code>CreateDataSource</code> call.
* Change the settings that you want to change and make sure that all
* required fields have the appropriate values.
* </p>
* <?oxy_insert_end>
*
* @param createDataSourceFromRedshiftRequest
* @return Result of the CreateDataSourceFromRedshift operation returned by
* the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateDataSourceFromRedshift
*/
CreateDataSourceFromRedshiftResult createDataSourceFromRedshift(
CreateDataSourceFromRedshiftRequest createDataSourceFromRedshiftRequest);
/**
* <p>
* Creates a <code>DataSource</code> object. A <code>DataSource</code>
* references data that can be used to perform <code>CreateMLModel</code>,
* <code>CreateEvaluation</code>, or <code>CreateBatchPrediction</code>
* operations.
* </p>
* <p>
* <code>CreateDataSourceFromS3</code> is an asynchronous operation. In
* response to <code>CreateDataSourceFromS3</code>, Amazon Machine Learning
* (Amazon ML) immediately returns and sets the <code>DataSource</code>
* status to <code>PENDING</code>. After the <code>DataSource</code> has
* been created and is ready for use, Amazon ML sets the <code>Status</code>
* parameter to <code>COMPLETED</code>. <code>DataSource</code> in the
* <code>COMPLETED</code> or <code>PENDING</code> state can be used to
* perform only <code>CreateMLModel</code>, <code>CreateEvaluation</code> or
* <code>CreateBatchPrediction</code> operations.
* </p>
* <p>
* If Amazon ML can't accept the input source, it sets the
* <code>Status</code> parameter to <code>FAILED</code> and includes an
* error message in the <code>Message</code> attribute of the
* <code>GetDataSource</code> operation response.
* </p>
* <p>
* The observation data used in a <code>DataSource</code> should be ready to
* use; that is, it should have a consistent structure, and missing data
* values should be kept to a minimum. The observation data must reside in
* one or more .csv files in an Amazon Simple Storage Service (Amazon S3)
* location, along with a schema that describes the data items by name and
* type. The same schema must be used for all of the data files referenced
* by the <code>DataSource</code>.
* </p>
* <p>
* After the <code>DataSource</code> has been created, it's ready to use in
* evaluations and batch predictions. If you plan to use the
* <code>DataSource</code> to train an <code>MLModel</code>, the
* <code>DataSource</code> also needs a recipe. A recipe describes how each
* input variable will be used in training an <code>MLModel</code>. Will the
* variable be included or excluded from training? Will the variable be
* manipulated; for example, will it be combined with another variable or
* will it be split apart into word combinations? The recipe provides
* answers to these questions.
* </p>
*
* @param createDataSourceFromS3Request
* @return Result of the CreateDataSourceFromS3 operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateDataSourceFromS3
*/
CreateDataSourceFromS3Result createDataSourceFromS3(
CreateDataSourceFromS3Request createDataSourceFromS3Request);
/**
* <p>
* Creates a new <code>Evaluation</code> of an <code>MLModel</code>. An
* <code>MLModel</code> is evaluated on a set of observations associated to
* a <code>DataSource</code>. Like a <code>DataSource</code> for an
* <code>MLModel</code>, the <code>DataSource</code> for an
* <code>Evaluation</code> contains values for the
* <code>Target Variable</code>. The <code>Evaluation</code> compares the
* predicted result for each observation to the actual outcome and provides
* a summary so that you know how effective the <code>MLModel</code>
* functions on the test data. Evaluation generates a relevant performance
* metric, such as BinaryAUC, RegressionRMSE or MulticlassAvgFScore based on
* the corresponding <code>MLModelType</code>: <code>BINARY</code>,
* <code>REGRESSION</code> or <code>MULTICLASS</code>.
* </p>
* <p>
* <code>CreateEvaluation</code> is an asynchronous operation. In response
* to <code>CreateEvaluation</code>, Amazon Machine Learning (Amazon ML)
* immediately returns and sets the evaluation status to
* <code>PENDING</code>. After the <code>Evaluation</code> is created and
* ready for use, Amazon ML sets the status to <code>COMPLETED</code>.
* </p>
* <p>
* You can use the <code>GetEvaluation</code> operation to check progress of
* the evaluation during the creation operation.
* </p>
*
* @param createEvaluationRequest
* @return Result of the CreateEvaluation operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateEvaluation
*/
CreateEvaluationResult createEvaluation(
CreateEvaluationRequest createEvaluationRequest);
/**
* <p>
* Creates a new <code>MLModel</code> using the <code>DataSource</code> and
* the recipe as information sources.
* </p>
* <p>
* An <code>MLModel</code> is nearly immutable. Users can update only the
* <code>MLModelName</code> and the <code>ScoreThreshold</code> in an
* <code>MLModel</code> without creating a new <code>MLModel</code>.
* </p>
* <p>
* <code>CreateMLModel</code> is an asynchronous operation. In response to
* <code>CreateMLModel</code>, Amazon Machine Learning (Amazon ML)
* immediately returns and sets the <code>MLModel</code> status to
* <code>PENDING</code>. After the <code>MLModel</code> has been created and
* ready is for use, Amazon ML sets the status to <code>COMPLETED</code>.
* </p>
* <p>
* You can use the <code>GetMLModel</code> operation to check the progress
* of the <code>MLModel</code> during the creation operation.
* </p>
* <p>
* <code>CreateMLModel</code> requires a <code>DataSource</code> with
* computed statistics, which can be created by setting
* <code>ComputeStatistics</code> to <code>true</code> in
* <code>CreateDataSourceFromRDS</code>, <code>CreateDataSourceFromS3</code>
* , or <code>CreateDataSourceFromRedshift</code> operations.
* </p>
*
* @param createMLModelRequest
* @return Result of the CreateMLModel operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws IdempotentParameterMismatchException
* A second request to use or change an object was not allowed. This
* can result from retrying a request using a parameter that was not
* present in the original request.
* @sample AmazonMachineLearning.CreateMLModel
*/
CreateMLModelResult createMLModel(CreateMLModelRequest createMLModelRequest);
/**
* <p>
* Creates a real-time endpoint for the <code>MLModel</code>. The endpoint
* contains the URI of the <code>MLModel</code>; that is, the location to
* send real-time prediction requests for the specified <code>MLModel</code>
* .
* </p>
*
* @param createRealtimeEndpointRequest
* @return Result of the CreateRealtimeEndpoint operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.CreateRealtimeEndpoint
*/
CreateRealtimeEndpointResult createRealtimeEndpoint(
CreateRealtimeEndpointRequest createRealtimeEndpointRequest);
/**
* <p>
* Assigns the DELETED status to a <code>BatchPrediction</code>, rendering
* it unusable.
* </p>
* <p>
* After using the <code>DeleteBatchPrediction</code> operation, you can use
* the <a>GetBatchPrediction</a> operation to verify that the status of the
* <code>BatchPrediction</code> changed to DELETED.
* </p>
* <p>
* <b>Caution:</b> The result of the <code>DeleteBatchPrediction</code>
* operation is irreversible.
* </p>
*
* @param deleteBatchPredictionRequest
* @return Result of the DeleteBatchPrediction operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteBatchPrediction
*/
DeleteBatchPredictionResult deleteBatchPrediction(
DeleteBatchPredictionRequest deleteBatchPredictionRequest);
/**
* <p>
* Assigns the DELETED status to a <code>DataSource</code>, rendering it
* unusable.
* </p>
* <p>
* After using the <code>DeleteDataSource</code> operation, you can use the
* <a>GetDataSource</a> operation to verify that the status of the
* <code>DataSource</code> changed to DELETED.
* </p>
* <p>
* <b>Caution:</b> The results of the <code>DeleteDataSource</code>
* operation are irreversible.
* </p>
*
* @param deleteDataSourceRequest
* @return Result of the DeleteDataSource operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteDataSource
*/
DeleteDataSourceResult deleteDataSource(
DeleteDataSourceRequest deleteDataSourceRequest);
/**
* <p>
* Assigns the <code>DELETED</code> status to an <code>Evaluation</code>,
* rendering it unusable.
* </p>
* <p>
* After invoking the <code>DeleteEvaluation</code> operation, you can use
* the <code>GetEvaluation</code> operation to verify that the status of the
* <code>Evaluation</code> changed to <code>DELETED</code>.
* </p>
* <caution><title>Caution</title>
* <p>
* The results of the <code>DeleteEvaluation</code> operation are
* irreversible.
* </p>
* </caution>
*
* @param deleteEvaluationRequest
* @return Result of the DeleteEvaluation operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteEvaluation
*/
DeleteEvaluationResult deleteEvaluation(
DeleteEvaluationRequest deleteEvaluationRequest);
/**
* <p>
* Assigns the <code>DELETED</code> status to an <code>MLModel</code>,
* rendering it unusable.
* </p>
* <p>
* After using the <code>DeleteMLModel</code> operation, you can use the
* <code>GetMLModel</code> operation to verify that the status of the
* <code>MLModel</code> changed to DELETED.
* </p>
* <p>
* <b>Caution:</b> The result of the <code>DeleteMLModel</code> operation is
* irreversible.
* </p>
*
* @param deleteMLModelRequest
* @return Result of the DeleteMLModel operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteMLModel
*/
DeleteMLModelResult deleteMLModel(DeleteMLModelRequest deleteMLModelRequest);
/**
* <p>
* Deletes a real time endpoint of an <code>MLModel</code>.
* </p>
*
* @param deleteRealtimeEndpointRequest
* @return Result of the DeleteRealtimeEndpoint operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteRealtimeEndpoint
*/
DeleteRealtimeEndpointResult deleteRealtimeEndpoint(
DeleteRealtimeEndpointRequest deleteRealtimeEndpointRequest);
/**
* <p>
* Deletes the specified tags associated with an ML object. After this
* operation is complete, you can't recover deleted tags.
* </p>
* <p>
* If you specify a tag that doesn't exist, Amazon ML ignores it.
* </p>
*
* @param deleteTagsRequest
* @return Result of the DeleteTags operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InvalidTagException
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DeleteTags
*/
DeleteTagsResult deleteTags(DeleteTagsRequest deleteTagsRequest);
/**
* <p>
* Returns a list of <code>BatchPrediction</code> operations that match the
* search criteria in the request.
* </p>
*
* @param describeBatchPredictionsRequest
* @return Result of the DescribeBatchPredictions operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DescribeBatchPredictions
*/
DescribeBatchPredictionsResult describeBatchPredictions(
DescribeBatchPredictionsRequest describeBatchPredictionsRequest);
/**
* Simplified method form for invoking the DescribeBatchPredictions
* operation.
*
* @see #describeBatchPredictions(DescribeBatchPredictionsRequest)
*/
DescribeBatchPredictionsResult describeBatchPredictions();
/**
* <p>
* Returns a list of <code>DataSource</code> that match the search criteria
* in the request.
* </p>
*
* @param describeDataSourcesRequest
* @return Result of the DescribeDataSources operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DescribeDataSources
*/
DescribeDataSourcesResult describeDataSources(
DescribeDataSourcesRequest describeDataSourcesRequest);
/**
* Simplified method form for invoking the DescribeDataSources operation.
*
* @see #describeDataSources(DescribeDataSourcesRequest)
*/
DescribeDataSourcesResult describeDataSources();
/**
* <p>
* Returns a list of <code>DescribeEvaluations</code> that match the search
* criteria in the request.
* </p>
*
* @param describeEvaluationsRequest
* @return Result of the DescribeEvaluations operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DescribeEvaluations
*/
DescribeEvaluationsResult describeEvaluations(
DescribeEvaluationsRequest describeEvaluationsRequest);
/**
* Simplified method form for invoking the DescribeEvaluations operation.
*
* @see #describeEvaluations(DescribeEvaluationsRequest)
*/
DescribeEvaluationsResult describeEvaluations();
/**
* <p>
* Returns a list of <code>MLModel</code> that match the search criteria in
* the request.
* </p>
*
* @param describeMLModelsRequest
* @return Result of the DescribeMLModels operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DescribeMLModels
*/
DescribeMLModelsResult describeMLModels(
DescribeMLModelsRequest describeMLModelsRequest);
/**
* Simplified method form for invoking the DescribeMLModels operation.
*
* @see #describeMLModels(DescribeMLModelsRequest)
*/
DescribeMLModelsResult describeMLModels();
/**
* <p>
* Describes one or more of the tags for your Amazon ML object.
* </p>
*
* @param describeTagsRequest
* @return Result of the DescribeTags operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.DescribeTags
*/
DescribeTagsResult describeTags(DescribeTagsRequest describeTagsRequest);
/**
* <p>
* Returns a <code>BatchPrediction</code> that includes detailed metadata,
* status, and data file information for a <code>Batch Prediction</code>
* request.
* </p>
*
* @param getBatchPredictionRequest
* @return Result of the GetBatchPrediction operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.GetBatchPrediction
*/
GetBatchPredictionResult getBatchPrediction(
GetBatchPredictionRequest getBatchPredictionRequest);
/**
* <p>
* Returns a <code>DataSource</code> that includes metadata and data file
* information, as well as the current status of the <code>DataSource</code>
* .
* </p>
* <p>
* <code>GetDataSource</code> provides results in normal or verbose format.
* The verbose format adds the schema description and the list of files
* pointed to by the DataSource to the normal format.
* </p>
*
* @param getDataSourceRequest
* @return Result of the GetDataSource operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.GetDataSource
*/
GetDataSourceResult getDataSource(GetDataSourceRequest getDataSourceRequest);
/**
* <p>
* Returns an <code>Evaluation</code> that includes metadata as well as the
* current status of the <code>Evaluation</code>.
* </p>
*
* @param getEvaluationRequest
* @return Result of the GetEvaluation operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.GetEvaluation
*/
GetEvaluationResult getEvaluation(GetEvaluationRequest getEvaluationRequest);
/**
* <p>
* Returns an <code>MLModel</code> that includes detailed metadata, data
* source information, and the current status of the <code>MLModel</code>.
* </p>
* <p>
* <code>GetMLModel</code> provides results in normal or verbose format.
* </p>
*
* @param getMLModelRequest
* @return Result of the GetMLModel operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.GetMLModel
*/
GetMLModelResult getMLModel(GetMLModelRequest getMLModelRequest);
/**
* <p>
* Generates a prediction for the observation using the specified
* <code>ML Model</code>.
* </p>
* <note><title>Note</title>
* <p>
* Not all response parameters will be populated. Whether a response
* parameter is populated depends on the type of model requested.
* </p>
* </note>
*
* @param predictRequest
* @return Result of the Predict operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws LimitExceededException
* The subscriber exceeded the maximum number of operations. This
* exception can occur when listing objects such as
* <code>DataSource</code>.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @throws PredictorNotMountedException
* The exception is thrown when a predict request is made to an
* unmounted <code>MLModel</code>.
* @sample AmazonMachineLearning.Predict
*/
PredictResult predict(PredictRequest predictRequest);
/**
* <p>
* Updates the <code>BatchPredictionName</code> of a
* <code>BatchPrediction</code>.
* </p>
* <p>
* You can use the <code>GetBatchPrediction</code> operation to view the
* contents of the updated data element.
* </p>
*
* @param updateBatchPredictionRequest
* @return Result of the UpdateBatchPrediction operation returned by the
* service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.UpdateBatchPrediction
*/
UpdateBatchPredictionResult updateBatchPrediction(
UpdateBatchPredictionRequest updateBatchPredictionRequest);
/**
* <p>
* Updates the <code>DataSourceName</code> of a <code>DataSource</code>.
* </p>
* <p>
* You can use the <code>GetDataSource</code> operation to view the contents
* of the updated data element.
* </p>
*
* @param updateDataSourceRequest
* @return Result of the UpdateDataSource operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.UpdateDataSource
*/
UpdateDataSourceResult updateDataSource(
UpdateDataSourceRequest updateDataSourceRequest);
/**
* <p>
* Updates the <code>EvaluationName</code> of an <code>Evaluation</code>.
* </p>
* <p>
* You can use the <code>GetEvaluation</code> operation to view the contents
* of the updated data element.
* </p>
*
* @param updateEvaluationRequest
* @return Result of the UpdateEvaluation operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.UpdateEvaluation
*/
UpdateEvaluationResult updateEvaluation(
UpdateEvaluationRequest updateEvaluationRequest);
/**
* <p>
* Updates the <code>MLModelName</code> and the <code>ScoreThreshold</code>
* of an <code>MLModel</code>.
* </p>
* <p>
* You can use the <code>GetMLModel</code> operation to view the contents of
* the updated data element.
* </p>
*
* @param updateMLModelRequest
* @return Result of the UpdateMLModel operation returned by the service.
* @throws InvalidInputException
* An error on the client occurred. Typically, the cause is an
* invalid input value.
* @throws ResourceNotFoundException
* A specified resource cannot be located.
* @throws InternalServerException
* An error on the server occurred when trying to process a request.
* @sample AmazonMachineLearning.UpdateMLModel
*/
UpdateMLModelResult updateMLModel(UpdateMLModelRequest updateMLModelRequest);
/**
* Shuts down this client object, releasing any resources that might be held
* open. This is an optional method, and callers are not expected to call
* it, but can if they want to explicitly release any open resources. Once a
* client has been shutdown, it should not be used to make any more
* requests.
*/
void shutdown();
/**
* Returns additional metadata for a previously executed successful request,
* typically used for debugging issues where a service isn't acting as
* expected. This data isn't considered part of the result data returned by
* an operation, so it's available through this separate, diagnostic
* interface.
* <p>
* Response metadata is only cached for a limited period of time, so if you
* need to access this extra diagnostic information for an executed request,
* you should use this method to retrieve it as soon as possible after
* executing a request.
*
* @param request
* The originally executed request.
*
* @return The response metadata for the specified request, or null if none
* is available.
*/
ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request);
}