@aws-sdk/client-machine-learning 3.301.0 → 3.306.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/models/models_0.js +75 -86
- package/dist-es/models/models_0.js +75 -86
- package/dist-types/models/models_0.d.ts +130 -75
- package/dist-types/ts3.4/models/models_0.d.ts +93 -75
- package/package.json +36 -36
|
@@ -2,13 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.DetailsAttributes = exports.PredictorNotMountedException = exports.LimitExceededException = exports.MLModelFilterVariable = exports.EvaluationFilterVariable = exports.DataSourceFilterVariable = exports.EntityStatus = exports.SortOrder = exports.BatchPredictionFilterVariable = exports.RealtimeEndpointStatus = exports.MLModelType = exports.IdempotentParameterMismatchException = exports.Algorithm = exports.TagLimitExceededException = exports.ResourceNotFoundException = exports.InvalidTagException = exports.InvalidInputException = exports.InternalServerException = exports.TaggableResourceType = void 0;
|
|
4
4
|
const MachineLearningServiceException_1 = require("./MachineLearningServiceException");
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
})(TaggableResourceType = exports.TaggableResourceType || (exports.TaggableResourceType = {}));
|
|
5
|
+
exports.TaggableResourceType = {
|
|
6
|
+
BATCH_PREDICTION: "BatchPrediction",
|
|
7
|
+
DATASOURCE: "DataSource",
|
|
8
|
+
EVALUATION: "Evaluation",
|
|
9
|
+
ML_MODEL: "MLModel",
|
|
10
|
+
};
|
|
12
11
|
class InternalServerException extends MachineLearningServiceException_1.MachineLearningServiceException {
|
|
13
12
|
constructor(opts) {
|
|
14
13
|
super({
|
|
@@ -77,10 +76,9 @@ class TagLimitExceededException extends MachineLearningServiceException_1.Machin
|
|
|
77
76
|
}
|
|
78
77
|
}
|
|
79
78
|
exports.TagLimitExceededException = TagLimitExceededException;
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
})(Algorithm = exports.Algorithm || (exports.Algorithm = {}));
|
|
79
|
+
exports.Algorithm = {
|
|
80
|
+
SGD: "sgd",
|
|
81
|
+
};
|
|
84
82
|
class IdempotentParameterMismatchException extends MachineLearningServiceException_1.MachineLearningServiceException {
|
|
85
83
|
constructor(opts) {
|
|
86
84
|
super({
|
|
@@ -95,76 +93,68 @@ class IdempotentParameterMismatchException extends MachineLearningServiceExcepti
|
|
|
95
93
|
}
|
|
96
94
|
}
|
|
97
95
|
exports.IdempotentParameterMismatchException = IdempotentParameterMismatchException;
|
|
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
|
-
MLModelFilterVariable["LAST_UPDATED_AT"] = "LastUpdatedAt";
|
|
161
|
-
MLModelFilterVariable["ML_MODEL_TYPE"] = "MLModelType";
|
|
162
|
-
MLModelFilterVariable["NAME"] = "Name";
|
|
163
|
-
MLModelFilterVariable["REAL_TIME_ENDPOINT_STATUS"] = "RealtimeEndpointStatus";
|
|
164
|
-
MLModelFilterVariable["STATUS"] = "Status";
|
|
165
|
-
MLModelFilterVariable["TRAINING_DATASOURCE_ID"] = "TrainingDataSourceId";
|
|
166
|
-
MLModelFilterVariable["TRAINING_DATA_URI"] = "TrainingDataURI";
|
|
167
|
-
})(MLModelFilterVariable = exports.MLModelFilterVariable || (exports.MLModelFilterVariable = {}));
|
|
96
|
+
exports.MLModelType = {
|
|
97
|
+
BINARY: "BINARY",
|
|
98
|
+
MULTICLASS: "MULTICLASS",
|
|
99
|
+
REGRESSION: "REGRESSION",
|
|
100
|
+
};
|
|
101
|
+
exports.RealtimeEndpointStatus = {
|
|
102
|
+
FAILED: "FAILED",
|
|
103
|
+
NONE: "NONE",
|
|
104
|
+
READY: "READY",
|
|
105
|
+
UPDATING: "UPDATING",
|
|
106
|
+
};
|
|
107
|
+
exports.BatchPredictionFilterVariable = {
|
|
108
|
+
CREATED_AT: "CreatedAt",
|
|
109
|
+
DATASOURCE_ID: "DataSourceId",
|
|
110
|
+
DATA_URI: "DataURI",
|
|
111
|
+
IAM_USER: "IAMUser",
|
|
112
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
113
|
+
ML_MODEL_ID: "MLModelId",
|
|
114
|
+
NAME: "Name",
|
|
115
|
+
STATUS: "Status",
|
|
116
|
+
};
|
|
117
|
+
exports.SortOrder = {
|
|
118
|
+
ASC: "asc",
|
|
119
|
+
DSC: "dsc",
|
|
120
|
+
};
|
|
121
|
+
exports.EntityStatus = {
|
|
122
|
+
COMPLETED: "COMPLETED",
|
|
123
|
+
DELETED: "DELETED",
|
|
124
|
+
FAILED: "FAILED",
|
|
125
|
+
INPROGRESS: "INPROGRESS",
|
|
126
|
+
PENDING: "PENDING",
|
|
127
|
+
};
|
|
128
|
+
exports.DataSourceFilterVariable = {
|
|
129
|
+
CREATED_AT: "CreatedAt",
|
|
130
|
+
DATA_URI: "DataLocationS3",
|
|
131
|
+
IAM_USER: "IAMUser",
|
|
132
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
133
|
+
NAME: "Name",
|
|
134
|
+
STATUS: "Status",
|
|
135
|
+
};
|
|
136
|
+
exports.EvaluationFilterVariable = {
|
|
137
|
+
CREATED_AT: "CreatedAt",
|
|
138
|
+
DATASOURCE_ID: "DataSourceId",
|
|
139
|
+
DATA_URI: "DataURI",
|
|
140
|
+
IAM_USER: "IAMUser",
|
|
141
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
142
|
+
ML_MODEL_ID: "MLModelId",
|
|
143
|
+
NAME: "Name",
|
|
144
|
+
STATUS: "Status",
|
|
145
|
+
};
|
|
146
|
+
exports.MLModelFilterVariable = {
|
|
147
|
+
ALGORITHM: "Algorithm",
|
|
148
|
+
CREATED_AT: "CreatedAt",
|
|
149
|
+
IAM_USER: "IAMUser",
|
|
150
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
151
|
+
ML_MODEL_TYPE: "MLModelType",
|
|
152
|
+
NAME: "Name",
|
|
153
|
+
REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus",
|
|
154
|
+
STATUS: "Status",
|
|
155
|
+
TRAINING_DATASOURCE_ID: "TrainingDataSourceId",
|
|
156
|
+
TRAINING_DATA_URI: "TrainingDataURI",
|
|
157
|
+
};
|
|
168
158
|
class LimitExceededException extends MachineLearningServiceException_1.MachineLearningServiceException {
|
|
169
159
|
constructor(opts) {
|
|
170
160
|
super({
|
|
@@ -192,8 +182,7 @@ class PredictorNotMountedException extends MachineLearningServiceException_1.Mac
|
|
|
192
182
|
}
|
|
193
183
|
}
|
|
194
184
|
exports.PredictorNotMountedException = PredictorNotMountedException;
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
})(DetailsAttributes = exports.DetailsAttributes || (exports.DetailsAttributes = {}));
|
|
185
|
+
exports.DetailsAttributes = {
|
|
186
|
+
ALGORITHM: "Algorithm",
|
|
187
|
+
PREDICTIVE_MODEL_TYPE: "PredictiveModelType",
|
|
188
|
+
};
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
2
|
-
export
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
})(TaggableResourceType || (TaggableResourceType = {}));
|
|
2
|
+
export const TaggableResourceType = {
|
|
3
|
+
BATCH_PREDICTION: "BatchPrediction",
|
|
4
|
+
DATASOURCE: "DataSource",
|
|
5
|
+
EVALUATION: "Evaluation",
|
|
6
|
+
ML_MODEL: "MLModel",
|
|
7
|
+
};
|
|
9
8
|
export class InternalServerException extends __BaseException {
|
|
10
9
|
constructor(opts) {
|
|
11
10
|
super({
|
|
@@ -69,10 +68,9 @@ export class TagLimitExceededException extends __BaseException {
|
|
|
69
68
|
Object.setPrototypeOf(this, TagLimitExceededException.prototype);
|
|
70
69
|
}
|
|
71
70
|
}
|
|
72
|
-
export
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
})(Algorithm || (Algorithm = {}));
|
|
71
|
+
export const Algorithm = {
|
|
72
|
+
SGD: "sgd",
|
|
73
|
+
};
|
|
76
74
|
export class IdempotentParameterMismatchException extends __BaseException {
|
|
77
75
|
constructor(opts) {
|
|
78
76
|
super({
|
|
@@ -86,76 +84,68 @@ export class IdempotentParameterMismatchException extends __BaseException {
|
|
|
86
84
|
this.code = opts.code;
|
|
87
85
|
}
|
|
88
86
|
}
|
|
89
|
-
export
|
|
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
|
-
MLModelFilterVariable["LAST_UPDATED_AT"] = "LastUpdatedAt";
|
|
152
|
-
MLModelFilterVariable["ML_MODEL_TYPE"] = "MLModelType";
|
|
153
|
-
MLModelFilterVariable["NAME"] = "Name";
|
|
154
|
-
MLModelFilterVariable["REAL_TIME_ENDPOINT_STATUS"] = "RealtimeEndpointStatus";
|
|
155
|
-
MLModelFilterVariable["STATUS"] = "Status";
|
|
156
|
-
MLModelFilterVariable["TRAINING_DATASOURCE_ID"] = "TrainingDataSourceId";
|
|
157
|
-
MLModelFilterVariable["TRAINING_DATA_URI"] = "TrainingDataURI";
|
|
158
|
-
})(MLModelFilterVariable || (MLModelFilterVariable = {}));
|
|
87
|
+
export const MLModelType = {
|
|
88
|
+
BINARY: "BINARY",
|
|
89
|
+
MULTICLASS: "MULTICLASS",
|
|
90
|
+
REGRESSION: "REGRESSION",
|
|
91
|
+
};
|
|
92
|
+
export const RealtimeEndpointStatus = {
|
|
93
|
+
FAILED: "FAILED",
|
|
94
|
+
NONE: "NONE",
|
|
95
|
+
READY: "READY",
|
|
96
|
+
UPDATING: "UPDATING",
|
|
97
|
+
};
|
|
98
|
+
export const BatchPredictionFilterVariable = {
|
|
99
|
+
CREATED_AT: "CreatedAt",
|
|
100
|
+
DATASOURCE_ID: "DataSourceId",
|
|
101
|
+
DATA_URI: "DataURI",
|
|
102
|
+
IAM_USER: "IAMUser",
|
|
103
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
104
|
+
ML_MODEL_ID: "MLModelId",
|
|
105
|
+
NAME: "Name",
|
|
106
|
+
STATUS: "Status",
|
|
107
|
+
};
|
|
108
|
+
export const SortOrder = {
|
|
109
|
+
ASC: "asc",
|
|
110
|
+
DSC: "dsc",
|
|
111
|
+
};
|
|
112
|
+
export const EntityStatus = {
|
|
113
|
+
COMPLETED: "COMPLETED",
|
|
114
|
+
DELETED: "DELETED",
|
|
115
|
+
FAILED: "FAILED",
|
|
116
|
+
INPROGRESS: "INPROGRESS",
|
|
117
|
+
PENDING: "PENDING",
|
|
118
|
+
};
|
|
119
|
+
export const DataSourceFilterVariable = {
|
|
120
|
+
CREATED_AT: "CreatedAt",
|
|
121
|
+
DATA_URI: "DataLocationS3",
|
|
122
|
+
IAM_USER: "IAMUser",
|
|
123
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
124
|
+
NAME: "Name",
|
|
125
|
+
STATUS: "Status",
|
|
126
|
+
};
|
|
127
|
+
export const EvaluationFilterVariable = {
|
|
128
|
+
CREATED_AT: "CreatedAt",
|
|
129
|
+
DATASOURCE_ID: "DataSourceId",
|
|
130
|
+
DATA_URI: "DataURI",
|
|
131
|
+
IAM_USER: "IAMUser",
|
|
132
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
133
|
+
ML_MODEL_ID: "MLModelId",
|
|
134
|
+
NAME: "Name",
|
|
135
|
+
STATUS: "Status",
|
|
136
|
+
};
|
|
137
|
+
export const MLModelFilterVariable = {
|
|
138
|
+
ALGORITHM: "Algorithm",
|
|
139
|
+
CREATED_AT: "CreatedAt",
|
|
140
|
+
IAM_USER: "IAMUser",
|
|
141
|
+
LAST_UPDATED_AT: "LastUpdatedAt",
|
|
142
|
+
ML_MODEL_TYPE: "MLModelType",
|
|
143
|
+
NAME: "Name",
|
|
144
|
+
REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus",
|
|
145
|
+
STATUS: "Status",
|
|
146
|
+
TRAINING_DATASOURCE_ID: "TrainingDataSourceId",
|
|
147
|
+
TRAINING_DATA_URI: "TrainingDataURI",
|
|
148
|
+
};
|
|
159
149
|
export class LimitExceededException extends __BaseException {
|
|
160
150
|
constructor(opts) {
|
|
161
151
|
super({
|
|
@@ -181,8 +171,7 @@ export class PredictorNotMountedException extends __BaseException {
|
|
|
181
171
|
Object.setPrototypeOf(this, PredictorNotMountedException.prototype);
|
|
182
172
|
}
|
|
183
173
|
}
|
|
184
|
-
export
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
})(DetailsAttributes || (DetailsAttributes = {}));
|
|
174
|
+
export const DetailsAttributes = {
|
|
175
|
+
ALGORITHM: "Algorithm",
|
|
176
|
+
PREDICTIVE_MODEL_TYPE: "PredictiveModelType",
|
|
177
|
+
};
|
|
@@ -2,13 +2,18 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
|
|
|
2
2
|
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
5
|
+
* @enum
|
|
5
6
|
*/
|
|
6
|
-
export declare
|
|
7
|
-
BATCH_PREDICTION
|
|
8
|
-
DATASOURCE
|
|
9
|
-
EVALUATION
|
|
10
|
-
ML_MODEL
|
|
11
|
-
}
|
|
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];
|
|
12
17
|
/**
|
|
13
18
|
* @public
|
|
14
19
|
* <p>A custom key-value pair associated with an ML object, such as an ML model.</p>
|
|
@@ -117,10 +122,15 @@ export declare class TagLimitExceededException extends __BaseException {
|
|
|
117
122
|
}
|
|
118
123
|
/**
|
|
119
124
|
* @public
|
|
125
|
+
* @enum
|
|
120
126
|
*/
|
|
121
|
-
export declare
|
|
122
|
-
SGD
|
|
123
|
-
}
|
|
127
|
+
export declare const Algorithm: {
|
|
128
|
+
readonly SGD: "sgd";
|
|
129
|
+
};
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
124
134
|
/**
|
|
125
135
|
* @public
|
|
126
136
|
*/
|
|
@@ -930,12 +940,17 @@ export interface CreateEvaluationOutput {
|
|
|
930
940
|
}
|
|
931
941
|
/**
|
|
932
942
|
* @public
|
|
943
|
+
* @enum
|
|
933
944
|
*/
|
|
934
|
-
export declare
|
|
935
|
-
BINARY
|
|
936
|
-
MULTICLASS
|
|
937
|
-
REGRESSION
|
|
938
|
-
}
|
|
945
|
+
export declare const MLModelType: {
|
|
946
|
+
readonly BINARY: "BINARY";
|
|
947
|
+
readonly MULTICLASS: "MULTICLASS";
|
|
948
|
+
readonly REGRESSION: "REGRESSION";
|
|
949
|
+
};
|
|
950
|
+
/**
|
|
951
|
+
* @public
|
|
952
|
+
*/
|
|
953
|
+
export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
939
954
|
/**
|
|
940
955
|
* @public
|
|
941
956
|
*/
|
|
@@ -1052,13 +1067,18 @@ export interface CreateRealtimeEndpointInput {
|
|
|
1052
1067
|
}
|
|
1053
1068
|
/**
|
|
1054
1069
|
* @public
|
|
1070
|
+
* @enum
|
|
1055
1071
|
*/
|
|
1056
|
-
export declare
|
|
1057
|
-
FAILED
|
|
1058
|
-
NONE
|
|
1059
|
-
READY
|
|
1060
|
-
UPDATING
|
|
1061
|
-
}
|
|
1072
|
+
export declare const RealtimeEndpointStatus: {
|
|
1073
|
+
readonly FAILED: "FAILED";
|
|
1074
|
+
readonly NONE: "NONE";
|
|
1075
|
+
readonly READY: "READY";
|
|
1076
|
+
readonly UPDATING: "UPDATING";
|
|
1077
|
+
};
|
|
1078
|
+
/**
|
|
1079
|
+
* @public
|
|
1080
|
+
*/
|
|
1081
|
+
export type RealtimeEndpointStatus = (typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
|
|
1062
1082
|
/**
|
|
1063
1083
|
* @public
|
|
1064
1084
|
* <p> Describes the real-time endpoint information for an <code>MLModel</code>.</p>
|
|
@@ -1257,24 +1277,34 @@ export interface DeleteTagsOutput {
|
|
|
1257
1277
|
}
|
|
1258
1278
|
/**
|
|
1259
1279
|
* @public
|
|
1280
|
+
* @enum
|
|
1260
1281
|
*/
|
|
1261
|
-
export declare
|
|
1262
|
-
CREATED_AT
|
|
1263
|
-
DATASOURCE_ID
|
|
1264
|
-
DATA_URI
|
|
1265
|
-
IAM_USER
|
|
1266
|
-
LAST_UPDATED_AT
|
|
1267
|
-
ML_MODEL_ID
|
|
1268
|
-
NAME
|
|
1269
|
-
STATUS
|
|
1270
|
-
}
|
|
1282
|
+
export declare const BatchPredictionFilterVariable: {
|
|
1283
|
+
readonly CREATED_AT: "CreatedAt";
|
|
1284
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
1285
|
+
readonly DATA_URI: "DataURI";
|
|
1286
|
+
readonly IAM_USER: "IAMUser";
|
|
1287
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
1288
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
1289
|
+
readonly NAME: "Name";
|
|
1290
|
+
readonly STATUS: "Status";
|
|
1291
|
+
};
|
|
1271
1292
|
/**
|
|
1272
1293
|
* @public
|
|
1273
1294
|
*/
|
|
1274
|
-
export
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1295
|
+
export type BatchPredictionFilterVariable = (typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
|
|
1296
|
+
/**
|
|
1297
|
+
* @public
|
|
1298
|
+
* @enum
|
|
1299
|
+
*/
|
|
1300
|
+
export declare const SortOrder: {
|
|
1301
|
+
readonly ASC: "asc";
|
|
1302
|
+
readonly DSC: "dsc";
|
|
1303
|
+
};
|
|
1304
|
+
/**
|
|
1305
|
+
* @public
|
|
1306
|
+
*/
|
|
1307
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1278
1308
|
/**
|
|
1279
1309
|
* @public
|
|
1280
1310
|
*/
|
|
@@ -1390,14 +1420,19 @@ export interface DescribeBatchPredictionsInput {
|
|
|
1390
1420
|
}
|
|
1391
1421
|
/**
|
|
1392
1422
|
* @public
|
|
1423
|
+
* @enum
|
|
1393
1424
|
*/
|
|
1394
|
-
export declare
|
|
1395
|
-
COMPLETED
|
|
1396
|
-
DELETED
|
|
1397
|
-
FAILED
|
|
1398
|
-
INPROGRESS
|
|
1399
|
-
PENDING
|
|
1400
|
-
}
|
|
1425
|
+
export declare const EntityStatus: {
|
|
1426
|
+
readonly COMPLETED: "COMPLETED";
|
|
1427
|
+
readonly DELETED: "DELETED";
|
|
1428
|
+
readonly FAILED: "FAILED";
|
|
1429
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
1430
|
+
readonly PENDING: "PENDING";
|
|
1431
|
+
};
|
|
1432
|
+
/**
|
|
1433
|
+
* @public
|
|
1434
|
+
*/
|
|
1435
|
+
export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
|
|
1401
1436
|
/**
|
|
1402
1437
|
* @public
|
|
1403
1438
|
* <p> Represents the output of a <code>GetBatchPrediction</code> operation.</p>
|
|
@@ -1511,15 +1546,20 @@ export interface DescribeBatchPredictionsOutput {
|
|
|
1511
1546
|
}
|
|
1512
1547
|
/**
|
|
1513
1548
|
* @public
|
|
1549
|
+
* @enum
|
|
1514
1550
|
*/
|
|
1515
|
-
export declare
|
|
1516
|
-
CREATED_AT
|
|
1517
|
-
DATA_URI
|
|
1518
|
-
IAM_USER
|
|
1519
|
-
LAST_UPDATED_AT
|
|
1520
|
-
NAME
|
|
1521
|
-
STATUS
|
|
1522
|
-
}
|
|
1551
|
+
export declare const DataSourceFilterVariable: {
|
|
1552
|
+
readonly CREATED_AT: "CreatedAt";
|
|
1553
|
+
readonly DATA_URI: "DataLocationS3";
|
|
1554
|
+
readonly IAM_USER: "IAMUser";
|
|
1555
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
1556
|
+
readonly NAME: "Name";
|
|
1557
|
+
readonly STATUS: "Status";
|
|
1558
|
+
};
|
|
1559
|
+
/**
|
|
1560
|
+
* @public
|
|
1561
|
+
*/
|
|
1562
|
+
export type DataSourceFilterVariable = (typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
1523
1563
|
/**
|
|
1524
1564
|
* @public
|
|
1525
1565
|
*/
|
|
@@ -1791,17 +1831,22 @@ export interface DescribeDataSourcesOutput {
|
|
|
1791
1831
|
}
|
|
1792
1832
|
/**
|
|
1793
1833
|
* @public
|
|
1834
|
+
* @enum
|
|
1794
1835
|
*/
|
|
1795
|
-
export declare
|
|
1796
|
-
CREATED_AT
|
|
1797
|
-
DATASOURCE_ID
|
|
1798
|
-
DATA_URI
|
|
1799
|
-
IAM_USER
|
|
1800
|
-
LAST_UPDATED_AT
|
|
1801
|
-
ML_MODEL_ID
|
|
1802
|
-
NAME
|
|
1803
|
-
STATUS
|
|
1804
|
-
}
|
|
1836
|
+
export declare const EvaluationFilterVariable: {
|
|
1837
|
+
readonly CREATED_AT: "CreatedAt";
|
|
1838
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
1839
|
+
readonly DATA_URI: "DataURI";
|
|
1840
|
+
readonly IAM_USER: "IAMUser";
|
|
1841
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
1842
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
1843
|
+
readonly NAME: "Name";
|
|
1844
|
+
readonly STATUS: "Status";
|
|
1845
|
+
};
|
|
1846
|
+
/**
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1849
|
+
export type EvaluationFilterVariable = (typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
1805
1850
|
/**
|
|
1806
1851
|
* @public
|
|
1807
1852
|
*/
|
|
@@ -2056,19 +2101,24 @@ export interface DescribeEvaluationsOutput {
|
|
|
2056
2101
|
}
|
|
2057
2102
|
/**
|
|
2058
2103
|
* @public
|
|
2104
|
+
* @enum
|
|
2059
2105
|
*/
|
|
2060
|
-
export declare
|
|
2061
|
-
ALGORITHM
|
|
2062
|
-
CREATED_AT
|
|
2063
|
-
IAM_USER
|
|
2064
|
-
LAST_UPDATED_AT
|
|
2065
|
-
ML_MODEL_TYPE
|
|
2066
|
-
NAME
|
|
2067
|
-
REAL_TIME_ENDPOINT_STATUS
|
|
2068
|
-
STATUS
|
|
2069
|
-
TRAINING_DATASOURCE_ID
|
|
2070
|
-
TRAINING_DATA_URI
|
|
2071
|
-
}
|
|
2106
|
+
export declare const MLModelFilterVariable: {
|
|
2107
|
+
readonly ALGORITHM: "Algorithm";
|
|
2108
|
+
readonly CREATED_AT: "CreatedAt";
|
|
2109
|
+
readonly IAM_USER: "IAMUser";
|
|
2110
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
2111
|
+
readonly ML_MODEL_TYPE: "MLModelType";
|
|
2112
|
+
readonly NAME: "Name";
|
|
2113
|
+
readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
|
|
2114
|
+
readonly STATUS: "Status";
|
|
2115
|
+
readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
|
|
2116
|
+
readonly TRAINING_DATA_URI: "TrainingDataURI";
|
|
2117
|
+
};
|
|
2118
|
+
/**
|
|
2119
|
+
* @public
|
|
2120
|
+
*/
|
|
2121
|
+
export type MLModelFilterVariable = (typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
2072
2122
|
/**
|
|
2073
2123
|
* @public
|
|
2074
2124
|
*/
|
|
@@ -2991,11 +3041,16 @@ export declare class PredictorNotMountedException extends __BaseException {
|
|
|
2991
3041
|
}
|
|
2992
3042
|
/**
|
|
2993
3043
|
* @public
|
|
3044
|
+
* @enum
|
|
2994
3045
|
*/
|
|
2995
|
-
export declare
|
|
2996
|
-
ALGORITHM
|
|
2997
|
-
PREDICTIVE_MODEL_TYPE
|
|
2998
|
-
}
|
|
3046
|
+
export declare const DetailsAttributes: {
|
|
3047
|
+
readonly ALGORITHM: "Algorithm";
|
|
3048
|
+
readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
|
|
3049
|
+
};
|
|
3050
|
+
/**
|
|
3051
|
+
* @public
|
|
3052
|
+
*/
|
|
3053
|
+
export type DetailsAttributes = (typeof DetailsAttributes)[keyof typeof DetailsAttributes];
|
|
2999
3054
|
/**
|
|
3000
3055
|
* @public
|
|
3001
3056
|
* <p>The output from a <code>Predict</code> operation: </p>
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { MachineLearningServiceException as __BaseException } from "./MachineLearningServiceException";
|
|
3
|
-
export declare
|
|
4
|
-
BATCH_PREDICTION
|
|
5
|
-
DATASOURCE
|
|
6
|
-
EVALUATION
|
|
7
|
-
ML_MODEL
|
|
8
|
-
}
|
|
3
|
+
export declare const TaggableResourceType: {
|
|
4
|
+
readonly BATCH_PREDICTION: "BatchPrediction";
|
|
5
|
+
readonly DATASOURCE: "DataSource";
|
|
6
|
+
readonly EVALUATION: "Evaluation";
|
|
7
|
+
readonly ML_MODEL: "MLModel";
|
|
8
|
+
};
|
|
9
|
+
export type TaggableResourceType =
|
|
10
|
+
(typeof TaggableResourceType)[keyof typeof TaggableResourceType];
|
|
9
11
|
export interface Tag {
|
|
10
12
|
Key?: string;
|
|
11
13
|
Value?: string;
|
|
@@ -57,9 +59,10 @@ export declare class TagLimitExceededException extends __BaseException {
|
|
|
57
59
|
opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
|
|
58
60
|
);
|
|
59
61
|
}
|
|
60
|
-
export declare
|
|
61
|
-
SGD
|
|
62
|
-
}
|
|
62
|
+
export declare const Algorithm: {
|
|
63
|
+
readonly SGD: "sgd";
|
|
64
|
+
};
|
|
65
|
+
export type Algorithm = (typeof Algorithm)[keyof typeof Algorithm];
|
|
63
66
|
export interface CreateBatchPredictionInput {
|
|
64
67
|
BatchPredictionId: string | undefined;
|
|
65
68
|
BatchPredictionName?: string;
|
|
@@ -163,11 +166,12 @@ export interface CreateEvaluationInput {
|
|
|
163
166
|
export interface CreateEvaluationOutput {
|
|
164
167
|
EvaluationId?: string;
|
|
165
168
|
}
|
|
166
|
-
export declare
|
|
167
|
-
BINARY
|
|
168
|
-
MULTICLASS
|
|
169
|
-
REGRESSION
|
|
170
|
-
}
|
|
169
|
+
export declare const MLModelType: {
|
|
170
|
+
readonly BINARY: "BINARY";
|
|
171
|
+
readonly MULTICLASS: "MULTICLASS";
|
|
172
|
+
readonly REGRESSION: "REGRESSION";
|
|
173
|
+
};
|
|
174
|
+
export type MLModelType = (typeof MLModelType)[keyof typeof MLModelType];
|
|
171
175
|
export interface CreateMLModelInput {
|
|
172
176
|
MLModelId: string | undefined;
|
|
173
177
|
MLModelName?: string;
|
|
@@ -183,12 +187,14 @@ export interface CreateMLModelOutput {
|
|
|
183
187
|
export interface CreateRealtimeEndpointInput {
|
|
184
188
|
MLModelId: string | undefined;
|
|
185
189
|
}
|
|
186
|
-
export declare
|
|
187
|
-
FAILED
|
|
188
|
-
NONE
|
|
189
|
-
READY
|
|
190
|
-
UPDATING
|
|
191
|
-
}
|
|
190
|
+
export declare const RealtimeEndpointStatus: {
|
|
191
|
+
readonly FAILED: "FAILED";
|
|
192
|
+
readonly NONE: "NONE";
|
|
193
|
+
readonly READY: "READY";
|
|
194
|
+
readonly UPDATING: "UPDATING";
|
|
195
|
+
};
|
|
196
|
+
export type RealtimeEndpointStatus =
|
|
197
|
+
(typeof RealtimeEndpointStatus)[keyof typeof RealtimeEndpointStatus];
|
|
192
198
|
export interface RealtimeEndpointInfo {
|
|
193
199
|
PeakRequestsPerSecond?: number;
|
|
194
200
|
CreatedAt?: Date;
|
|
@@ -239,20 +245,23 @@ export interface DeleteTagsOutput {
|
|
|
239
245
|
ResourceId?: string;
|
|
240
246
|
ResourceType?: TaggableResourceType | string;
|
|
241
247
|
}
|
|
242
|
-
export declare
|
|
243
|
-
CREATED_AT
|
|
244
|
-
DATASOURCE_ID
|
|
245
|
-
DATA_URI
|
|
246
|
-
IAM_USER
|
|
247
|
-
LAST_UPDATED_AT
|
|
248
|
-
ML_MODEL_ID
|
|
249
|
-
NAME
|
|
250
|
-
STATUS
|
|
251
|
-
}
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
248
|
+
export declare const BatchPredictionFilterVariable: {
|
|
249
|
+
readonly CREATED_AT: "CreatedAt";
|
|
250
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
251
|
+
readonly DATA_URI: "DataURI";
|
|
252
|
+
readonly IAM_USER: "IAMUser";
|
|
253
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
254
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
255
|
+
readonly NAME: "Name";
|
|
256
|
+
readonly STATUS: "Status";
|
|
257
|
+
};
|
|
258
|
+
export type BatchPredictionFilterVariable =
|
|
259
|
+
(typeof BatchPredictionFilterVariable)[keyof typeof BatchPredictionFilterVariable];
|
|
260
|
+
export declare const SortOrder: {
|
|
261
|
+
readonly ASC: "asc";
|
|
262
|
+
readonly DSC: "dsc";
|
|
263
|
+
};
|
|
264
|
+
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
256
265
|
export interface DescribeBatchPredictionsInput {
|
|
257
266
|
FilterVariable?: BatchPredictionFilterVariable | string;
|
|
258
267
|
EQ?: string;
|
|
@@ -266,13 +275,14 @@ export interface DescribeBatchPredictionsInput {
|
|
|
266
275
|
NextToken?: string;
|
|
267
276
|
Limit?: number;
|
|
268
277
|
}
|
|
269
|
-
export declare
|
|
270
|
-
COMPLETED
|
|
271
|
-
DELETED
|
|
272
|
-
FAILED
|
|
273
|
-
INPROGRESS
|
|
274
|
-
PENDING
|
|
275
|
-
}
|
|
278
|
+
export declare const EntityStatus: {
|
|
279
|
+
readonly COMPLETED: "COMPLETED";
|
|
280
|
+
readonly DELETED: "DELETED";
|
|
281
|
+
readonly FAILED: "FAILED";
|
|
282
|
+
readonly INPROGRESS: "INPROGRESS";
|
|
283
|
+
readonly PENDING: "PENDING";
|
|
284
|
+
};
|
|
285
|
+
export type EntityStatus = (typeof EntityStatus)[keyof typeof EntityStatus];
|
|
276
286
|
export interface BatchPrediction {
|
|
277
287
|
BatchPredictionId?: string;
|
|
278
288
|
MLModelId?: string;
|
|
@@ -295,14 +305,16 @@ export interface DescribeBatchPredictionsOutput {
|
|
|
295
305
|
Results?: BatchPrediction[];
|
|
296
306
|
NextToken?: string;
|
|
297
307
|
}
|
|
298
|
-
export declare
|
|
299
|
-
CREATED_AT
|
|
300
|
-
DATA_URI
|
|
301
|
-
IAM_USER
|
|
302
|
-
LAST_UPDATED_AT
|
|
303
|
-
NAME
|
|
304
|
-
STATUS
|
|
305
|
-
}
|
|
308
|
+
export declare const DataSourceFilterVariable: {
|
|
309
|
+
readonly CREATED_AT: "CreatedAt";
|
|
310
|
+
readonly DATA_URI: "DataLocationS3";
|
|
311
|
+
readonly IAM_USER: "IAMUser";
|
|
312
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
313
|
+
readonly NAME: "Name";
|
|
314
|
+
readonly STATUS: "Status";
|
|
315
|
+
};
|
|
316
|
+
export type DataSourceFilterVariable =
|
|
317
|
+
(typeof DataSourceFilterVariable)[keyof typeof DataSourceFilterVariable];
|
|
306
318
|
export interface DescribeDataSourcesInput {
|
|
307
319
|
FilterVariable?: DataSourceFilterVariable | string;
|
|
308
320
|
EQ?: string;
|
|
@@ -353,16 +365,18 @@ export interface DescribeDataSourcesOutput {
|
|
|
353
365
|
Results?: DataSource[];
|
|
354
366
|
NextToken?: string;
|
|
355
367
|
}
|
|
356
|
-
export declare
|
|
357
|
-
CREATED_AT
|
|
358
|
-
DATASOURCE_ID
|
|
359
|
-
DATA_URI
|
|
360
|
-
IAM_USER
|
|
361
|
-
LAST_UPDATED_AT
|
|
362
|
-
ML_MODEL_ID
|
|
363
|
-
NAME
|
|
364
|
-
STATUS
|
|
365
|
-
}
|
|
368
|
+
export declare const EvaluationFilterVariable: {
|
|
369
|
+
readonly CREATED_AT: "CreatedAt";
|
|
370
|
+
readonly DATASOURCE_ID: "DataSourceId";
|
|
371
|
+
readonly DATA_URI: "DataURI";
|
|
372
|
+
readonly IAM_USER: "IAMUser";
|
|
373
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
374
|
+
readonly ML_MODEL_ID: "MLModelId";
|
|
375
|
+
readonly NAME: "Name";
|
|
376
|
+
readonly STATUS: "Status";
|
|
377
|
+
};
|
|
378
|
+
export type EvaluationFilterVariable =
|
|
379
|
+
(typeof EvaluationFilterVariable)[keyof typeof EvaluationFilterVariable];
|
|
366
380
|
export interface DescribeEvaluationsInput {
|
|
367
381
|
FilterVariable?: EvaluationFilterVariable | string;
|
|
368
382
|
EQ?: string;
|
|
@@ -399,18 +413,20 @@ export interface DescribeEvaluationsOutput {
|
|
|
399
413
|
Results?: Evaluation[];
|
|
400
414
|
NextToken?: string;
|
|
401
415
|
}
|
|
402
|
-
export declare
|
|
403
|
-
ALGORITHM
|
|
404
|
-
CREATED_AT
|
|
405
|
-
IAM_USER
|
|
406
|
-
LAST_UPDATED_AT
|
|
407
|
-
ML_MODEL_TYPE
|
|
408
|
-
NAME
|
|
409
|
-
REAL_TIME_ENDPOINT_STATUS
|
|
410
|
-
STATUS
|
|
411
|
-
TRAINING_DATASOURCE_ID
|
|
412
|
-
TRAINING_DATA_URI
|
|
413
|
-
}
|
|
416
|
+
export declare const MLModelFilterVariable: {
|
|
417
|
+
readonly ALGORITHM: "Algorithm";
|
|
418
|
+
readonly CREATED_AT: "CreatedAt";
|
|
419
|
+
readonly IAM_USER: "IAMUser";
|
|
420
|
+
readonly LAST_UPDATED_AT: "LastUpdatedAt";
|
|
421
|
+
readonly ML_MODEL_TYPE: "MLModelType";
|
|
422
|
+
readonly NAME: "Name";
|
|
423
|
+
readonly REAL_TIME_ENDPOINT_STATUS: "RealtimeEndpointStatus";
|
|
424
|
+
readonly STATUS: "Status";
|
|
425
|
+
readonly TRAINING_DATASOURCE_ID: "TrainingDataSourceId";
|
|
426
|
+
readonly TRAINING_DATA_URI: "TrainingDataURI";
|
|
427
|
+
};
|
|
428
|
+
export type MLModelFilterVariable =
|
|
429
|
+
(typeof MLModelFilterVariable)[keyof typeof MLModelFilterVariable];
|
|
414
430
|
export interface DescribeMLModelsInput {
|
|
415
431
|
FilterVariable?: MLModelFilterVariable | string;
|
|
416
432
|
EQ?: string;
|
|
@@ -573,10 +589,12 @@ export declare class PredictorNotMountedException extends __BaseException {
|
|
|
573
589
|
opts: __ExceptionOptionType<PredictorNotMountedException, __BaseException>
|
|
574
590
|
);
|
|
575
591
|
}
|
|
576
|
-
export declare
|
|
577
|
-
ALGORITHM
|
|
578
|
-
PREDICTIVE_MODEL_TYPE
|
|
579
|
-
}
|
|
592
|
+
export declare const DetailsAttributes: {
|
|
593
|
+
readonly ALGORITHM: "Algorithm";
|
|
594
|
+
readonly PREDICTIVE_MODEL_TYPE: "PredictiveModelType";
|
|
595
|
+
};
|
|
596
|
+
export type DetailsAttributes =
|
|
597
|
+
(typeof DetailsAttributes)[keyof typeof DetailsAttributes];
|
|
580
598
|
export interface Prediction {
|
|
581
599
|
predictedLabel?: string;
|
|
582
600
|
predictedValue?: number;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.306.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,44 +21,44 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
30
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
31
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
32
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
33
|
-
"@aws-sdk/middleware-logger": "3.
|
|
34
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
36
|
-
"@aws-sdk/middleware-sdk-machinelearning": "3.
|
|
37
|
-
"@aws-sdk/middleware-serde": "3.
|
|
38
|
-
"@aws-sdk/middleware-signing": "3.
|
|
39
|
-
"@aws-sdk/middleware-stack": "3.
|
|
40
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
41
|
-
"@aws-sdk/node-config-provider": "3.
|
|
42
|
-
"@aws-sdk/node-http-handler": "3.
|
|
43
|
-
"@aws-sdk/protocol-http": "3.
|
|
44
|
-
"@aws-sdk/smithy-client": "3.
|
|
45
|
-
"@aws-sdk/types": "3.
|
|
46
|
-
"@aws-sdk/url-parser": "3.
|
|
47
|
-
"@aws-sdk/util-base64": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
49
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
51
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
52
|
-
"@aws-sdk/util-endpoints": "3.
|
|
53
|
-
"@aws-sdk/util-retry": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8": "3.
|
|
57
|
-
"@aws-sdk/util-waiter": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.306.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.306.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.306.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.306.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.306.0",
|
|
29
|
+
"@aws-sdk/invalid-dependency": "3.306.0",
|
|
30
|
+
"@aws-sdk/middleware-content-length": "3.306.0",
|
|
31
|
+
"@aws-sdk/middleware-endpoint": "3.306.0",
|
|
32
|
+
"@aws-sdk/middleware-host-header": "3.306.0",
|
|
33
|
+
"@aws-sdk/middleware-logger": "3.306.0",
|
|
34
|
+
"@aws-sdk/middleware-recursion-detection": "3.306.0",
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.306.0",
|
|
36
|
+
"@aws-sdk/middleware-sdk-machinelearning": "3.306.0",
|
|
37
|
+
"@aws-sdk/middleware-serde": "3.306.0",
|
|
38
|
+
"@aws-sdk/middleware-signing": "3.306.0",
|
|
39
|
+
"@aws-sdk/middleware-stack": "3.306.0",
|
|
40
|
+
"@aws-sdk/middleware-user-agent": "3.306.0",
|
|
41
|
+
"@aws-sdk/node-config-provider": "3.306.0",
|
|
42
|
+
"@aws-sdk/node-http-handler": "3.306.0",
|
|
43
|
+
"@aws-sdk/protocol-http": "3.306.0",
|
|
44
|
+
"@aws-sdk/smithy-client": "3.306.0",
|
|
45
|
+
"@aws-sdk/types": "3.306.0",
|
|
46
|
+
"@aws-sdk/url-parser": "3.306.0",
|
|
47
|
+
"@aws-sdk/util-base64": "3.303.0",
|
|
48
|
+
"@aws-sdk/util-body-length-browser": "3.303.0",
|
|
49
|
+
"@aws-sdk/util-body-length-node": "3.303.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-browser": "3.306.0",
|
|
51
|
+
"@aws-sdk/util-defaults-mode-node": "3.306.0",
|
|
52
|
+
"@aws-sdk/util-endpoints": "3.306.0",
|
|
53
|
+
"@aws-sdk/util-retry": "3.306.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.306.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.306.0",
|
|
56
|
+
"@aws-sdk/util-utf8": "3.303.0",
|
|
57
|
+
"@aws-sdk/util-waiter": "3.306.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
61
|
+
"@aws-sdk/service-client-documentation-generator": "3.303.0",
|
|
62
62
|
"@tsconfig/node14": "1.0.3",
|
|
63
63
|
"@types/node": "^14.14.31",
|
|
64
64
|
"concurrently": "7.0.0",
|