@aws-sdk/client-machine-learning 3.131.0 → 3.142.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AddTagsCommand.js +2 -2
- package/dist-cjs/commands/CreateBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromRDSCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromRedshiftCommand.js +2 -2
- package/dist-cjs/commands/CreateDataSourceFromS3Command.js +2 -2
- package/dist-cjs/commands/CreateEvaluationCommand.js +2 -2
- package/dist-cjs/commands/CreateMLModelCommand.js +2 -2
- package/dist-cjs/commands/CreateRealtimeEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/DeleteDataSourceCommand.js +2 -2
- package/dist-cjs/commands/DeleteEvaluationCommand.js +2 -2
- package/dist-cjs/commands/DeleteMLModelCommand.js +2 -2
- package/dist-cjs/commands/DeleteRealtimeEndpointCommand.js +2 -2
- package/dist-cjs/commands/DeleteTagsCommand.js +2 -2
- package/dist-cjs/commands/DescribeBatchPredictionsCommand.js +2 -2
- package/dist-cjs/commands/DescribeDataSourcesCommand.js +2 -2
- package/dist-cjs/commands/DescribeEvaluationsCommand.js +2 -2
- package/dist-cjs/commands/DescribeMLModelsCommand.js +2 -2
- package/dist-cjs/commands/DescribeTagsCommand.js +2 -2
- package/dist-cjs/commands/GetBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/GetDataSourceCommand.js +2 -2
- package/dist-cjs/commands/GetEvaluationCommand.js +2 -2
- package/dist-cjs/commands/GetMLModelCommand.js +2 -2
- package/dist-cjs/commands/PredictCommand.js +2 -2
- package/dist-cjs/commands/UpdateBatchPredictionCommand.js +2 -2
- package/dist-cjs/commands/UpdateDataSourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateEvaluationCommand.js +2 -2
- package/dist-cjs/commands/UpdateMLModelCommand.js +2 -2
- package/dist-cjs/models/models_0.js +294 -440
- package/dist-cjs/protocols/Aws_json1_1.js +140 -233
- package/dist-es/commands/AddTagsCommand.js +3 -3
- package/dist-es/commands/CreateBatchPredictionCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromRDSCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +3 -3
- package/dist-es/commands/CreateDataSourceFromS3Command.js +3 -3
- package/dist-es/commands/CreateEvaluationCommand.js +3 -3
- package/dist-es/commands/CreateMLModelCommand.js +3 -3
- package/dist-es/commands/CreateRealtimeEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteBatchPredictionCommand.js +3 -3
- package/dist-es/commands/DeleteDataSourceCommand.js +3 -3
- package/dist-es/commands/DeleteEvaluationCommand.js +3 -3
- package/dist-es/commands/DeleteMLModelCommand.js +3 -3
- package/dist-es/commands/DeleteRealtimeEndpointCommand.js +3 -3
- package/dist-es/commands/DeleteTagsCommand.js +3 -3
- package/dist-es/commands/DescribeBatchPredictionsCommand.js +3 -3
- package/dist-es/commands/DescribeDataSourcesCommand.js +3 -3
- package/dist-es/commands/DescribeEvaluationsCommand.js +3 -3
- package/dist-es/commands/DescribeMLModelsCommand.js +3 -3
- package/dist-es/commands/DescribeTagsCommand.js +3 -3
- package/dist-es/commands/GetBatchPredictionCommand.js +3 -3
- package/dist-es/commands/GetDataSourceCommand.js +3 -3
- package/dist-es/commands/GetEvaluationCommand.js +3 -3
- package/dist-es/commands/GetMLModelCommand.js +3 -3
- package/dist-es/commands/PredictCommand.js +3 -3
- package/dist-es/commands/UpdateBatchPredictionCommand.js +3 -3
- package/dist-es/commands/UpdateDataSourceCommand.js +3 -3
- package/dist-es/commands/UpdateEvaluationCommand.js +3 -3
- package/dist-es/commands/UpdateMLModelCommand.js +3 -3
- package/dist-es/models/models_0.js +73 -292
- package/dist-es/protocols/Aws_json1_1.js +225 -234
- package/dist-types/models/models_0.d.ts +292 -438
- package/dist-types/ts3.4/models/models_0.d.ts +146 -292
- package/package.json +6 -6
|
@@ -19,12 +19,6 @@ export interface Tag {
|
|
|
19
19
|
*/
|
|
20
20
|
Value?: string;
|
|
21
21
|
}
|
|
22
|
-
export declare namespace Tag {
|
|
23
|
-
/**
|
|
24
|
-
* @internal
|
|
25
|
-
*/
|
|
26
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
27
|
-
}
|
|
28
22
|
export interface AddTagsInput {
|
|
29
23
|
/**
|
|
30
24
|
* <p>The key-value pairs to use to create tags. If you specify a key without specifying a value, Amazon ML creates a tag with the specified key and a value of null.</p>
|
|
@@ -39,12 +33,6 @@ export interface AddTagsInput {
|
|
|
39
33
|
*/
|
|
40
34
|
ResourceType: TaggableResourceType | string | undefined;
|
|
41
35
|
}
|
|
42
|
-
export declare namespace AddTagsInput {
|
|
43
|
-
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
const filterSensitiveLog: (obj: AddTagsInput) => any;
|
|
47
|
-
}
|
|
48
36
|
/**
|
|
49
37
|
* <p>Amazon ML returns the following elements.</p>
|
|
50
38
|
*/
|
|
@@ -58,12 +46,6 @@ export interface AddTagsOutput {
|
|
|
58
46
|
*/
|
|
59
47
|
ResourceType?: TaggableResourceType | string;
|
|
60
48
|
}
|
|
61
|
-
export declare namespace AddTagsOutput {
|
|
62
|
-
/**
|
|
63
|
-
* @internal
|
|
64
|
-
*/
|
|
65
|
-
const filterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
66
|
-
}
|
|
67
49
|
/**
|
|
68
50
|
* <p>An error on the server occurred when trying to process a request.</p>
|
|
69
51
|
*/
|
|
@@ -143,12 +125,6 @@ export interface CreateBatchPredictionInput {
|
|
|
143
125
|
*/
|
|
144
126
|
OutputUri: string | undefined;
|
|
145
127
|
}
|
|
146
|
-
export declare namespace CreateBatchPredictionInput {
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
const filterSensitiveLog: (obj: CreateBatchPredictionInput) => any;
|
|
151
|
-
}
|
|
152
128
|
/**
|
|
153
129
|
* <p> Represents the output of a <code>CreateBatchPrediction</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
154
130
|
* <p>The <code>CreateBatchPrediction</code> operation is asynchronous. You can poll for status updates by using the <code>>GetBatchPrediction</code>
|
|
@@ -162,12 +138,6 @@ export interface CreateBatchPredictionOutput {
|
|
|
162
138
|
*/
|
|
163
139
|
BatchPredictionId?: string;
|
|
164
140
|
}
|
|
165
|
-
export declare namespace CreateBatchPredictionOutput {
|
|
166
|
-
/**
|
|
167
|
-
* @internal
|
|
168
|
-
*/
|
|
169
|
-
const filterSensitiveLog: (obj: CreateBatchPredictionOutput) => any;
|
|
170
|
-
}
|
|
171
141
|
/**
|
|
172
142
|
* <p>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.</p>
|
|
173
143
|
*/
|
|
@@ -195,12 +165,6 @@ export interface RDSDatabaseCredentials {
|
|
|
195
165
|
*/
|
|
196
166
|
Password: string | undefined;
|
|
197
167
|
}
|
|
198
|
-
export declare namespace RDSDatabaseCredentials {
|
|
199
|
-
/**
|
|
200
|
-
* @internal
|
|
201
|
-
*/
|
|
202
|
-
const filterSensitiveLog: (obj: RDSDatabaseCredentials) => any;
|
|
203
|
-
}
|
|
204
168
|
/**
|
|
205
169
|
* <p>The database details of an Amazon RDS database.</p>
|
|
206
170
|
*/
|
|
@@ -214,12 +178,6 @@ export interface RDSDatabase {
|
|
|
214
178
|
*/
|
|
215
179
|
DatabaseName: string | undefined;
|
|
216
180
|
}
|
|
217
|
-
export declare namespace RDSDatabase {
|
|
218
|
-
/**
|
|
219
|
-
* @internal
|
|
220
|
-
*/
|
|
221
|
-
const filterSensitiveLog: (obj: RDSDatabase) => any;
|
|
222
|
-
}
|
|
223
181
|
/**
|
|
224
182
|
* <p>The data specification of an Amazon Relational Database Service (Amazon RDS) <code>DataSource</code>.</p>
|
|
225
183
|
*/
|
|
@@ -372,12 +330,6 @@ export interface RDSDataSpec {
|
|
|
372
330
|
*/
|
|
373
331
|
SecurityGroupIds: string[] | undefined;
|
|
374
332
|
}
|
|
375
|
-
export declare namespace RDSDataSpec {
|
|
376
|
-
/**
|
|
377
|
-
* @internal
|
|
378
|
-
*/
|
|
379
|
-
const filterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
380
|
-
}
|
|
381
333
|
export interface CreateDataSourceFromRDSInput {
|
|
382
334
|
/**
|
|
383
335
|
* <p>A user-supplied ID that uniquely identifies the <code>DataSource</code>. Typically, an Amazon Resource Number (ARN)
|
|
@@ -453,12 +405,6 @@ export interface CreateDataSourceFromRDSInput {
|
|
|
453
405
|
*/
|
|
454
406
|
ComputeStatistics?: boolean;
|
|
455
407
|
}
|
|
456
|
-
export declare namespace CreateDataSourceFromRDSInput {
|
|
457
|
-
/**
|
|
458
|
-
* @internal
|
|
459
|
-
*/
|
|
460
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRDSInput) => any;
|
|
461
|
-
}
|
|
462
408
|
/**
|
|
463
409
|
* <p> Represents the output of a <code>CreateDataSourceFromRDS</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
464
410
|
* <p>The <code>CreateDataSourceFromRDS</code>> operation is asynchronous. You can poll for updates by using
|
|
@@ -475,12 +421,6 @@ export interface CreateDataSourceFromRDSOutput {
|
|
|
475
421
|
*/
|
|
476
422
|
DataSourceId?: string;
|
|
477
423
|
}
|
|
478
|
-
export declare namespace CreateDataSourceFromRDSOutput {
|
|
479
|
-
/**
|
|
480
|
-
* @internal
|
|
481
|
-
*/
|
|
482
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRDSOutput) => any;
|
|
483
|
-
}
|
|
484
424
|
/**
|
|
485
425
|
* <p>Describes the database credentials for connecting to a database on an Amazon Redshift cluster.</p>
|
|
486
426
|
*/
|
|
@@ -496,12 +436,6 @@ export interface RedshiftDatabaseCredentials {
|
|
|
496
436
|
*/
|
|
497
437
|
Password: string | undefined;
|
|
498
438
|
}
|
|
499
|
-
export declare namespace RedshiftDatabaseCredentials {
|
|
500
|
-
/**
|
|
501
|
-
* @internal
|
|
502
|
-
*/
|
|
503
|
-
const filterSensitiveLog: (obj: RedshiftDatabaseCredentials) => any;
|
|
504
|
-
}
|
|
505
439
|
/**
|
|
506
440
|
* <p>Describes the database details required to connect to an Amazon Redshift database.</p>
|
|
507
441
|
*/
|
|
@@ -515,12 +449,6 @@ export interface RedshiftDatabase {
|
|
|
515
449
|
*/
|
|
516
450
|
ClusterIdentifier: string | undefined;
|
|
517
451
|
}
|
|
518
|
-
export declare namespace RedshiftDatabase {
|
|
519
|
-
/**
|
|
520
|
-
* @internal
|
|
521
|
-
*/
|
|
522
|
-
const filterSensitiveLog: (obj: RedshiftDatabase) => any;
|
|
523
|
-
}
|
|
524
452
|
/**
|
|
525
453
|
* <p>Describes the data specification of an Amazon Redshift <code>DataSource</code>.</p>
|
|
526
454
|
*/
|
|
@@ -656,12 +584,6 @@ export interface RedshiftDataSpec {
|
|
|
656
584
|
*/
|
|
657
585
|
DataSchemaUri?: string;
|
|
658
586
|
}
|
|
659
|
-
export declare namespace RedshiftDataSpec {
|
|
660
|
-
/**
|
|
661
|
-
* @internal
|
|
662
|
-
*/
|
|
663
|
-
const filterSensitiveLog: (obj: RedshiftDataSpec) => any;
|
|
664
|
-
}
|
|
665
587
|
export interface CreateDataSourceFromRedshiftInput {
|
|
666
588
|
/**
|
|
667
589
|
* <p>A user-supplied ID that uniquely identifies the <code>DataSource</code>.</p>
|
|
@@ -736,12 +658,6 @@ export interface CreateDataSourceFromRedshiftInput {
|
|
|
736
658
|
*/
|
|
737
659
|
ComputeStatistics?: boolean;
|
|
738
660
|
}
|
|
739
|
-
export declare namespace CreateDataSourceFromRedshiftInput {
|
|
740
|
-
/**
|
|
741
|
-
* @internal
|
|
742
|
-
*/
|
|
743
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRedshiftInput) => any;
|
|
744
|
-
}
|
|
745
661
|
/**
|
|
746
662
|
* <p> Represents the output of a <code>CreateDataSourceFromRedshift</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
747
663
|
* <p>The <code>CreateDataSourceFromRedshift</code> operation is asynchronous. You can poll for updates by using
|
|
@@ -755,12 +671,6 @@ export interface CreateDataSourceFromRedshiftOutput {
|
|
|
755
671
|
*/
|
|
756
672
|
DataSourceId?: string;
|
|
757
673
|
}
|
|
758
|
-
export declare namespace CreateDataSourceFromRedshiftOutput {
|
|
759
|
-
/**
|
|
760
|
-
* @internal
|
|
761
|
-
*/
|
|
762
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromRedshiftOutput) => any;
|
|
763
|
-
}
|
|
764
674
|
/**
|
|
765
675
|
* <p> Describes the data specification of a <code>DataSource</code>.</p>
|
|
766
676
|
*/
|
|
@@ -885,12 +795,6 @@ export interface S3DataSpec {
|
|
|
885
795
|
*/
|
|
886
796
|
DataSchemaLocationS3?: string;
|
|
887
797
|
}
|
|
888
|
-
export declare namespace S3DataSpec {
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
const filterSensitiveLog: (obj: S3DataSpec) => any;
|
|
893
|
-
}
|
|
894
798
|
export interface CreateDataSourceFromS3Input {
|
|
895
799
|
/**
|
|
896
800
|
* <p>A user-supplied identifier that uniquely identifies the <code>DataSource</code>. </p>
|
|
@@ -928,12 +832,6 @@ export interface CreateDataSourceFromS3Input {
|
|
|
928
832
|
*/
|
|
929
833
|
ComputeStatistics?: boolean;
|
|
930
834
|
}
|
|
931
|
-
export declare namespace CreateDataSourceFromS3Input {
|
|
932
|
-
/**
|
|
933
|
-
* @internal
|
|
934
|
-
*/
|
|
935
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromS3Input) => any;
|
|
936
|
-
}
|
|
937
835
|
/**
|
|
938
836
|
* <p> Represents the output of a <code>CreateDataSourceFromS3</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
939
837
|
* <p>The <code>CreateDataSourceFromS3</code> operation is asynchronous. You can poll for updates by using
|
|
@@ -947,12 +845,6 @@ export interface CreateDataSourceFromS3Output {
|
|
|
947
845
|
*/
|
|
948
846
|
DataSourceId?: string;
|
|
949
847
|
}
|
|
950
|
-
export declare namespace CreateDataSourceFromS3Output {
|
|
951
|
-
/**
|
|
952
|
-
* @internal
|
|
953
|
-
*/
|
|
954
|
-
const filterSensitiveLog: (obj: CreateDataSourceFromS3Output) => any;
|
|
955
|
-
}
|
|
956
848
|
export interface CreateEvaluationInput {
|
|
957
849
|
/**
|
|
958
850
|
* <p>A user-supplied ID that uniquely identifies the <code>Evaluation</code>.</p>
|
|
@@ -973,12 +865,6 @@ export interface CreateEvaluationInput {
|
|
|
973
865
|
*/
|
|
974
866
|
EvaluationDataSourceId: string | undefined;
|
|
975
867
|
}
|
|
976
|
-
export declare namespace CreateEvaluationInput {
|
|
977
|
-
/**
|
|
978
|
-
* @internal
|
|
979
|
-
*/
|
|
980
|
-
const filterSensitiveLog: (obj: CreateEvaluationInput) => any;
|
|
981
|
-
}
|
|
982
868
|
/**
|
|
983
869
|
* <p> Represents the output of a <code>CreateEvaluation</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
984
870
|
* <p>
|
|
@@ -994,12 +880,6 @@ export interface CreateEvaluationOutput {
|
|
|
994
880
|
*/
|
|
995
881
|
EvaluationId?: string;
|
|
996
882
|
}
|
|
997
|
-
export declare namespace CreateEvaluationOutput {
|
|
998
|
-
/**
|
|
999
|
-
* @internal
|
|
1000
|
-
*/
|
|
1001
|
-
const filterSensitiveLog: (obj: CreateEvaluationOutput) => any;
|
|
1002
|
-
}
|
|
1003
883
|
export declare enum MLModelType {
|
|
1004
884
|
BINARY = "BINARY",
|
|
1005
885
|
MULTICLASS = "MULTICLASS",
|
|
@@ -1092,12 +972,6 @@ export interface CreateMLModelInput {
|
|
|
1092
972
|
*/
|
|
1093
973
|
RecipeUri?: string;
|
|
1094
974
|
}
|
|
1095
|
-
export declare namespace CreateMLModelInput {
|
|
1096
|
-
/**
|
|
1097
|
-
* @internal
|
|
1098
|
-
*/
|
|
1099
|
-
const filterSensitiveLog: (obj: CreateMLModelInput) => any;
|
|
1100
|
-
}
|
|
1101
975
|
/**
|
|
1102
976
|
* <p> Represents the output of a <code>CreateMLModel</code> operation, and is an acknowledgement that Amazon ML received the request.</p>
|
|
1103
977
|
* <p>The <code>CreateMLModel</code> operation is asynchronous. You can poll for status updates by using the
|
|
@@ -1112,24 +986,12 @@ export interface CreateMLModelOutput {
|
|
|
1112
986
|
*/
|
|
1113
987
|
MLModelId?: string;
|
|
1114
988
|
}
|
|
1115
|
-
export declare namespace CreateMLModelOutput {
|
|
1116
|
-
/**
|
|
1117
|
-
* @internal
|
|
1118
|
-
*/
|
|
1119
|
-
const filterSensitiveLog: (obj: CreateMLModelOutput) => any;
|
|
1120
|
-
}
|
|
1121
989
|
export interface CreateRealtimeEndpointInput {
|
|
1122
990
|
/**
|
|
1123
991
|
* <p>The ID assigned to the <code>MLModel</code> during creation.</p>
|
|
1124
992
|
*/
|
|
1125
993
|
MLModelId: string | undefined;
|
|
1126
994
|
}
|
|
1127
|
-
export declare namespace CreateRealtimeEndpointInput {
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
const filterSensitiveLog: (obj: CreateRealtimeEndpointInput) => any;
|
|
1132
|
-
}
|
|
1133
995
|
export declare enum RealtimeEndpointStatus {
|
|
1134
996
|
FAILED = "FAILED",
|
|
1135
997
|
NONE = "NONE",
|
|
@@ -1173,12 +1035,6 @@ export interface RealtimeEndpointInfo {
|
|
|
1173
1035
|
*/
|
|
1174
1036
|
EndpointStatus?: RealtimeEndpointStatus | string;
|
|
1175
1037
|
}
|
|
1176
|
-
export declare namespace RealtimeEndpointInfo {
|
|
1177
|
-
/**
|
|
1178
|
-
* @internal
|
|
1179
|
-
*/
|
|
1180
|
-
const filterSensitiveLog: (obj: RealtimeEndpointInfo) => any;
|
|
1181
|
-
}
|
|
1182
1038
|
/**
|
|
1183
1039
|
* <p>Represents the output of an <code>CreateRealtimeEndpoint</code> operation.</p>
|
|
1184
1040
|
* <p>The result contains the <code>MLModelId</code> and the endpoint information for the <code>MLModel</code>.</p>
|
|
@@ -1197,24 +1053,12 @@ export interface CreateRealtimeEndpointOutput {
|
|
|
1197
1053
|
*/
|
|
1198
1054
|
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
1199
1055
|
}
|
|
1200
|
-
export declare namespace CreateRealtimeEndpointOutput {
|
|
1201
|
-
/**
|
|
1202
|
-
* @internal
|
|
1203
|
-
*/
|
|
1204
|
-
const filterSensitiveLog: (obj: CreateRealtimeEndpointOutput) => any;
|
|
1205
|
-
}
|
|
1206
1056
|
export interface DeleteBatchPredictionInput {
|
|
1207
1057
|
/**
|
|
1208
1058
|
* <p>A user-supplied ID that uniquely identifies the <code>BatchPrediction</code>.</p>
|
|
1209
1059
|
*/
|
|
1210
1060
|
BatchPredictionId: string | undefined;
|
|
1211
1061
|
}
|
|
1212
|
-
export declare namespace DeleteBatchPredictionInput {
|
|
1213
|
-
/**
|
|
1214
|
-
* @internal
|
|
1215
|
-
*/
|
|
1216
|
-
const filterSensitiveLog: (obj: DeleteBatchPredictionInput) => any;
|
|
1217
|
-
}
|
|
1218
1062
|
/**
|
|
1219
1063
|
* <p> Represents the output of a <code>DeleteBatchPrediction</code> operation.</p>
|
|
1220
1064
|
* <p>You can use the <code>GetBatchPrediction</code> operation and check the value of the <code>Status</code> parameter to see whether a
|
|
@@ -1226,24 +1070,12 @@ export interface DeleteBatchPredictionOutput {
|
|
|
1226
1070
|
*/
|
|
1227
1071
|
BatchPredictionId?: string;
|
|
1228
1072
|
}
|
|
1229
|
-
export declare namespace DeleteBatchPredictionOutput {
|
|
1230
|
-
/**
|
|
1231
|
-
* @internal
|
|
1232
|
-
*/
|
|
1233
|
-
const filterSensitiveLog: (obj: DeleteBatchPredictionOutput) => any;
|
|
1234
|
-
}
|
|
1235
1073
|
export interface DeleteDataSourceInput {
|
|
1236
1074
|
/**
|
|
1237
1075
|
* <p>A user-supplied ID that uniquely identifies the <code>DataSource</code>.</p>
|
|
1238
1076
|
*/
|
|
1239
1077
|
DataSourceId: string | undefined;
|
|
1240
1078
|
}
|
|
1241
|
-
export declare namespace DeleteDataSourceInput {
|
|
1242
|
-
/**
|
|
1243
|
-
* @internal
|
|
1244
|
-
*/
|
|
1245
|
-
const filterSensitiveLog: (obj: DeleteDataSourceInput) => any;
|
|
1246
|
-
}
|
|
1247
1079
|
/**
|
|
1248
1080
|
* <p> Represents the output of a <code>DeleteDataSource</code> operation.</p>
|
|
1249
1081
|
*/
|
|
@@ -1253,24 +1085,12 @@ export interface DeleteDataSourceOutput {
|
|
|
1253
1085
|
*/
|
|
1254
1086
|
DataSourceId?: string;
|
|
1255
1087
|
}
|
|
1256
|
-
export declare namespace DeleteDataSourceOutput {
|
|
1257
|
-
/**
|
|
1258
|
-
* @internal
|
|
1259
|
-
*/
|
|
1260
|
-
const filterSensitiveLog: (obj: DeleteDataSourceOutput) => any;
|
|
1261
|
-
}
|
|
1262
1088
|
export interface DeleteEvaluationInput {
|
|
1263
1089
|
/**
|
|
1264
1090
|
* <p>A user-supplied ID that uniquely identifies the <code>Evaluation</code> to delete.</p>
|
|
1265
1091
|
*/
|
|
1266
1092
|
EvaluationId: string | undefined;
|
|
1267
1093
|
}
|
|
1268
|
-
export declare namespace DeleteEvaluationInput {
|
|
1269
|
-
/**
|
|
1270
|
-
* @internal
|
|
1271
|
-
*/
|
|
1272
|
-
const filterSensitiveLog: (obj: DeleteEvaluationInput) => any;
|
|
1273
|
-
}
|
|
1274
1094
|
/**
|
|
1275
1095
|
* <p> Represents the output of a <code>DeleteEvaluation</code> operation. The output indicates that Amazon Machine Learning (Amazon ML) received the request.</p>
|
|
1276
1096
|
* <p>You can use the <code>GetEvaluation</code> operation and check the value of the <code>Status</code> parameter to see whether an
|
|
@@ -1282,24 +1102,12 @@ export interface DeleteEvaluationOutput {
|
|
|
1282
1102
|
*/
|
|
1283
1103
|
EvaluationId?: string;
|
|
1284
1104
|
}
|
|
1285
|
-
export declare namespace DeleteEvaluationOutput {
|
|
1286
|
-
/**
|
|
1287
|
-
* @internal
|
|
1288
|
-
*/
|
|
1289
|
-
const filterSensitiveLog: (obj: DeleteEvaluationOutput) => any;
|
|
1290
|
-
}
|
|
1291
1105
|
export interface DeleteMLModelInput {
|
|
1292
1106
|
/**
|
|
1293
1107
|
* <p>A user-supplied ID that uniquely identifies the <code>MLModel</code>.</p>
|
|
1294
1108
|
*/
|
|
1295
1109
|
MLModelId: string | undefined;
|
|
1296
1110
|
}
|
|
1297
|
-
export declare namespace DeleteMLModelInput {
|
|
1298
|
-
/**
|
|
1299
|
-
* @internal
|
|
1300
|
-
*/
|
|
1301
|
-
const filterSensitiveLog: (obj: DeleteMLModelInput) => any;
|
|
1302
|
-
}
|
|
1303
1111
|
/**
|
|
1304
1112
|
* <p>Represents the output of a <code>DeleteMLModel</code> operation.</p>
|
|
1305
1113
|
* <p>You can use the <code>GetMLModel</code> operation and check the value of the <code>Status</code> parameter to see whether an
|
|
@@ -1311,24 +1119,12 @@ export interface DeleteMLModelOutput {
|
|
|
1311
1119
|
*/
|
|
1312
1120
|
MLModelId?: string;
|
|
1313
1121
|
}
|
|
1314
|
-
export declare namespace DeleteMLModelOutput {
|
|
1315
|
-
/**
|
|
1316
|
-
* @internal
|
|
1317
|
-
*/
|
|
1318
|
-
const filterSensitiveLog: (obj: DeleteMLModelOutput) => any;
|
|
1319
|
-
}
|
|
1320
1122
|
export interface DeleteRealtimeEndpointInput {
|
|
1321
1123
|
/**
|
|
1322
1124
|
* <p>The ID assigned to the <code>MLModel</code> during creation.</p>
|
|
1323
1125
|
*/
|
|
1324
1126
|
MLModelId: string | undefined;
|
|
1325
1127
|
}
|
|
1326
|
-
export declare namespace DeleteRealtimeEndpointInput {
|
|
1327
|
-
/**
|
|
1328
|
-
* @internal
|
|
1329
|
-
*/
|
|
1330
|
-
const filterSensitiveLog: (obj: DeleteRealtimeEndpointInput) => any;
|
|
1331
|
-
}
|
|
1332
1128
|
/**
|
|
1333
1129
|
* <p>Represents the output of an <code>DeleteRealtimeEndpoint</code> operation.</p>
|
|
1334
1130
|
* <p>The result contains the <code>MLModelId</code> and the endpoint information for the <code>MLModel</code>. </p>
|
|
@@ -1345,12 +1141,6 @@ export interface DeleteRealtimeEndpointOutput {
|
|
|
1345
1141
|
*/
|
|
1346
1142
|
RealtimeEndpointInfo?: RealtimeEndpointInfo;
|
|
1347
1143
|
}
|
|
1348
|
-
export declare namespace DeleteRealtimeEndpointOutput {
|
|
1349
|
-
/**
|
|
1350
|
-
* @internal
|
|
1351
|
-
*/
|
|
1352
|
-
const filterSensitiveLog: (obj: DeleteRealtimeEndpointOutput) => any;
|
|
1353
|
-
}
|
|
1354
1144
|
export interface DeleteTagsInput {
|
|
1355
1145
|
/**
|
|
1356
1146
|
* <p>One or more tags to delete.</p>
|
|
@@ -1365,12 +1155,6 @@ export interface DeleteTagsInput {
|
|
|
1365
1155
|
*/
|
|
1366
1156
|
ResourceType: TaggableResourceType | string | undefined;
|
|
1367
1157
|
}
|
|
1368
|
-
export declare namespace DeleteTagsInput {
|
|
1369
|
-
/**
|
|
1370
|
-
* @internal
|
|
1371
|
-
*/
|
|
1372
|
-
const filterSensitiveLog: (obj: DeleteTagsInput) => any;
|
|
1373
|
-
}
|
|
1374
1158
|
/**
|
|
1375
1159
|
* <p>Amazon ML returns the following elements.</p>
|
|
1376
1160
|
*/
|
|
@@ -1384,12 +1168,6 @@ export interface DeleteTagsOutput {
|
|
|
1384
1168
|
*/
|
|
1385
1169
|
ResourceType?: TaggableResourceType | string;
|
|
1386
1170
|
}
|
|
1387
|
-
export declare namespace DeleteTagsOutput {
|
|
1388
|
-
/**
|
|
1389
|
-
* @internal
|
|
1390
|
-
*/
|
|
1391
|
-
const filterSensitiveLog: (obj: DeleteTagsOutput) => any;
|
|
1392
|
-
}
|
|
1393
1171
|
export declare enum BatchPredictionFilterVariable {
|
|
1394
1172
|
CREATED_AT = "CreatedAt",
|
|
1395
1173
|
DATASOURCE_ID = "DataSourceId",
|
|
@@ -1514,12 +1292,6 @@ export interface DescribeBatchPredictionsInput {
|
|
|
1514
1292
|
*/
|
|
1515
1293
|
Limit?: number;
|
|
1516
1294
|
}
|
|
1517
|
-
export declare namespace DescribeBatchPredictionsInput {
|
|
1518
|
-
/**
|
|
1519
|
-
* @internal
|
|
1520
|
-
*/
|
|
1521
|
-
const filterSensitiveLog: (obj: DescribeBatchPredictionsInput) => any;
|
|
1522
|
-
}
|
|
1523
1295
|
export declare enum EntityStatus {
|
|
1524
1296
|
COMPLETED = "COMPLETED",
|
|
1525
1297
|
DELETED = "DELETED",
|
|
@@ -1622,12 +1394,6 @@ export interface BatchPrediction {
|
|
|
1622
1394
|
*/
|
|
1623
1395
|
InvalidRecordCount?: number;
|
|
1624
1396
|
}
|
|
1625
|
-
export declare namespace BatchPrediction {
|
|
1626
|
-
/**
|
|
1627
|
-
* @internal
|
|
1628
|
-
*/
|
|
1629
|
-
const filterSensitiveLog: (obj: BatchPrediction) => any;
|
|
1630
|
-
}
|
|
1631
1397
|
/**
|
|
1632
1398
|
* <p>Represents the output of a <code>DescribeBatchPredictions</code> operation. The content is essentially a list of <code>BatchPrediction</code>s.</p>
|
|
1633
1399
|
*/
|
|
@@ -1642,12 +1408,6 @@ export interface DescribeBatchPredictionsOutput {
|
|
|
1642
1408
|
*/
|
|
1643
1409
|
NextToken?: string;
|
|
1644
1410
|
}
|
|
1645
|
-
export declare namespace DescribeBatchPredictionsOutput {
|
|
1646
|
-
/**
|
|
1647
|
-
* @internal
|
|
1648
|
-
*/
|
|
1649
|
-
const filterSensitiveLog: (obj: DescribeBatchPredictionsOutput) => any;
|
|
1650
|
-
}
|
|
1651
1411
|
export declare enum DataSourceFilterVariable {
|
|
1652
1412
|
CREATED_AT = "CreatedAt",
|
|
1653
1413
|
DATA_URI = "DataLocationS3",
|
|
@@ -1757,12 +1517,6 @@ export interface DescribeDataSourcesInput {
|
|
|
1757
1517
|
*/
|
|
1758
1518
|
Limit?: number;
|
|
1759
1519
|
}
|
|
1760
|
-
export declare namespace DescribeDataSourcesInput {
|
|
1761
|
-
/**
|
|
1762
|
-
* @internal
|
|
1763
|
-
*/
|
|
1764
|
-
const filterSensitiveLog: (obj: DescribeDataSourcesInput) => any;
|
|
1765
|
-
}
|
|
1766
1520
|
/**
|
|
1767
1521
|
* <p>The datasource details that are specific to Amazon RDS.</p>
|
|
1768
1522
|
*/
|
|
@@ -1793,12 +1547,6 @@ export interface RDSMetadata {
|
|
|
1793
1547
|
*/
|
|
1794
1548
|
DataPipelineId?: string;
|
|
1795
1549
|
}
|
|
1796
|
-
export declare namespace RDSMetadata {
|
|
1797
|
-
/**
|
|
1798
|
-
* @internal
|
|
1799
|
-
*/
|
|
1800
|
-
const filterSensitiveLog: (obj: RDSMetadata) => any;
|
|
1801
|
-
}
|
|
1802
1550
|
/**
|
|
1803
1551
|
* <p>Describes the <code>DataSource</code> details specific to Amazon Redshift.</p>
|
|
1804
1552
|
*/
|
|
@@ -1817,12 +1565,6 @@ export interface RedshiftMetadata {
|
|
|
1817
1565
|
*/
|
|
1818
1566
|
SelectSqlQuery?: string;
|
|
1819
1567
|
}
|
|
1820
|
-
export declare namespace RedshiftMetadata {
|
|
1821
|
-
/**
|
|
1822
|
-
* @internal
|
|
1823
|
-
*/
|
|
1824
|
-
const filterSensitiveLog: (obj: RedshiftMetadata) => any;
|
|
1825
|
-
}
|
|
1826
1568
|
/**
|
|
1827
1569
|
* <p> Represents the output of the <code>GetDataSource</code> operation. </p>
|
|
1828
1570
|
* <p> The content consists of the detailed metadata and data file information and the current status of the <code>DataSource</code>. </p>
|
|
@@ -1922,12 +1664,6 @@ export interface DataSource {
|
|
|
1922
1664
|
*/
|
|
1923
1665
|
StartedAt?: Date;
|
|
1924
1666
|
}
|
|
1925
|
-
export declare namespace DataSource {
|
|
1926
|
-
/**
|
|
1927
|
-
* @internal
|
|
1928
|
-
*/
|
|
1929
|
-
const filterSensitiveLog: (obj: DataSource) => any;
|
|
1930
|
-
}
|
|
1931
1667
|
/**
|
|
1932
1668
|
* <p>Represents the query results from a <a>DescribeDataSources</a> operation. The content is essentially a list of <code>DataSource</code>.</p>
|
|
1933
1669
|
*/
|
|
@@ -1942,12 +1678,6 @@ export interface DescribeDataSourcesOutput {
|
|
|
1942
1678
|
*/
|
|
1943
1679
|
NextToken?: string;
|
|
1944
1680
|
}
|
|
1945
|
-
export declare namespace DescribeDataSourcesOutput {
|
|
1946
|
-
/**
|
|
1947
|
-
* @internal
|
|
1948
|
-
*/
|
|
1949
|
-
const filterSensitiveLog: (obj: DescribeDataSourcesOutput) => any;
|
|
1950
|
-
}
|
|
1951
1681
|
export declare enum EvaluationFilterVariable {
|
|
1952
1682
|
CREATED_AT = "CreatedAt",
|
|
1953
1683
|
DATASOURCE_ID = "DataSourceId",
|
|
@@ -2068,12 +1798,6 @@ export interface DescribeEvaluationsInput {
|
|
|
2068
1798
|
*/
|
|
2069
1799
|
Limit?: number;
|
|
2070
1800
|
}
|
|
2071
|
-
export declare namespace DescribeEvaluationsInput {
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
const filterSensitiveLog: (obj: DescribeEvaluationsInput) => any;
|
|
2076
|
-
}
|
|
2077
1801
|
/**
|
|
2078
1802
|
* <p>Measurements of how well the <code>MLModel</code> performed on known observations. One of the following metrics is returned, based on the type of the <code>MLModel</code>:
|
|
2079
1803
|
* </p>
|
|
@@ -2095,12 +1819,6 @@ export declare namespace DescribeEvaluationsInput {
|
|
|
2095
1819
|
export interface PerformanceMetrics {
|
|
2096
1820
|
Properties?: Record<string, string>;
|
|
2097
1821
|
}
|
|
2098
|
-
export declare namespace PerformanceMetrics {
|
|
2099
|
-
/**
|
|
2100
|
-
* @internal
|
|
2101
|
-
*/
|
|
2102
|
-
const filterSensitiveLog: (obj: PerformanceMetrics) => any;
|
|
2103
|
-
}
|
|
2104
1822
|
/**
|
|
2105
1823
|
* <p> Represents the output of <code>GetEvaluation</code> operation. </p>
|
|
2106
1824
|
* <p>The content consists of the detailed metadata and data file information and the current status of the
|
|
@@ -2202,12 +1920,6 @@ export interface Evaluation {
|
|
|
2202
1920
|
*/
|
|
2203
1921
|
StartedAt?: Date;
|
|
2204
1922
|
}
|
|
2205
|
-
export declare namespace Evaluation {
|
|
2206
|
-
/**
|
|
2207
|
-
* @internal
|
|
2208
|
-
*/
|
|
2209
|
-
const filterSensitiveLog: (obj: Evaluation) => any;
|
|
2210
|
-
}
|
|
2211
1923
|
/**
|
|
2212
1924
|
* <p>Represents the query results from a <code>DescribeEvaluations</code> operation. The content is essentially a list of <code>Evaluation</code>.</p>
|
|
2213
1925
|
*/
|
|
@@ -2222,12 +1934,6 @@ export interface DescribeEvaluationsOutput {
|
|
|
2222
1934
|
*/
|
|
2223
1935
|
NextToken?: string;
|
|
2224
1936
|
}
|
|
2225
|
-
export declare namespace DescribeEvaluationsOutput {
|
|
2226
|
-
/**
|
|
2227
|
-
* @internal
|
|
2228
|
-
*/
|
|
2229
|
-
const filterSensitiveLog: (obj: DescribeEvaluationsOutput) => any;
|
|
2230
|
-
}
|
|
2231
1937
|
export declare enum MLModelFilterVariable {
|
|
2232
1938
|
ALGORITHM = "Algorithm",
|
|
2233
1939
|
CREATED_AT = "CreatedAt",
|
|
@@ -2358,12 +2064,6 @@ export interface DescribeMLModelsInput {
|
|
|
2358
2064
|
*/
|
|
2359
2065
|
Limit?: number;
|
|
2360
2066
|
}
|
|
2361
|
-
export declare namespace DescribeMLModelsInput {
|
|
2362
|
-
/**
|
|
2363
|
-
* @internal
|
|
2364
|
-
*/
|
|
2365
|
-
const filterSensitiveLog: (obj: DescribeMLModelsInput) => any;
|
|
2366
|
-
}
|
|
2367
2067
|
/**
|
|
2368
2068
|
* <p> Represents the output of a <code>GetMLModel</code> operation. </p>
|
|
2369
2069
|
* <p>The content consists of the detailed metadata and the current status of the <code>MLModel</code>.</p>
|
|
@@ -2534,12 +2234,6 @@ export interface MLModel {
|
|
|
2534
2234
|
*/
|
|
2535
2235
|
StartedAt?: Date;
|
|
2536
2236
|
}
|
|
2537
|
-
export declare namespace MLModel {
|
|
2538
|
-
/**
|
|
2539
|
-
* @internal
|
|
2540
|
-
*/
|
|
2541
|
-
const filterSensitiveLog: (obj: MLModel) => any;
|
|
2542
|
-
}
|
|
2543
2237
|
/**
|
|
2544
2238
|
* <p>Represents the output of a <code>DescribeMLModels</code> operation. The content is essentially a list of <code>MLModel</code>.</p>
|
|
2545
2239
|
*/
|
|
@@ -2553,12 +2247,6 @@ export interface DescribeMLModelsOutput {
|
|
|
2553
2247
|
*/
|
|
2554
2248
|
NextToken?: string;
|
|
2555
2249
|
}
|
|
2556
|
-
export declare namespace DescribeMLModelsOutput {
|
|
2557
|
-
/**
|
|
2558
|
-
* @internal
|
|
2559
|
-
*/
|
|
2560
|
-
const filterSensitiveLog: (obj: DescribeMLModelsOutput) => any;
|
|
2561
|
-
}
|
|
2562
2250
|
export interface DescribeTagsInput {
|
|
2563
2251
|
/**
|
|
2564
2252
|
* <p>The ID of the ML object. For example, <code>exampleModelId</code>. </p>
|
|
@@ -2569,12 +2257,6 @@ export interface DescribeTagsInput {
|
|
|
2569
2257
|
*/
|
|
2570
2258
|
ResourceType: TaggableResourceType | string | undefined;
|
|
2571
2259
|
}
|
|
2572
|
-
export declare namespace DescribeTagsInput {
|
|
2573
|
-
/**
|
|
2574
|
-
* @internal
|
|
2575
|
-
*/
|
|
2576
|
-
const filterSensitiveLog: (obj: DescribeTagsInput) => any;
|
|
2577
|
-
}
|
|
2578
2260
|
/**
|
|
2579
2261
|
* <p>Amazon ML returns the following elements.</p>
|
|
2580
2262
|
*/
|
|
@@ -2592,24 +2274,12 @@ export interface DescribeTagsOutput {
|
|
|
2592
2274
|
*/
|
|
2593
2275
|
Tags?: Tag[];
|
|
2594
2276
|
}
|
|
2595
|
-
export declare namespace DescribeTagsOutput {
|
|
2596
|
-
/**
|
|
2597
|
-
* @internal
|
|
2598
|
-
*/
|
|
2599
|
-
const filterSensitiveLog: (obj: DescribeTagsOutput) => any;
|
|
2600
|
-
}
|
|
2601
2277
|
export interface GetBatchPredictionInput {
|
|
2602
2278
|
/**
|
|
2603
2279
|
* <p>An ID assigned to the <code>BatchPrediction</code> at creation.</p>
|
|
2604
2280
|
*/
|
|
2605
2281
|
BatchPredictionId: string | undefined;
|
|
2606
2282
|
}
|
|
2607
|
-
export declare namespace GetBatchPredictionInput {
|
|
2608
|
-
/**
|
|
2609
|
-
* @internal
|
|
2610
|
-
*/
|
|
2611
|
-
const filterSensitiveLog: (obj: GetBatchPredictionInput) => any;
|
|
2612
|
-
}
|
|
2613
2283
|
/**
|
|
2614
2284
|
* <p>Represents the output of a <code>GetBatchPrediction</code> operation and describes a <code>BatchPrediction</code>.</p>
|
|
2615
2285
|
*/
|
|
@@ -2707,12 +2377,6 @@ export interface GetBatchPredictionOutput {
|
|
|
2707
2377
|
*/
|
|
2708
2378
|
InvalidRecordCount?: number;
|
|
2709
2379
|
}
|
|
2710
|
-
export declare namespace GetBatchPredictionOutput {
|
|
2711
|
-
/**
|
|
2712
|
-
* @internal
|
|
2713
|
-
*/
|
|
2714
|
-
const filterSensitiveLog: (obj: GetBatchPredictionOutput) => any;
|
|
2715
|
-
}
|
|
2716
2380
|
export interface GetDataSourceInput {
|
|
2717
2381
|
/**
|
|
2718
2382
|
* <p>The ID assigned to the <code>DataSource</code> at creation.</p>
|
|
@@ -2725,12 +2389,6 @@ export interface GetDataSourceInput {
|
|
|
2725
2389
|
*/
|
|
2726
2390
|
Verbose?: boolean;
|
|
2727
2391
|
}
|
|
2728
|
-
export declare namespace GetDataSourceInput {
|
|
2729
|
-
/**
|
|
2730
|
-
* @internal
|
|
2731
|
-
*/
|
|
2732
|
-
const filterSensitiveLog: (obj: GetDataSourceInput) => any;
|
|
2733
|
-
}
|
|
2734
2392
|
/**
|
|
2735
2393
|
* <p>Represents the output of a <code>GetDataSource</code> operation and describes a <code>DataSource</code>.</p>
|
|
2736
2394
|
*/
|
|
@@ -2843,24 +2501,12 @@ export interface GetDataSourceOutput {
|
|
|
2843
2501
|
*/
|
|
2844
2502
|
DataSourceSchema?: string;
|
|
2845
2503
|
}
|
|
2846
|
-
export declare namespace GetDataSourceOutput {
|
|
2847
|
-
/**
|
|
2848
|
-
* @internal
|
|
2849
|
-
*/
|
|
2850
|
-
const filterSensitiveLog: (obj: GetDataSourceOutput) => any;
|
|
2851
|
-
}
|
|
2852
2504
|
export interface GetEvaluationInput {
|
|
2853
2505
|
/**
|
|
2854
2506
|
* <p>The ID of the <code>Evaluation</code> to retrieve. The evaluation of each <code>MLModel</code> is recorded and cataloged. The ID provides the means to access the information. </p>
|
|
2855
2507
|
*/
|
|
2856
2508
|
EvaluationId: string | undefined;
|
|
2857
2509
|
}
|
|
2858
|
-
export declare namespace GetEvaluationInput {
|
|
2859
|
-
/**
|
|
2860
|
-
* @internal
|
|
2861
|
-
*/
|
|
2862
|
-
const filterSensitiveLog: (obj: GetEvaluationInput) => any;
|
|
2863
|
-
}
|
|
2864
2510
|
/**
|
|
2865
2511
|
* <p>Represents the output of a <code>GetEvaluation</code> operation and describes an <code>Evaluation</code>.</p>
|
|
2866
2512
|
*/
|
|
@@ -2963,12 +2609,6 @@ export interface GetEvaluationOutput {
|
|
|
2963
2609
|
*/
|
|
2964
2610
|
StartedAt?: Date;
|
|
2965
2611
|
}
|
|
2966
|
-
export declare namespace GetEvaluationOutput {
|
|
2967
|
-
/**
|
|
2968
|
-
* @internal
|
|
2969
|
-
*/
|
|
2970
|
-
const filterSensitiveLog: (obj: GetEvaluationOutput) => any;
|
|
2971
|
-
}
|
|
2972
2612
|
export interface GetMLModelInput {
|
|
2973
2613
|
/**
|
|
2974
2614
|
* <p>The ID assigned to the <code>MLModel</code> at creation.</p>
|
|
@@ -2981,12 +2621,6 @@ export interface GetMLModelInput {
|
|
|
2981
2621
|
*/
|
|
2982
2622
|
Verbose?: boolean;
|
|
2983
2623
|
}
|
|
2984
|
-
export declare namespace GetMLModelInput {
|
|
2985
|
-
/**
|
|
2986
|
-
* @internal
|
|
2987
|
-
*/
|
|
2988
|
-
const filterSensitiveLog: (obj: GetMLModelInput) => any;
|
|
2989
|
-
}
|
|
2990
2624
|
/**
|
|
2991
2625
|
* <p>Represents the output of a <code>GetMLModel</code> operation, and provides detailed information about a <code>MLModel</code>.</p>
|
|
2992
2626
|
*/
|
|
@@ -3168,12 +2802,6 @@ export interface GetMLModelOutput {
|
|
|
3168
2802
|
*/
|
|
3169
2803
|
Schema?: string;
|
|
3170
2804
|
}
|
|
3171
|
-
export declare namespace GetMLModelOutput {
|
|
3172
|
-
/**
|
|
3173
|
-
* @internal
|
|
3174
|
-
*/
|
|
3175
|
-
const filterSensitiveLog: (obj: GetMLModelOutput) => any;
|
|
3176
|
-
}
|
|
3177
2805
|
/**
|
|
3178
2806
|
* <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
|
|
3179
2807
|
*/
|
|
@@ -3197,12 +2825,6 @@ export interface PredictInput {
|
|
|
3197
2825
|
Record: Record<string, string> | undefined;
|
|
3198
2826
|
PredictEndpoint: string | undefined;
|
|
3199
2827
|
}
|
|
3200
|
-
export declare namespace PredictInput {
|
|
3201
|
-
/**
|
|
3202
|
-
* @internal
|
|
3203
|
-
*/
|
|
3204
|
-
const filterSensitiveLog: (obj: PredictInput) => any;
|
|
3205
|
-
}
|
|
3206
2828
|
/**
|
|
3207
2829
|
* <p>The exception is thrown when a predict request is made to an unmounted <code>MLModel</code>.</p>
|
|
3208
2830
|
*/
|
|
@@ -3268,12 +2890,6 @@ export interface Prediction {
|
|
|
3268
2890
|
*/
|
|
3269
2891
|
details?: Record<string, string>;
|
|
3270
2892
|
}
|
|
3271
|
-
export declare namespace Prediction {
|
|
3272
|
-
/**
|
|
3273
|
-
* @internal
|
|
3274
|
-
*/
|
|
3275
|
-
const filterSensitiveLog: (obj: Prediction) => any;
|
|
3276
|
-
}
|
|
3277
2893
|
export interface PredictOutput {
|
|
3278
2894
|
/**
|
|
3279
2895
|
* <p>The output from a <code>Predict</code> operation: </p>
|
|
@@ -3307,12 +2923,6 @@ export interface PredictOutput {
|
|
|
3307
2923
|
*/
|
|
3308
2924
|
Prediction?: Prediction;
|
|
3309
2925
|
}
|
|
3310
|
-
export declare namespace PredictOutput {
|
|
3311
|
-
/**
|
|
3312
|
-
* @internal
|
|
3313
|
-
*/
|
|
3314
|
-
const filterSensitiveLog: (obj: PredictOutput) => any;
|
|
3315
|
-
}
|
|
3316
2926
|
export interface UpdateBatchPredictionInput {
|
|
3317
2927
|
/**
|
|
3318
2928
|
* <p>The ID assigned to the <code>BatchPrediction</code> during creation.</p>
|
|
@@ -3323,12 +2933,6 @@ export interface UpdateBatchPredictionInput {
|
|
|
3323
2933
|
*/
|
|
3324
2934
|
BatchPredictionName: string | undefined;
|
|
3325
2935
|
}
|
|
3326
|
-
export declare namespace UpdateBatchPredictionInput {
|
|
3327
|
-
/**
|
|
3328
|
-
* @internal
|
|
3329
|
-
*/
|
|
3330
|
-
const filterSensitiveLog: (obj: UpdateBatchPredictionInput) => any;
|
|
3331
|
-
}
|
|
3332
2936
|
/**
|
|
3333
2937
|
* <p>Represents the output of an <code>UpdateBatchPrediction</code> operation.</p>
|
|
3334
2938
|
* <p>You can see the updated content by using the <code>GetBatchPrediction</code> operation.</p>
|
|
@@ -3340,12 +2944,6 @@ export interface UpdateBatchPredictionOutput {
|
|
|
3340
2944
|
*/
|
|
3341
2945
|
BatchPredictionId?: string;
|
|
3342
2946
|
}
|
|
3343
|
-
export declare namespace UpdateBatchPredictionOutput {
|
|
3344
|
-
/**
|
|
3345
|
-
* @internal
|
|
3346
|
-
*/
|
|
3347
|
-
const filterSensitiveLog: (obj: UpdateBatchPredictionOutput) => any;
|
|
3348
|
-
}
|
|
3349
2947
|
export interface UpdateDataSourceInput {
|
|
3350
2948
|
/**
|
|
3351
2949
|
* <p>The ID assigned to the <code>DataSource</code> during creation.</p>
|
|
@@ -3356,12 +2954,6 @@ export interface UpdateDataSourceInput {
|
|
|
3356
2954
|
*/
|
|
3357
2955
|
DataSourceName: string | undefined;
|
|
3358
2956
|
}
|
|
3359
|
-
export declare namespace UpdateDataSourceInput {
|
|
3360
|
-
/**
|
|
3361
|
-
* @internal
|
|
3362
|
-
*/
|
|
3363
|
-
const filterSensitiveLog: (obj: UpdateDataSourceInput) => any;
|
|
3364
|
-
}
|
|
3365
2957
|
/**
|
|
3366
2958
|
* <p>Represents the output of an <code>UpdateDataSource</code> operation.</p>
|
|
3367
2959
|
* <p>You can see the updated content by using the <code>GetBatchPrediction</code> operation.</p>
|
|
@@ -3373,12 +2965,6 @@ export interface UpdateDataSourceOutput {
|
|
|
3373
2965
|
*/
|
|
3374
2966
|
DataSourceId?: string;
|
|
3375
2967
|
}
|
|
3376
|
-
export declare namespace UpdateDataSourceOutput {
|
|
3377
|
-
/**
|
|
3378
|
-
* @internal
|
|
3379
|
-
*/
|
|
3380
|
-
const filterSensitiveLog: (obj: UpdateDataSourceOutput) => any;
|
|
3381
|
-
}
|
|
3382
2968
|
export interface UpdateEvaluationInput {
|
|
3383
2969
|
/**
|
|
3384
2970
|
* <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
|
|
@@ -3389,12 +2975,6 @@ export interface UpdateEvaluationInput {
|
|
|
3389
2975
|
*/
|
|
3390
2976
|
EvaluationName: string | undefined;
|
|
3391
2977
|
}
|
|
3392
|
-
export declare namespace UpdateEvaluationInput {
|
|
3393
|
-
/**
|
|
3394
|
-
* @internal
|
|
3395
|
-
*/
|
|
3396
|
-
const filterSensitiveLog: (obj: UpdateEvaluationInput) => any;
|
|
3397
|
-
}
|
|
3398
2978
|
/**
|
|
3399
2979
|
* <p>Represents the output of an <code>UpdateEvaluation</code> operation.</p>
|
|
3400
2980
|
* <p>You can see the updated content by using the <code>GetEvaluation</code> operation.</p>
|
|
@@ -3406,12 +2986,6 @@ export interface UpdateEvaluationOutput {
|
|
|
3406
2986
|
*/
|
|
3407
2987
|
EvaluationId?: string;
|
|
3408
2988
|
}
|
|
3409
|
-
export declare namespace UpdateEvaluationOutput {
|
|
3410
|
-
/**
|
|
3411
|
-
* @internal
|
|
3412
|
-
*/
|
|
3413
|
-
const filterSensitiveLog: (obj: UpdateEvaluationOutput) => any;
|
|
3414
|
-
}
|
|
3415
2989
|
export interface UpdateMLModelInput {
|
|
3416
2990
|
/**
|
|
3417
2991
|
* <p>The ID assigned to the <code>MLModel</code> during creation.</p>
|
|
@@ -3427,12 +3001,6 @@ export interface UpdateMLModelInput {
|
|
|
3427
3001
|
*/
|
|
3428
3002
|
ScoreThreshold?: number;
|
|
3429
3003
|
}
|
|
3430
|
-
export declare namespace UpdateMLModelInput {
|
|
3431
|
-
/**
|
|
3432
|
-
* @internal
|
|
3433
|
-
*/
|
|
3434
|
-
const filterSensitiveLog: (obj: UpdateMLModelInput) => any;
|
|
3435
|
-
}
|
|
3436
3004
|
/**
|
|
3437
3005
|
* <p>Represents the output of an <code>UpdateMLModel</code> operation.</p>
|
|
3438
3006
|
* <p>You can see the updated content by using the <code>GetMLModel</code> operation.</p>
|
|
@@ -3444,9 +3012,295 @@ export interface UpdateMLModelOutput {
|
|
|
3444
3012
|
*/
|
|
3445
3013
|
MLModelId?: string;
|
|
3446
3014
|
}
|
|
3447
|
-
|
|
3448
|
-
|
|
3449
|
-
|
|
3450
|
-
|
|
3451
|
-
|
|
3452
|
-
|
|
3015
|
+
/**
|
|
3016
|
+
* @internal
|
|
3017
|
+
*/
|
|
3018
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
3019
|
+
/**
|
|
3020
|
+
* @internal
|
|
3021
|
+
*/
|
|
3022
|
+
export declare const AddTagsInputFilterSensitiveLog: (obj: AddTagsInput) => any;
|
|
3023
|
+
/**
|
|
3024
|
+
* @internal
|
|
3025
|
+
*/
|
|
3026
|
+
export declare const AddTagsOutputFilterSensitiveLog: (obj: AddTagsOutput) => any;
|
|
3027
|
+
/**
|
|
3028
|
+
* @internal
|
|
3029
|
+
*/
|
|
3030
|
+
export declare const CreateBatchPredictionInputFilterSensitiveLog: (obj: CreateBatchPredictionInput) => any;
|
|
3031
|
+
/**
|
|
3032
|
+
* @internal
|
|
3033
|
+
*/
|
|
3034
|
+
export declare const CreateBatchPredictionOutputFilterSensitiveLog: (obj: CreateBatchPredictionOutput) => any;
|
|
3035
|
+
/**
|
|
3036
|
+
* @internal
|
|
3037
|
+
*/
|
|
3038
|
+
export declare const RDSDatabaseCredentialsFilterSensitiveLog: (obj: RDSDatabaseCredentials) => any;
|
|
3039
|
+
/**
|
|
3040
|
+
* @internal
|
|
3041
|
+
*/
|
|
3042
|
+
export declare const RDSDatabaseFilterSensitiveLog: (obj: RDSDatabase) => any;
|
|
3043
|
+
/**
|
|
3044
|
+
* @internal
|
|
3045
|
+
*/
|
|
3046
|
+
export declare const RDSDataSpecFilterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
3047
|
+
/**
|
|
3048
|
+
* @internal
|
|
3049
|
+
*/
|
|
3050
|
+
export declare const CreateDataSourceFromRDSInputFilterSensitiveLog: (obj: CreateDataSourceFromRDSInput) => any;
|
|
3051
|
+
/**
|
|
3052
|
+
* @internal
|
|
3053
|
+
*/
|
|
3054
|
+
export declare const CreateDataSourceFromRDSOutputFilterSensitiveLog: (obj: CreateDataSourceFromRDSOutput) => any;
|
|
3055
|
+
/**
|
|
3056
|
+
* @internal
|
|
3057
|
+
*/
|
|
3058
|
+
export declare const RedshiftDatabaseCredentialsFilterSensitiveLog: (obj: RedshiftDatabaseCredentials) => any;
|
|
3059
|
+
/**
|
|
3060
|
+
* @internal
|
|
3061
|
+
*/
|
|
3062
|
+
export declare const RedshiftDatabaseFilterSensitiveLog: (obj: RedshiftDatabase) => any;
|
|
3063
|
+
/**
|
|
3064
|
+
* @internal
|
|
3065
|
+
*/
|
|
3066
|
+
export declare const RedshiftDataSpecFilterSensitiveLog: (obj: RedshiftDataSpec) => any;
|
|
3067
|
+
/**
|
|
3068
|
+
* @internal
|
|
3069
|
+
*/
|
|
3070
|
+
export declare const CreateDataSourceFromRedshiftInputFilterSensitiveLog: (obj: CreateDataSourceFromRedshiftInput) => any;
|
|
3071
|
+
/**
|
|
3072
|
+
* @internal
|
|
3073
|
+
*/
|
|
3074
|
+
export declare const CreateDataSourceFromRedshiftOutputFilterSensitiveLog: (obj: CreateDataSourceFromRedshiftOutput) => any;
|
|
3075
|
+
/**
|
|
3076
|
+
* @internal
|
|
3077
|
+
*/
|
|
3078
|
+
export declare const S3DataSpecFilterSensitiveLog: (obj: S3DataSpec) => any;
|
|
3079
|
+
/**
|
|
3080
|
+
* @internal
|
|
3081
|
+
*/
|
|
3082
|
+
export declare const CreateDataSourceFromS3InputFilterSensitiveLog: (obj: CreateDataSourceFromS3Input) => any;
|
|
3083
|
+
/**
|
|
3084
|
+
* @internal
|
|
3085
|
+
*/
|
|
3086
|
+
export declare const CreateDataSourceFromS3OutputFilterSensitiveLog: (obj: CreateDataSourceFromS3Output) => any;
|
|
3087
|
+
/**
|
|
3088
|
+
* @internal
|
|
3089
|
+
*/
|
|
3090
|
+
export declare const CreateEvaluationInputFilterSensitiveLog: (obj: CreateEvaluationInput) => any;
|
|
3091
|
+
/**
|
|
3092
|
+
* @internal
|
|
3093
|
+
*/
|
|
3094
|
+
export declare const CreateEvaluationOutputFilterSensitiveLog: (obj: CreateEvaluationOutput) => any;
|
|
3095
|
+
/**
|
|
3096
|
+
* @internal
|
|
3097
|
+
*/
|
|
3098
|
+
export declare const CreateMLModelInputFilterSensitiveLog: (obj: CreateMLModelInput) => any;
|
|
3099
|
+
/**
|
|
3100
|
+
* @internal
|
|
3101
|
+
*/
|
|
3102
|
+
export declare const CreateMLModelOutputFilterSensitiveLog: (obj: CreateMLModelOutput) => any;
|
|
3103
|
+
/**
|
|
3104
|
+
* @internal
|
|
3105
|
+
*/
|
|
3106
|
+
export declare const CreateRealtimeEndpointInputFilterSensitiveLog: (obj: CreateRealtimeEndpointInput) => any;
|
|
3107
|
+
/**
|
|
3108
|
+
* @internal
|
|
3109
|
+
*/
|
|
3110
|
+
export declare const RealtimeEndpointInfoFilterSensitiveLog: (obj: RealtimeEndpointInfo) => any;
|
|
3111
|
+
/**
|
|
3112
|
+
* @internal
|
|
3113
|
+
*/
|
|
3114
|
+
export declare const CreateRealtimeEndpointOutputFilterSensitiveLog: (obj: CreateRealtimeEndpointOutput) => any;
|
|
3115
|
+
/**
|
|
3116
|
+
* @internal
|
|
3117
|
+
*/
|
|
3118
|
+
export declare const DeleteBatchPredictionInputFilterSensitiveLog: (obj: DeleteBatchPredictionInput) => any;
|
|
3119
|
+
/**
|
|
3120
|
+
* @internal
|
|
3121
|
+
*/
|
|
3122
|
+
export declare const DeleteBatchPredictionOutputFilterSensitiveLog: (obj: DeleteBatchPredictionOutput) => any;
|
|
3123
|
+
/**
|
|
3124
|
+
* @internal
|
|
3125
|
+
*/
|
|
3126
|
+
export declare const DeleteDataSourceInputFilterSensitiveLog: (obj: DeleteDataSourceInput) => any;
|
|
3127
|
+
/**
|
|
3128
|
+
* @internal
|
|
3129
|
+
*/
|
|
3130
|
+
export declare const DeleteDataSourceOutputFilterSensitiveLog: (obj: DeleteDataSourceOutput) => any;
|
|
3131
|
+
/**
|
|
3132
|
+
* @internal
|
|
3133
|
+
*/
|
|
3134
|
+
export declare const DeleteEvaluationInputFilterSensitiveLog: (obj: DeleteEvaluationInput) => any;
|
|
3135
|
+
/**
|
|
3136
|
+
* @internal
|
|
3137
|
+
*/
|
|
3138
|
+
export declare const DeleteEvaluationOutputFilterSensitiveLog: (obj: DeleteEvaluationOutput) => any;
|
|
3139
|
+
/**
|
|
3140
|
+
* @internal
|
|
3141
|
+
*/
|
|
3142
|
+
export declare const DeleteMLModelInputFilterSensitiveLog: (obj: DeleteMLModelInput) => any;
|
|
3143
|
+
/**
|
|
3144
|
+
* @internal
|
|
3145
|
+
*/
|
|
3146
|
+
export declare const DeleteMLModelOutputFilterSensitiveLog: (obj: DeleteMLModelOutput) => any;
|
|
3147
|
+
/**
|
|
3148
|
+
* @internal
|
|
3149
|
+
*/
|
|
3150
|
+
export declare const DeleteRealtimeEndpointInputFilterSensitiveLog: (obj: DeleteRealtimeEndpointInput) => any;
|
|
3151
|
+
/**
|
|
3152
|
+
* @internal
|
|
3153
|
+
*/
|
|
3154
|
+
export declare const DeleteRealtimeEndpointOutputFilterSensitiveLog: (obj: DeleteRealtimeEndpointOutput) => any;
|
|
3155
|
+
/**
|
|
3156
|
+
* @internal
|
|
3157
|
+
*/
|
|
3158
|
+
export declare const DeleteTagsInputFilterSensitiveLog: (obj: DeleteTagsInput) => any;
|
|
3159
|
+
/**
|
|
3160
|
+
* @internal
|
|
3161
|
+
*/
|
|
3162
|
+
export declare const DeleteTagsOutputFilterSensitiveLog: (obj: DeleteTagsOutput) => any;
|
|
3163
|
+
/**
|
|
3164
|
+
* @internal
|
|
3165
|
+
*/
|
|
3166
|
+
export declare const DescribeBatchPredictionsInputFilterSensitiveLog: (obj: DescribeBatchPredictionsInput) => any;
|
|
3167
|
+
/**
|
|
3168
|
+
* @internal
|
|
3169
|
+
*/
|
|
3170
|
+
export declare const BatchPredictionFilterSensitiveLog: (obj: BatchPrediction) => any;
|
|
3171
|
+
/**
|
|
3172
|
+
* @internal
|
|
3173
|
+
*/
|
|
3174
|
+
export declare const DescribeBatchPredictionsOutputFilterSensitiveLog: (obj: DescribeBatchPredictionsOutput) => any;
|
|
3175
|
+
/**
|
|
3176
|
+
* @internal
|
|
3177
|
+
*/
|
|
3178
|
+
export declare const DescribeDataSourcesInputFilterSensitiveLog: (obj: DescribeDataSourcesInput) => any;
|
|
3179
|
+
/**
|
|
3180
|
+
* @internal
|
|
3181
|
+
*/
|
|
3182
|
+
export declare const RDSMetadataFilterSensitiveLog: (obj: RDSMetadata) => any;
|
|
3183
|
+
/**
|
|
3184
|
+
* @internal
|
|
3185
|
+
*/
|
|
3186
|
+
export declare const RedshiftMetadataFilterSensitiveLog: (obj: RedshiftMetadata) => any;
|
|
3187
|
+
/**
|
|
3188
|
+
* @internal
|
|
3189
|
+
*/
|
|
3190
|
+
export declare const DataSourceFilterSensitiveLog: (obj: DataSource) => any;
|
|
3191
|
+
/**
|
|
3192
|
+
* @internal
|
|
3193
|
+
*/
|
|
3194
|
+
export declare const DescribeDataSourcesOutputFilterSensitiveLog: (obj: DescribeDataSourcesOutput) => any;
|
|
3195
|
+
/**
|
|
3196
|
+
* @internal
|
|
3197
|
+
*/
|
|
3198
|
+
export declare const DescribeEvaluationsInputFilterSensitiveLog: (obj: DescribeEvaluationsInput) => any;
|
|
3199
|
+
/**
|
|
3200
|
+
* @internal
|
|
3201
|
+
*/
|
|
3202
|
+
export declare const PerformanceMetricsFilterSensitiveLog: (obj: PerformanceMetrics) => any;
|
|
3203
|
+
/**
|
|
3204
|
+
* @internal
|
|
3205
|
+
*/
|
|
3206
|
+
export declare const EvaluationFilterSensitiveLog: (obj: Evaluation) => any;
|
|
3207
|
+
/**
|
|
3208
|
+
* @internal
|
|
3209
|
+
*/
|
|
3210
|
+
export declare const DescribeEvaluationsOutputFilterSensitiveLog: (obj: DescribeEvaluationsOutput) => any;
|
|
3211
|
+
/**
|
|
3212
|
+
* @internal
|
|
3213
|
+
*/
|
|
3214
|
+
export declare const DescribeMLModelsInputFilterSensitiveLog: (obj: DescribeMLModelsInput) => any;
|
|
3215
|
+
/**
|
|
3216
|
+
* @internal
|
|
3217
|
+
*/
|
|
3218
|
+
export declare const MLModelFilterSensitiveLog: (obj: MLModel) => any;
|
|
3219
|
+
/**
|
|
3220
|
+
* @internal
|
|
3221
|
+
*/
|
|
3222
|
+
export declare const DescribeMLModelsOutputFilterSensitiveLog: (obj: DescribeMLModelsOutput) => any;
|
|
3223
|
+
/**
|
|
3224
|
+
* @internal
|
|
3225
|
+
*/
|
|
3226
|
+
export declare const DescribeTagsInputFilterSensitiveLog: (obj: DescribeTagsInput) => any;
|
|
3227
|
+
/**
|
|
3228
|
+
* @internal
|
|
3229
|
+
*/
|
|
3230
|
+
export declare const DescribeTagsOutputFilterSensitiveLog: (obj: DescribeTagsOutput) => any;
|
|
3231
|
+
/**
|
|
3232
|
+
* @internal
|
|
3233
|
+
*/
|
|
3234
|
+
export declare const GetBatchPredictionInputFilterSensitiveLog: (obj: GetBatchPredictionInput) => any;
|
|
3235
|
+
/**
|
|
3236
|
+
* @internal
|
|
3237
|
+
*/
|
|
3238
|
+
export declare const GetBatchPredictionOutputFilterSensitiveLog: (obj: GetBatchPredictionOutput) => any;
|
|
3239
|
+
/**
|
|
3240
|
+
* @internal
|
|
3241
|
+
*/
|
|
3242
|
+
export declare const GetDataSourceInputFilterSensitiveLog: (obj: GetDataSourceInput) => any;
|
|
3243
|
+
/**
|
|
3244
|
+
* @internal
|
|
3245
|
+
*/
|
|
3246
|
+
export declare const GetDataSourceOutputFilterSensitiveLog: (obj: GetDataSourceOutput) => any;
|
|
3247
|
+
/**
|
|
3248
|
+
* @internal
|
|
3249
|
+
*/
|
|
3250
|
+
export declare const GetEvaluationInputFilterSensitiveLog: (obj: GetEvaluationInput) => any;
|
|
3251
|
+
/**
|
|
3252
|
+
* @internal
|
|
3253
|
+
*/
|
|
3254
|
+
export declare const GetEvaluationOutputFilterSensitiveLog: (obj: GetEvaluationOutput) => any;
|
|
3255
|
+
/**
|
|
3256
|
+
* @internal
|
|
3257
|
+
*/
|
|
3258
|
+
export declare const GetMLModelInputFilterSensitiveLog: (obj: GetMLModelInput) => any;
|
|
3259
|
+
/**
|
|
3260
|
+
* @internal
|
|
3261
|
+
*/
|
|
3262
|
+
export declare const GetMLModelOutputFilterSensitiveLog: (obj: GetMLModelOutput) => any;
|
|
3263
|
+
/**
|
|
3264
|
+
* @internal
|
|
3265
|
+
*/
|
|
3266
|
+
export declare const PredictInputFilterSensitiveLog: (obj: PredictInput) => any;
|
|
3267
|
+
/**
|
|
3268
|
+
* @internal
|
|
3269
|
+
*/
|
|
3270
|
+
export declare const PredictionFilterSensitiveLog: (obj: Prediction) => any;
|
|
3271
|
+
/**
|
|
3272
|
+
* @internal
|
|
3273
|
+
*/
|
|
3274
|
+
export declare const PredictOutputFilterSensitiveLog: (obj: PredictOutput) => any;
|
|
3275
|
+
/**
|
|
3276
|
+
* @internal
|
|
3277
|
+
*/
|
|
3278
|
+
export declare const UpdateBatchPredictionInputFilterSensitiveLog: (obj: UpdateBatchPredictionInput) => any;
|
|
3279
|
+
/**
|
|
3280
|
+
* @internal
|
|
3281
|
+
*/
|
|
3282
|
+
export declare const UpdateBatchPredictionOutputFilterSensitiveLog: (obj: UpdateBatchPredictionOutput) => any;
|
|
3283
|
+
/**
|
|
3284
|
+
* @internal
|
|
3285
|
+
*/
|
|
3286
|
+
export declare const UpdateDataSourceInputFilterSensitiveLog: (obj: UpdateDataSourceInput) => any;
|
|
3287
|
+
/**
|
|
3288
|
+
* @internal
|
|
3289
|
+
*/
|
|
3290
|
+
export declare const UpdateDataSourceOutputFilterSensitiveLog: (obj: UpdateDataSourceOutput) => any;
|
|
3291
|
+
/**
|
|
3292
|
+
* @internal
|
|
3293
|
+
*/
|
|
3294
|
+
export declare const UpdateEvaluationInputFilterSensitiveLog: (obj: UpdateEvaluationInput) => any;
|
|
3295
|
+
/**
|
|
3296
|
+
* @internal
|
|
3297
|
+
*/
|
|
3298
|
+
export declare const UpdateEvaluationOutputFilterSensitiveLog: (obj: UpdateEvaluationOutput) => any;
|
|
3299
|
+
/**
|
|
3300
|
+
* @internal
|
|
3301
|
+
*/
|
|
3302
|
+
export declare const UpdateMLModelInputFilterSensitiveLog: (obj: UpdateMLModelInput) => any;
|
|
3303
|
+
/**
|
|
3304
|
+
* @internal
|
|
3305
|
+
*/
|
|
3306
|
+
export declare const UpdateMLModelOutputFilterSensitiveLog: (obj: UpdateMLModelOutput) => any;
|