@aws-sdk/client-machine-learning 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +76 -75
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +75 -0
- package/dist-es/models/errors.js +107 -0
- package/dist-es/models/models_0.js +1 -182
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +163 -0
- package/dist-types/models/errors.d.ts +101 -0
- package/dist-types/models/models_0.d.ts +1 -264
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +93 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +13 -159
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const TaggableResourceType: {
|
|
6
|
+
readonly BATCH_PREDICTION: "BatchPrediction";
|
|
7
|
+
readonly DATASOURCE: "DataSource";
|
|
8
|
+
readonly EVALUATION: "Evaluation";
|
|
9
|
+
readonly ML_MODEL: "MLModel";
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* @enum
|
|
18
|
+
*/
|
|
19
|
+
export declare const Algorithm: {
|
|
20
|
+
readonly SGD: "sgd";
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* @enum
|
|
29
|
+
*/
|
|
30
|
+
export declare const MLModelType: {
|
|
31
|
+
readonly BINARY: "BINARY";
|
|
32
|
+
readonly MULTICLASS: "MULTICLASS";
|
|
33
|
+
readonly REGRESSION: "REGRESSION";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const RealtimeEndpointStatus: {
|
|
44
|
+
readonly FAILED: "FAILED";
|
|
45
|
+
readonly NONE: "NONE";
|
|
46
|
+
readonly READY: "READY";
|
|
47
|
+
readonly UPDATING: "UPDATING";
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* @enum
|
|
56
|
+
*/
|
|
57
|
+
export declare const BatchPredictionFilterVariable: {
|
|
58
|
+
readonly CREATED_AT: "CreatedAt";
|
|
59
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
60
|
+
readonly DATA_URI: "DataURI";
|
|
61
|
+
readonly IAM_USER: "IAMUser";
|
|
62
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
63
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
64
|
+
readonly NAME: "Name";
|
|
65
|
+
readonly STATUS: "Status";
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
* @enum
|
|
74
|
+
*/
|
|
75
|
+
export declare const SortOrder: {
|
|
76
|
+
readonly ASC: "asc";
|
|
77
|
+
readonly DSC: "dsc";
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
* @enum
|
|
86
|
+
*/
|
|
87
|
+
export declare const EntityStatus: {
|
|
88
|
+
readonly COMPLETED: "COMPLETED";
|
|
89
|
+
readonly DELETED: "DELETED";
|
|
90
|
+
readonly FAILED: "FAILED";
|
|
91
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
92
|
+
readonly PENDING: "PENDING";
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
97
|
+
export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
|
|
98
|
+
/**
|
|
99
|
+
* @public
|
|
100
|
+
* @enum
|
|
101
|
+
*/
|
|
102
|
+
export declare const DataSourceFilterVariable: {
|
|
103
|
+
readonly CREATED_AT: "CreatedAt";
|
|
104
|
+
readonly DATA_URI: "DataLocationS3";
|
|
105
|
+
readonly IAM_USER: "IAMUser";
|
|
106
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
107
|
+
readonly NAME: "Name";
|
|
108
|
+
readonly STATUS: "Status";
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
114
|
+
/**
|
|
115
|
+
* @public
|
|
116
|
+
* @enum
|
|
117
|
+
*/
|
|
118
|
+
export declare const EvaluationFilterVariable: {
|
|
119
|
+
readonly CREATED_AT: "CreatedAt";
|
|
120
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
121
|
+
readonly DATA_URI: "DataURI";
|
|
122
|
+
readonly IAM_USER: "IAMUser";
|
|
123
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
124
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
125
|
+
readonly NAME: "Name";
|
|
126
|
+
readonly STATUS: "Status";
|
|
127
|
+
};
|
|
128
|
+
/**
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
132
|
+
/**
|
|
133
|
+
* @public
|
|
134
|
+
* @enum
|
|
135
|
+
*/
|
|
136
|
+
export declare const MLModelFilterVariable: {
|
|
137
|
+
readonly ALGORITHM: "Algorithm";
|
|
138
|
+
readonly CREATED_AT: "CreatedAt";
|
|
139
|
+
readonly IAM_USER: "IAMUser";
|
|
140
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
141
|
+
readonly ML_MODEL_TYPE: "MLModelType";
|
|
142
|
+
readonly NAME: "Name";
|
|
143
|
+
readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
|
|
144
|
+
readonly STATUS: "Status";
|
|
145
|
+
readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
|
|
146
|
+
readonly TRAINING_DATA_URI: "TrainingDataURI";
|
|
147
|
+
};
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
*/
|
|
151
|
+
export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
152
|
+
/**
|
|
153
|
+
* @public
|
|
154
|
+
* @enum
|
|
155
|
+
*/
|
|
156
|
+
export declare const DetailsAttributes: {
|
|
157
|
+
readonly ALGORITHM: "Algorithm";
|
|
158
|
+
readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
|
|
159
|
+
};
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
*/
|
|
163
|
+
export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>An error on the server occurred when trying to process a request.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class InternalServerException extends __BaseException {
|
|
8
|
+
readonly name: "InternalServerException";
|
|
9
|
+
readonly $fault: "server";
|
|
10
|
+
code?: number | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export declare class InvalidInputException extends __BaseException {
|
|
21
|
+
readonly name: "InvalidInputException";
|
|
22
|
+
readonly $fault: "client";
|
|
23
|
+
code?: number | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* @internal
|
|
26
|
+
*/
|
|
27
|
+
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
export declare class InvalidTagException extends __BaseException {
|
|
33
|
+
readonly name: "InvalidTagException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>A specified resource cannot be located.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceNotFoundException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
code?: number | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* @internal
|
|
50
|
+
*/
|
|
51
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class TagLimitExceededException extends __BaseException {
|
|
57
|
+
readonly name: "TagLimitExceededException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <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>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
69
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
code?: number | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
75
|
+
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
76
|
+
}
|
|
77
|
+
/**
|
|
78
|
+
* <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class LimitExceededException extends __BaseException {
|
|
82
|
+
readonly name: "LimitExceededException";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
code?: number | undefined;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
88
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* <p>The exception is thrown when a predict request is made to an unmounted <code>MLModel</code>.</p>
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class PredictorNotMountedException extends __BaseException {
|
|
95
|
+
readonly name: "PredictorNotMountedException";
|
|
96
|
+
readonly $fault: "client";
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
constructor(opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>);
|
|
101
|
+
}
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const TaggableResourceType: {
|
|
8
|
-
readonly BATCH_PREDICTION: "BatchPrediction";
|
|
9
|
-
readonly DATASOURCE: "DataSource";
|
|
10
|
-
readonly EVALUATION: "Evaluation";
|
|
11
|
-
readonly ML_MODEL: "MLModel";
|
|
12
|
-
};
|
|
13
|
-
/**
|
|
14
|
-
* @public
|
|
15
|
-
*/
|
|
16
|
-
export type TaggableResourceType = (typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
1
|
+
import { Algorithm, BatchPredictionFilterVariable, DataSourceFilterVariable, DetailsAttributes, EntityStatus, EvaluationFilterVariable, MLModelFilterVariable, MLModelType, RealtimeEndpointStatus, SortOrder, TaggableResourceType } from "./enums";
|
|
17
2
|
/**
|
|
18
3
|
* <p>A custom key-value pair associated with an ML object, such as an ML model.</p>
|
|
19
4
|
* @public
|
|
@@ -66,78 +51,6 @@ export interface AddTagsOutput {
|
|
|
66
51
|
*/
|
|
67
52
|
ResourceType?: TaggableResourceType | undefined;
|
|
68
53
|
}
|
|
69
|
-
/**
|
|
70
|
-
* <p>An error on the server occurred when trying to process a request.</p>
|
|
71
|
-
* @public
|
|
72
|
-
*/
|
|
73
|
-
export declare class InternalServerException extends __BaseException {
|
|
74
|
-
readonly name: "InternalServerException";
|
|
75
|
-
readonly $fault: "server";
|
|
76
|
-
code?: number | undefined;
|
|
77
|
-
/**
|
|
78
|
-
* @internal
|
|
79
|
-
*/
|
|
80
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* <p>An error on the client occurred. Typically, the cause is an invalid input value.</p>
|
|
84
|
-
* @public
|
|
85
|
-
*/
|
|
86
|
-
export declare class InvalidInputException extends __BaseException {
|
|
87
|
-
readonly name: "InvalidInputException";
|
|
88
|
-
readonly $fault: "client";
|
|
89
|
-
code?: number | undefined;
|
|
90
|
-
/**
|
|
91
|
-
* @internal
|
|
92
|
-
*/
|
|
93
|
-
constructor(opts: __ExceptionOptionType<InvalidInputException, __BaseException>);
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* @public
|
|
97
|
-
*/
|
|
98
|
-
export declare class InvalidTagException extends __BaseException {
|
|
99
|
-
readonly name: "InvalidTagException";
|
|
100
|
-
readonly $fault: "client";
|
|
101
|
-
/**
|
|
102
|
-
* @internal
|
|
103
|
-
*/
|
|
104
|
-
constructor(opts: __ExceptionOptionType<InvalidTagException, __BaseException>);
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* <p>A specified resource cannot be located.</p>
|
|
108
|
-
* @public
|
|
109
|
-
*/
|
|
110
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
111
|
-
readonly name: "ResourceNotFoundException";
|
|
112
|
-
readonly $fault: "client";
|
|
113
|
-
code?: number | undefined;
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
export declare class TagLimitExceededException extends __BaseException {
|
|
123
|
-
readonly name: "TagLimitExceededException";
|
|
124
|
-
readonly $fault: "client";
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* @public
|
|
132
|
-
* @enum
|
|
133
|
-
*/
|
|
134
|
-
export declare const Algorithm: {
|
|
135
|
-
readonly SGD: "sgd";
|
|
136
|
-
};
|
|
137
|
-
/**
|
|
138
|
-
* @public
|
|
139
|
-
*/
|
|
140
|
-
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
141
54
|
/**
|
|
142
55
|
* @public
|
|
143
56
|
*/
|
|
@@ -185,19 +98,6 @@ export interface CreateBatchPredictionOutput {
|
|
|
185
98
|
*/
|
|
186
99
|
BatchPredictionId?: string | undefined;
|
|
187
100
|
}
|
|
188
|
-
/**
|
|
189
|
-
* <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>
|
|
190
|
-
* @public
|
|
191
|
-
*/
|
|
192
|
-
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
193
|
-
readonly name: "IdempotentParameterMismatchException";
|
|
194
|
-
readonly $fault: "client";
|
|
195
|
-
code?: number | undefined;
|
|
196
|
-
/**
|
|
197
|
-
* @internal
|
|
198
|
-
*/
|
|
199
|
-
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
200
|
-
}
|
|
201
101
|
/**
|
|
202
102
|
* <p>The database credentials to connect to a database on an RDS DB instance.</p>
|
|
203
103
|
* @public
|
|
@@ -1003,19 +903,6 @@ export interface CreateEvaluationOutput {
|
|
|
1003
903
|
*/
|
|
1004
904
|
EvaluationId?: string | undefined;
|
|
1005
905
|
}
|
|
1006
|
-
/**
|
|
1007
|
-
* @public
|
|
1008
|
-
* @enum
|
|
1009
|
-
*/
|
|
1010
|
-
export declare const MLModelType: {
|
|
1011
|
-
readonly BINARY: "BINARY";
|
|
1012
|
-
readonly MULTICLASS: "MULTICLASS";
|
|
1013
|
-
readonly REGRESSION: "REGRESSION";
|
|
1014
|
-
};
|
|
1015
|
-
/**
|
|
1016
|
-
* @public
|
|
1017
|
-
*/
|
|
1018
|
-
export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
1019
906
|
/**
|
|
1020
907
|
* @public
|
|
1021
908
|
*/
|
|
@@ -1139,20 +1026,6 @@ export interface CreateRealtimeEndpointInput {
|
|
|
1139
1026
|
*/
|
|
1140
1027
|
MLModelId: string | undefined;
|
|
1141
1028
|
}
|
|
1142
|
-
/**
|
|
1143
|
-
* @public
|
|
1144
|
-
* @enum
|
|
1145
|
-
*/
|
|
1146
|
-
export declare const RealtimeEndpointStatus: {
|
|
1147
|
-
readonly FAILED: "FAILED";
|
|
1148
|
-
readonly NONE: "NONE";
|
|
1149
|
-
readonly READY: "READY";
|
|
1150
|
-
readonly UPDATING: "UPDATING";
|
|
1151
|
-
};
|
|
1152
|
-
/**
|
|
1153
|
-
* @public
|
|
1154
|
-
*/
|
|
1155
|
-
export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
|
|
1156
1029
|
/**
|
|
1157
1030
|
* <p> Describes the real-time endpoint information for an <code>MLModel</code>.</p>
|
|
1158
1031
|
* @public
|
|
@@ -1371,36 +1244,6 @@ export interface DeleteTagsOutput {
|
|
|
1371
1244
|
*/
|
|
1372
1245
|
ResourceType?: TaggableResourceType | undefined;
|
|
1373
1246
|
}
|
|
1374
|
-
/**
|
|
1375
|
-
* @public
|
|
1376
|
-
* @enum
|
|
1377
|
-
*/
|
|
1378
|
-
export declare const BatchPredictionFilterVariable: {
|
|
1379
|
-
readonly CREATED_AT: "CreatedAt";
|
|
1380
|
-
readonly DATASOURCE_ID: "DataSourceId";
|
|
1381
|
-
readonly DATA_URI: "DataURI";
|
|
1382
|
-
readonly IAM_USER: "IAMUser";
|
|
1383
|
-
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
1384
|
-
readonly ML_MODEL_ID: "MLModelId";
|
|
1385
|
-
readonly NAME: "Name";
|
|
1386
|
-
readonly STATUS: "Status";
|
|
1387
|
-
};
|
|
1388
|
-
/**
|
|
1389
|
-
* @public
|
|
1390
|
-
*/
|
|
1391
|
-
export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
|
|
1392
|
-
/**
|
|
1393
|
-
* @public
|
|
1394
|
-
* @enum
|
|
1395
|
-
*/
|
|
1396
|
-
export declare const SortOrder: {
|
|
1397
|
-
readonly ASC: "asc";
|
|
1398
|
-
readonly DSC: "dsc";
|
|
1399
|
-
};
|
|
1400
|
-
/**
|
|
1401
|
-
* @public
|
|
1402
|
-
*/
|
|
1403
|
-
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1404
1247
|
/**
|
|
1405
1248
|
* @public
|
|
1406
1249
|
*/
|
|
@@ -1525,21 +1368,6 @@ export interface DescribeBatchPredictionsInput {
|
|
|
1525
1368
|
*/
|
|
1526
1369
|
Limit?: number | undefined;
|
|
1527
1370
|
}
|
|
1528
|
-
/**
|
|
1529
|
-
* @public
|
|
1530
|
-
* @enum
|
|
1531
|
-
*/
|
|
1532
|
-
export declare const EntityStatus: {
|
|
1533
|
-
readonly COMPLETED: "COMPLETED";
|
|
1534
|
-
readonly DELETED: "DELETED";
|
|
1535
|
-
readonly FAILED: "FAILED";
|
|
1536
|
-
readonly INPROGRESS: "INPROGRESS";
|
|
1537
|
-
readonly PENDING: "PENDING";
|
|
1538
|
-
};
|
|
1539
|
-
/**
|
|
1540
|
-
* @public
|
|
1541
|
-
*/
|
|
1542
|
-
export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
|
|
1543
1371
|
/**
|
|
1544
1372
|
* <p> Represents the output of a <code>GetBatchPrediction</code> operation.</p>
|
|
1545
1373
|
* <p> The content consists of the detailed metadata, the status, and the data file information of a
|
|
@@ -1669,22 +1497,6 @@ export interface DescribeBatchPredictionsOutput {
|
|
|
1669
1497
|
*/
|
|
1670
1498
|
NextToken?: string | undefined;
|
|
1671
1499
|
}
|
|
1672
|
-
/**
|
|
1673
|
-
* @public
|
|
1674
|
-
* @enum
|
|
1675
|
-
*/
|
|
1676
|
-
export declare const DataSourceFilterVariable: {
|
|
1677
|
-
readonly CREATED_AT: "CreatedAt";
|
|
1678
|
-
readonly DATA_URI: "DataLocationS3";
|
|
1679
|
-
readonly IAM_USER: "IAMUser";
|
|
1680
|
-
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
1681
|
-
readonly NAME: "Name";
|
|
1682
|
-
readonly STATUS: "Status";
|
|
1683
|
-
};
|
|
1684
|
-
/**
|
|
1685
|
-
* @public
|
|
1686
|
-
*/
|
|
1687
|
-
export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
1688
1500
|
/**
|
|
1689
1501
|
* @public
|
|
1690
1502
|
*/
|
|
@@ -1994,24 +1806,6 @@ export interface DescribeDataSourcesOutput {
|
|
|
1994
1806
|
*/
|
|
1995
1807
|
NextToken?: string | undefined;
|
|
1996
1808
|
}
|
|
1997
|
-
/**
|
|
1998
|
-
* @public
|
|
1999
|
-
* @enum
|
|
2000
|
-
*/
|
|
2001
|
-
export declare const EvaluationFilterVariable: {
|
|
2002
|
-
readonly CREATED_AT: "CreatedAt";
|
|
2003
|
-
readonly DATASOURCE_ID: "DataSourceId";
|
|
2004
|
-
readonly DATA_URI: "DataURI";
|
|
2005
|
-
readonly IAM_USER: "IAMUser";
|
|
2006
|
-
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
2007
|
-
readonly ML_MODEL_ID: "MLModelId";
|
|
2008
|
-
readonly NAME: "Name";
|
|
2009
|
-
readonly STATUS: "Status";
|
|
2010
|
-
};
|
|
2011
|
-
/**
|
|
2012
|
-
* @public
|
|
2013
|
-
*/
|
|
2014
|
-
export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
2015
1809
|
/**
|
|
2016
1810
|
* @public
|
|
2017
1811
|
*/
|
|
@@ -2291,26 +2085,6 @@ export interface DescribeEvaluationsOutput {
|
|
|
2291
2085
|
*/
|
|
2292
2086
|
NextToken?: string | undefined;
|
|
2293
2087
|
}
|
|
2294
|
-
/**
|
|
2295
|
-
* @public
|
|
2296
|
-
* @enum
|
|
2297
|
-
*/
|
|
2298
|
-
export declare const MLModelFilterVariable: {
|
|
2299
|
-
readonly ALGORITHM: "Algorithm";
|
|
2300
|
-
readonly CREATED_AT: "CreatedAt";
|
|
2301
|
-
readonly IAM_USER: "IAMUser";
|
|
2302
|
-
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
2303
|
-
readonly ML_MODEL_TYPE: "MLModelType";
|
|
2304
|
-
readonly NAME: "Name";
|
|
2305
|
-
readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
|
|
2306
|
-
readonly STATUS: "Status";
|
|
2307
|
-
readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
|
|
2308
|
-
readonly TRAINING_DATA_URI: "TrainingDataURI";
|
|
2309
|
-
};
|
|
2310
|
-
/**
|
|
2311
|
-
* @public
|
|
2312
|
-
*/
|
|
2313
|
-
export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
2314
2088
|
/**
|
|
2315
2089
|
* @public
|
|
2316
2090
|
*/
|
|
@@ -3307,19 +3081,6 @@ export interface GetMLModelOutput {
|
|
|
3307
3081
|
*/
|
|
3308
3082
|
Schema?: string | undefined;
|
|
3309
3083
|
}
|
|
3310
|
-
/**
|
|
3311
|
-
* <p>The subscriber exceeded the maximum number of operations. This exception can occur when listing objects such as <code>DataSource</code>.</p>
|
|
3312
|
-
* @public
|
|
3313
|
-
*/
|
|
3314
|
-
export declare class LimitExceededException extends __BaseException {
|
|
3315
|
-
readonly name: "LimitExceededException";
|
|
3316
|
-
readonly $fault: "client";
|
|
3317
|
-
code?: number | undefined;
|
|
3318
|
-
/**
|
|
3319
|
-
* @internal
|
|
3320
|
-
*/
|
|
3321
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
3322
|
-
}
|
|
3323
3084
|
/**
|
|
3324
3085
|
* @public
|
|
3325
3086
|
*/
|
|
@@ -3336,30 +3097,6 @@ export interface PredictInput {
|
|
|
3336
3097
|
Record: Record<string, string> | undefined;
|
|
3337
3098
|
PredictEndpoint: string | undefined;
|
|
3338
3099
|
}
|
|
3339
|
-
/**
|
|
3340
|
-
* <p>The exception is thrown when a predict request is made to an unmounted <code>MLModel</code>.</p>
|
|
3341
|
-
* @public
|
|
3342
|
-
*/
|
|
3343
|
-
export declare class PredictorNotMountedException extends __BaseException {
|
|
3344
|
-
readonly name: "PredictorNotMountedException";
|
|
3345
|
-
readonly $fault: "client";
|
|
3346
|
-
/**
|
|
3347
|
-
* @internal
|
|
3348
|
-
*/
|
|
3349
|
-
constructor(opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>);
|
|
3350
|
-
}
|
|
3351
|
-
/**
|
|
3352
|
-
* @public
|
|
3353
|
-
* @enum
|
|
3354
|
-
*/
|
|
3355
|
-
export declare const DetailsAttributes: {
|
|
3356
|
-
readonly ALGORITHM: "Algorithm";
|
|
3357
|
-
readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
|
|
3358
|
-
};
|
|
3359
|
-
/**
|
|
3360
|
-
* @public
|
|
3361
|
-
*/
|
|
3362
|
-
export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
|
|
3363
3100
|
/**
|
|
3364
3101
|
* <p>The output from a <code>Predict</code> operation: </p>
|
|
3365
3102
|
*
|
|
@@ -6,5 +6,7 @@ export { MachineLearningExtensionConfiguration } from "./extensionConfiguration"
|
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
8
|
export * from "./waiters";
|
|
9
|
-
export * from "./models";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
10
12
|
export { MachineLearningServiceException } from "./models/MachineLearningServiceException";
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
export declare const TaggableResourceType: {
|
|
2
|
+
readonly BATCH_PREDICTION: "BatchPrediction";
|
|
3
|
+
readonly DATASOURCE: "DataSource";
|
|
4
|
+
readonly EVALUATION: "Evaluation";
|
|
5
|
+
readonly ML_MODEL: "MLModel";
|
|
6
|
+
};
|
|
7
|
+
export type TaggableResourceType =
|
|
8
|
+
(typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
9
|
+
export declare const Algorithm: {
|
|
10
|
+
readonly SGD: "sgd";
|
|
11
|
+
};
|
|
12
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
13
|
+
export declare const MLModelType: {
|
|
14
|
+
readonly BINARY: "BINARY";
|
|
15
|
+
readonly MULTICLASS: "MULTICLASS";
|
|
16
|
+
readonly REGRESSION: "REGRESSION";
|
|
17
|
+
};
|
|
18
|
+
export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
19
|
+
export declare const RealtimeEndpointStatus: {
|
|
20
|
+
readonly FAILED: "FAILED";
|
|
21
|
+
readonly NONE: "NONE";
|
|
22
|
+
readonly READY: "READY";
|
|
23
|
+
readonly UPDATING: "UPDATING";
|
|
24
|
+
};
|
|
25
|
+
export type RealtimeEndpointStatus =
|
|
26
|
+
(typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
|
|
27
|
+
export declare const BatchPredictionFilterVariable: {
|
|
28
|
+
readonly CREATED_AT: "CreatedAt";
|
|
29
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
30
|
+
readonly DATA_URI: "DataURI";
|
|
31
|
+
readonly IAM_USER: "IAMUser";
|
|
32
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
33
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
34
|
+
readonly NAME: "Name";
|
|
35
|
+
readonly STATUS: "Status";
|
|
36
|
+
};
|
|
37
|
+
export type BatchPredictionFilterVariable =
|
|
38
|
+
(typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
|
|
39
|
+
export declare const SortOrder: {
|
|
40
|
+
readonly ASC: "asc";
|
|
41
|
+
readonly DSC: "dsc";
|
|
42
|
+
};
|
|
43
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
44
|
+
export declare const EntityStatus: {
|
|
45
|
+
readonly COMPLETED: "COMPLETED";
|
|
46
|
+
readonly DELETED: "DELETED";
|
|
47
|
+
readonly FAILED: "FAILED";
|
|
48
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
49
|
+
readonly PENDING: "PENDING";
|
|
50
|
+
};
|
|
51
|
+
export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
|
|
52
|
+
export declare const DataSourceFilterVariable: {
|
|
53
|
+
readonly CREATED_AT: "CreatedAt";
|
|
54
|
+
readonly DATA_URI: "DataLocationS3";
|
|
55
|
+
readonly IAM_USER: "IAMUser";
|
|
56
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
57
|
+
readonly NAME: "Name";
|
|
58
|
+
readonly STATUS: "Status";
|
|
59
|
+
};
|
|
60
|
+
export type DataSourceFilterVariable =
|
|
61
|
+
(typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
62
|
+
export declare const EvaluationFilterVariable: {
|
|
63
|
+
readonly CREATED_AT: "CreatedAt";
|
|
64
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
65
|
+
readonly DATA_URI: "DataURI";
|
|
66
|
+
readonly IAM_USER: "IAMUser";
|
|
67
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
68
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
69
|
+
readonly NAME: "Name";
|
|
70
|
+
readonly STATUS: "Status";
|
|
71
|
+
};
|
|
72
|
+
export type EvaluationFilterVariable =
|
|
73
|
+
(typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
74
|
+
export declare const MLModelFilterVariable: {
|
|
75
|
+
readonly ALGORITHM: "Algorithm";
|
|
76
|
+
readonly CREATED_AT: "CreatedAt";
|
|
77
|
+
readonly IAM_USER: "IAMUser";
|
|
78
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
79
|
+
readonly ML_MODEL_TYPE: "MLModelType";
|
|
80
|
+
readonly NAME: "Name";
|
|
81
|
+
readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
|
|
82
|
+
readonly STATUS: "Status";
|
|
83
|
+
readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
|
|
84
|
+
readonly TRAINING_DATA_URI: "TrainingDataURI";
|
|
85
|
+
};
|
|
86
|
+
export type MLModelFilterVariable =
|
|
87
|
+
(typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
88
|
+
export declare const DetailsAttributes: {
|
|
89
|
+
readonly ALGORITHM: "Algorithm";
|
|
90
|
+
readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
|
|
91
|
+
};
|
|
92
|
+
export type DetailsAttributes =
|
|
93
|
+
(typeof DetailsAttributes)[keyof typeof DetailsAttributes];
|