@aws-sdk/client-machine-learning 3.529.1 → 3.535.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-types/MachineLearning.d.ts +5 -1
- package/dist-types/MachineLearningClient.d.ts +1 -1
- package/dist-types/commands/AddTagsCommand.d.ts +2 -1
- package/dist-types/commands/CreateBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +2 -1
- package/dist-types/commands/CreateEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/CreateMLModelCommand.d.ts +2 -1
- package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/DeleteEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/DeleteMLModelCommand.d.ts +2 -1
- package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +2 -1
- package/dist-types/commands/DeleteTagsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDataSourcesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeEvaluationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMLModelsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeTagsCommand.d.ts +2 -1
- package/dist-types/commands/GetBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/GetDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/GetEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/GetMLModelCommand.d.ts +2 -1
- package/dist-types/commands/PredictCommand.d.ts +2 -1
- package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +2 -1
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +2 -1
- package/dist-types/commands/UpdateEvaluationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateMLModelCommand.d.ts +2 -1
- package/dist-types/models/models_0.d.ts +377 -377
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/MachineLearning.d.ts +4 -0
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/CreateBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRDSCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromRedshiftCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateDataSourceFromS3Command.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/CreateRealtimeEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteRealtimeEndpointCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DeleteTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeBatchPredictionsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeDataSourcesCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeEvaluationsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeMLModelsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/DescribeTagsCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/GetMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/PredictCommand.d.ts +7 -0
- package/dist-types/ts3.4/commands/UpdateBatchPredictionCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateDataSourceCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateEvaluationCommand.d.ts +9 -0
- package/dist-types/ts3.4/commands/UpdateMLModelCommand.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +42 -42
|
@@ -116,24 +116,28 @@ export interface MachineLearning {
|
|
|
116
116
|
/**
|
|
117
117
|
* @see {@link DescribeBatchPredictionsCommand}
|
|
118
118
|
*/
|
|
119
|
+
describeBatchPredictions(): Promise<DescribeBatchPredictionsCommandOutput>;
|
|
119
120
|
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeBatchPredictionsCommandOutput>;
|
|
120
121
|
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void): void;
|
|
121
122
|
describeBatchPredictions(args: DescribeBatchPredictionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBatchPredictionsCommandOutput) => void): void;
|
|
122
123
|
/**
|
|
123
124
|
* @see {@link DescribeDataSourcesCommand}
|
|
124
125
|
*/
|
|
126
|
+
describeDataSources(): Promise<DescribeDataSourcesCommandOutput>;
|
|
125
127
|
describeDataSources(args: DescribeDataSourcesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataSourcesCommandOutput>;
|
|
126
128
|
describeDataSources(args: DescribeDataSourcesCommandInput, cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void): void;
|
|
127
129
|
describeDataSources(args: DescribeDataSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataSourcesCommandOutput) => void): void;
|
|
128
130
|
/**
|
|
129
131
|
* @see {@link DescribeEvaluationsCommand}
|
|
130
132
|
*/
|
|
133
|
+
describeEvaluations(): Promise<DescribeEvaluationsCommandOutput>;
|
|
131
134
|
describeEvaluations(args: DescribeEvaluationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEvaluationsCommandOutput>;
|
|
132
135
|
describeEvaluations(args: DescribeEvaluationsCommandInput, cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void): void;
|
|
133
136
|
describeEvaluations(args: DescribeEvaluationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEvaluationsCommandOutput) => void): void;
|
|
134
137
|
/**
|
|
135
138
|
* @see {@link DescribeMLModelsCommand}
|
|
136
139
|
*/
|
|
140
|
+
describeMLModels(): Promise<DescribeMLModelsCommandOutput>;
|
|
137
141
|
describeMLModels(args: DescribeMLModelsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeMLModelsCommandOutput>;
|
|
138
142
|
describeMLModels(args: DescribeMLModelsCommandInput, cb: (err: any, data?: DescribeMLModelsCommandOutput) => void): void;
|
|
139
143
|
describeMLModels(args: DescribeMLModelsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeMLModelsCommandOutput) => void): void;
|
|
@@ -199,9 +203,9 @@ export interface MachineLearning {
|
|
|
199
203
|
updateMLModel(args: UpdateMLModelCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateMLModelCommandOutput) => void): void;
|
|
200
204
|
}
|
|
201
205
|
/**
|
|
202
|
-
* @public
|
|
203
206
|
* Definition of the public APIs
|
|
204
207
|
* exposed by Amazon Machine Learning
|
|
208
|
+
* @public
|
|
205
209
|
*/
|
|
206
210
|
export declare class MachineLearning extends MachineLearningClient implements MachineLearning {
|
|
207
211
|
}
|
|
@@ -179,9 +179,9 @@ export type MachineLearningClientResolvedConfigType = __SmithyResolvedConfigurat
|
|
|
179
179
|
export interface MachineLearningClientResolvedConfig extends MachineLearningClientResolvedConfigType {
|
|
180
180
|
}
|
|
181
181
|
/**
|
|
182
|
-
* @public
|
|
183
182
|
* Definition of the public APIs
|
|
184
183
|
* exposed by Amazon Machine Learning
|
|
184
|
+
* @public
|
|
185
185
|
*/
|
|
186
186
|
export declare class MachineLearningClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, MachineLearningClientResolvedConfig> {
|
|
187
187
|
/**
|
|
@@ -22,10 +22,10 @@ export interface AddTagsCommandOutput extends AddTagsOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const AddTagsCommand_base: {
|
|
24
24
|
new (input: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsCommandInput, AddTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: AddTagsCommandInput): import("@smithy/smithy-client").CommandImpl<AddTagsCommandInput, AddTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Adds one or more tags to an object, up to a limit of 10. Each tag consists of a key
|
|
30
30
|
* and an optional value. If you add a tag using a key that is already associated with the ML object,
|
|
31
31
|
* <code>AddTags</code> updates the tag's value.</p>
|
|
@@ -76,6 +76,7 @@ declare const AddTagsCommand_base: {
|
|
|
76
76
|
* @throws {@link MachineLearningServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class AddTagsCommand extends AddTagsCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateBatchPredictionCommandOutput extends CreateBatchPredictio
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateBatchPredictionCommand_base: {
|
|
24
24
|
new (input: CreateBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Generates predictions for a group of observations. The observations to process exist in one or more data files referenced
|
|
30
30
|
* by a <code>DataSource</code>. This operation creates a new <code>BatchPrediction</code>, and uses an <code>MLModel</code> and the data
|
|
31
31
|
* files referenced by the <code>DataSource</code> as information sources.
|
|
@@ -77,6 +77,7 @@ declare const CreateBatchPredictionCommand_base: {
|
|
|
77
77
|
* @throws {@link MachineLearningServiceException}
|
|
78
78
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
79
79
|
*
|
|
80
|
+
* @public
|
|
80
81
|
*/
|
|
81
82
|
export declare class CreateBatchPredictionCommand extends CreateBatchPredictionCommand_base {
|
|
82
83
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDataSourceFromRDSCommandOutput extends CreateDataSourceFr
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDataSourceFromRDSCommand_base: {
|
|
24
24
|
new (input: CreateDataSourceFromRDSCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDataSourceFromRDSCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromRDSCommandInput, CreateDataSourceFromRDSCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a <code>DataSource</code> object from an <a href="http://aws.amazon.com/rds/"> Amazon Relational Database Service</a> (Amazon RDS). A <code>DataSource</code> references data that can be used to perform <code>CreateMLModel</code>, <code>CreateEvaluation</code>, or <code>CreateBatchPrediction</code> operations.</p>
|
|
30
30
|
*
|
|
31
31
|
* <p>
|
|
@@ -97,6 +97,7 @@ declare const CreateDataSourceFromRDSCommand_base: {
|
|
|
97
97
|
* @throws {@link MachineLearningServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
99
99
|
*
|
|
100
|
+
* @public
|
|
100
101
|
*/
|
|
101
102
|
export declare class CreateDataSourceFromRDSCommand extends CreateDataSourceFromRDSCommand_base {
|
|
102
103
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDataSourceFromRedshiftCommandOutput extends CreateDataSou
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDataSourceFromRedshiftCommand_base: {
|
|
24
24
|
new (input: CreateDataSourceFromRedshiftCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDataSourceFromRedshiftCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromRedshiftCommandInput, CreateDataSourceFromRedshiftCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a <code>DataSource</code> from a database hosted on an Amazon Redshift cluster. A
|
|
30
30
|
* <code>DataSource</code> references data that can be used to perform either <code>CreateMLModel</code>, <code>CreateEvaluation</code>, or <code>CreateBatchPrediction</code>
|
|
31
31
|
* operations.</p>
|
|
@@ -112,6 +112,7 @@ declare const CreateDataSourceFromRedshiftCommand_base: {
|
|
|
112
112
|
* @throws {@link MachineLearningServiceException}
|
|
113
113
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
114
114
|
*
|
|
115
|
+
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class CreateDataSourceFromRedshiftCommand extends CreateDataSourceFromRedshiftCommand_base {
|
|
117
118
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateDataSourceFromS3CommandOutput extends CreateDataSourceFro
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateDataSourceFromS3Command_base: {
|
|
24
24
|
new (input: CreateDataSourceFromS3CommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateDataSourceFromS3CommandInput): import("@smithy/smithy-client").CommandImpl<CreateDataSourceFromS3CommandInput, CreateDataSourceFromS3CommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a <code>DataSource</code> object. A <code>DataSource</code> references data that
|
|
30
30
|
* can be used to perform <code>CreateMLModel</code>, <code>CreateEvaluation</code>, or
|
|
31
31
|
* <code>CreateBatchPrediction</code> operations.</p>
|
|
@@ -100,6 +100,7 @@ declare const CreateDataSourceFromS3Command_base: {
|
|
|
100
100
|
* @throws {@link MachineLearningServiceException}
|
|
101
101
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
102
102
|
*
|
|
103
|
+
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class CreateDataSourceFromS3Command extends CreateDataSourceFromS3Command_base {
|
|
105
106
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateEvaluationCommandOutput extends CreateEvaluationOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateEvaluationCommand_base: {
|
|
24
24
|
new (input: CreateEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEvaluationCommandInput, CreateEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateEvaluationCommandInput, CreateEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new <code>Evaluation</code> of an <code>MLModel</code>. An <code>MLModel</code> is evaluated on a set of observations associated to a <code>DataSource</code>. Like a <code>DataSource</code>
|
|
30
30
|
* for an <code>MLModel</code>, the <code>DataSource</code> for an <code>Evaluation</code> contains values for the <code>Target Variable</code>. The <code>Evaluation</code> compares the predicted result for each observation to the actual outcome and provides a
|
|
31
31
|
* summary so that you know how effective the <code>MLModel</code> functions on the test
|
|
@@ -76,6 +76,7 @@ declare const CreateEvaluationCommand_base: {
|
|
|
76
76
|
* @throws {@link MachineLearningServiceException}
|
|
77
77
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
78
78
|
*
|
|
79
|
+
* @public
|
|
79
80
|
*/
|
|
80
81
|
export declare class CreateEvaluationCommand extends CreateEvaluationCommand_base {
|
|
81
82
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateMLModelCommand_base: {
|
|
24
24
|
new (input: CreateMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMLModelCommandInput, CreateMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<CreateMLModelCommandInput, CreateMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a new <code>MLModel</code> using the <code>DataSource</code> and the recipe as
|
|
30
30
|
* information sources. </p>
|
|
31
31
|
* <p>An <code>MLModel</code> is nearly immutable. Users can update only the
|
|
@@ -89,6 +89,7 @@ declare const CreateMLModelCommand_base: {
|
|
|
89
89
|
* @throws {@link MachineLearningServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class CreateMLModelCommand extends CreateMLModelCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo
|
|
|
22
22
|
}
|
|
23
23
|
declare const CreateRealtimeEndpointCommand_base: {
|
|
24
24
|
new (input: CreateRealtimeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateRealtimeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Creates a real-time endpoint for the <code>MLModel</code>. The endpoint contains the URI of the <code>MLModel</code>; that is, the location to send real-time prediction requests for the specified <code>MLModel</code>.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const CreateRealtimeEndpointCommand_base: {
|
|
|
68
68
|
* @throws {@link MachineLearningServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class CreateRealtimeEndpointCommand extends CreateRealtimeEndpointCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteBatchPredictionCommand_base: {
|
|
24
24
|
new (input: DeleteBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns the DELETED status to a <code>BatchPrediction</code>, rendering it unusable.</p>
|
|
30
30
|
* <p>After using the <code>DeleteBatchPrediction</code> operation, you can use the <a>GetBatchPrediction</a>
|
|
31
31
|
* operation to verify that the status of the <code>BatchPrediction</code> changed to DELETED.</p>
|
|
@@ -67,6 +67,7 @@ declare const DeleteBatchPredictionCommand_base: {
|
|
|
67
67
|
* @throws {@link MachineLearningServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteBatchPredictionCommand extends DeleteBatchPredictionCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteDataSourceCommand_base: {
|
|
24
24
|
new (input: DeleteDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns the DELETED status to a <code>DataSource</code>, rendering it unusable.</p>
|
|
30
30
|
* <p>After using the <code>DeleteDataSource</code> operation, you can use the <a>GetDataSource</a> operation to verify that the status of the <code>DataSource</code> changed to DELETED.</p>
|
|
31
31
|
* <p>
|
|
@@ -65,6 +65,7 @@ declare const DeleteDataSourceCommand_base: {
|
|
|
65
65
|
* @throws {@link MachineLearningServiceException}
|
|
66
66
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
67
67
|
*
|
|
68
|
+
* @public
|
|
68
69
|
*/
|
|
69
70
|
export declare class DeleteDataSourceCommand extends DeleteDataSourceCommand_base {
|
|
70
71
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteEvaluationCommand_base: {
|
|
24
24
|
new (input: DeleteEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns the <code>DELETED</code> status to an <code>Evaluation</code>, rendering it unusable.</p>
|
|
30
30
|
*
|
|
31
31
|
* <p>After invoking the <code>DeleteEvaluation</code> operation, you can use the
|
|
@@ -67,6 +67,7 @@ declare const DeleteEvaluationCommand_base: {
|
|
|
67
67
|
* @throws {@link MachineLearningServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteEvaluationCommand extends DeleteEvaluationCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteMLModelCommand_base: {
|
|
24
24
|
new (input: DeleteMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLModelCommandInput, DeleteMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteMLModelCommandInput, DeleteMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Assigns the <code>DELETED</code> status to an <code>MLModel</code>, rendering it unusable.</p>
|
|
30
30
|
* <p>After using the <code>DeleteMLModel</code> operation, you can use the
|
|
31
31
|
* <code>GetMLModel</code> operation to verify that the status of the <code>MLModel</code> changed to DELETED.</p>
|
|
@@ -67,6 +67,7 @@ declare const DeleteMLModelCommand_base: {
|
|
|
67
67
|
* @throws {@link MachineLearningServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
69
69
|
*
|
|
70
|
+
* @public
|
|
70
71
|
*/
|
|
71
72
|
export declare class DeleteMLModelCommand extends DeleteMLModelCommand_base {
|
|
72
73
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteRealtimeEndpointCommand_base: {
|
|
24
24
|
new (input: DeleteRealtimeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteRealtimeEndpointCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes a real time endpoint of an <code>MLModel</code>.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -68,6 +68,7 @@ declare const DeleteRealtimeEndpointCommand_base: {
|
|
|
68
68
|
* @throws {@link MachineLearningServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
70
70
|
*
|
|
71
|
+
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class DeleteRealtimeEndpointCommand extends DeleteRealtimeEndpointCommand_base {
|
|
73
74
|
}
|
|
@@ -22,10 +22,10 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const DeleteTagsCommand_base: {
|
|
24
24
|
new (input: DeleteTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTagsCommandInput, DeleteTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DeleteTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTagsCommandInput, DeleteTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Deletes the specified tags associated with an ML object. After this operation is complete, you can't recover deleted tags.</p>
|
|
30
30
|
* <p>If you specify a tag that doesn't exist, Amazon ML ignores it.</p>
|
|
31
31
|
* @example
|
|
@@ -70,6 +70,7 @@ declare const DeleteTagsCommand_base: {
|
|
|
70
70
|
* @throws {@link MachineLearningServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DeleteTagsCommand extends DeleteTagsCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeBatchPredictionsCommand_base: {
|
|
24
24
|
new (input: DescribeBatchPredictionsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeBatchPredictionsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of <code>BatchPrediction</code> operations that match the search criteria in the request.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -89,6 +89,7 @@ declare const DescribeBatchPredictionsCommand_base: {
|
|
|
89
89
|
* @throws {@link MachineLearningServiceException}
|
|
90
90
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
91
91
|
*
|
|
92
|
+
* @public
|
|
92
93
|
*/
|
|
93
94
|
export declare class DescribeBatchPredictionsCommand extends DescribeBatchPredictionsCommand_base {
|
|
94
95
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeDataSourcesCommand_base: {
|
|
24
24
|
new (input: DescribeDataSourcesCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeDataSourcesCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of <code>DataSource</code> that match the search criteria in the request.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -108,6 +108,7 @@ declare const DescribeDataSourcesCommand_base: {
|
|
|
108
108
|
* @throws {@link MachineLearningServiceException}
|
|
109
109
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
110
110
|
*
|
|
111
|
+
* @public
|
|
111
112
|
*/
|
|
112
113
|
export declare class DescribeDataSourcesCommand extends DescribeDataSourcesCommand_base {
|
|
113
114
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeEvaluationsCommand_base: {
|
|
24
24
|
new (input: DescribeEvaluationsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeEvaluationsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of <code>DescribeEvaluations</code> that match the search criteria in the request.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -91,6 +91,7 @@ declare const DescribeEvaluationsCommand_base: {
|
|
|
91
91
|
* @throws {@link MachineLearningServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
93
93
|
*
|
|
94
|
+
* @public
|
|
94
95
|
*/
|
|
95
96
|
export declare class DescribeEvaluationsCommand extends DescribeEvaluationsCommand_base {
|
|
96
97
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeMLModelsCommand_base: {
|
|
24
24
|
new (input: DescribeMLModelsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [DescribeMLModelsCommandInput]): import("@smithy/smithy-client").CommandImpl<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a list of <code>MLModel</code> that match the search criteria in the request.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -99,6 +99,7 @@ declare const DescribeMLModelsCommand_base: {
|
|
|
99
99
|
* @throws {@link MachineLearningServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
101
101
|
*
|
|
102
|
+
* @public
|
|
102
103
|
*/
|
|
103
104
|
export declare class DescribeMLModelsCommand extends DescribeMLModelsCommand_base {
|
|
104
105
|
}
|
|
@@ -22,10 +22,10 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
|
|
|
22
22
|
}
|
|
23
23
|
declare const DescribeTagsCommand_base: {
|
|
24
24
|
new (input: DescribeTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTagsCommandInput, DescribeTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeTagsCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeTagsCommandInput, DescribeTagsCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Describes one or more of the tags for your Amazon ML object.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -70,6 +70,7 @@ declare const DescribeTagsCommand_base: {
|
|
|
70
70
|
* @throws {@link MachineLearningServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
72
72
|
*
|
|
73
|
+
* @public
|
|
73
74
|
*/
|
|
74
75
|
export declare class DescribeTagsCommand extends DescribeTagsCommand_base {
|
|
75
76
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetBatchPredictionCommand_base: {
|
|
24
24
|
new (input: GetBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a <code>BatchPrediction</code> that includes detailed metadata, status, and data file information for a
|
|
30
30
|
* <code>Batch Prediction</code> request.</p>
|
|
31
31
|
* @example
|
|
@@ -79,6 +79,7 @@ declare const GetBatchPredictionCommand_base: {
|
|
|
79
79
|
* @throws {@link MachineLearningServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
81
81
|
*
|
|
82
|
+
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class GetBatchPredictionCommand extends GetBatchPredictionCommand_base {
|
|
84
85
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetDataSourceCommand_base: {
|
|
24
24
|
new (input: GetDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataSourceCommandInput, GetDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDataSourceCommandInput, GetDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns a <code>DataSource</code> that includes metadata and data file information, as well as the current status of the <code>DataSource</code>.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <code>GetDataSource</code> provides results in normal or verbose format. The verbose format
|
|
@@ -102,6 +102,7 @@ declare const GetDataSourceCommand_base: {
|
|
|
102
102
|
* @throws {@link MachineLearningServiceException}
|
|
103
103
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
104
104
|
*
|
|
105
|
+
* @public
|
|
105
106
|
*/
|
|
106
107
|
export declare class GetDataSourceCommand extends GetDataSourceCommand_base {
|
|
107
108
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetEvaluationCommand_base: {
|
|
24
24
|
new (input: GetEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEvaluationCommandInput, GetEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<GetEvaluationCommandInput, GetEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an <code>Evaluation</code> that includes metadata as well as the current status of the <code>Evaluation</code>.</p>
|
|
30
30
|
* @example
|
|
31
31
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -80,6 +80,7 @@ declare const GetEvaluationCommand_base: {
|
|
|
80
80
|
* @throws {@link MachineLearningServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
82
82
|
*
|
|
83
|
+
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class GetEvaluationCommand extends GetEvaluationCommand_base {
|
|
85
86
|
}
|
|
@@ -22,10 +22,10 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
|
|
|
22
22
|
}
|
|
23
23
|
declare const GetMLModelCommand_base: {
|
|
24
24
|
new (input: GetMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLModelCommandInput, GetMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: GetMLModelCommandInput): import("@smithy/smithy-client").CommandImpl<GetMLModelCommandInput, GetMLModelCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Returns an <code>MLModel</code> that includes detailed metadata, data source information, and the current status of the <code>MLModel</code>.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <code>GetMLModel</code> provides results in normal or verbose format. </p>
|
|
@@ -92,6 +92,7 @@ declare const GetMLModelCommand_base: {
|
|
|
92
92
|
* @throws {@link MachineLearningServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
94
94
|
*
|
|
95
|
+
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class GetMLModelCommand extends GetMLModelCommand_base {
|
|
97
98
|
}
|
|
@@ -22,10 +22,10 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
|
|
|
22
22
|
}
|
|
23
23
|
declare const PredictCommand_base: {
|
|
24
24
|
new (input: PredictCommandInput): import("@smithy/smithy-client").CommandImpl<PredictCommandInput, PredictCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: PredictCommandInput): import("@smithy/smithy-client").CommandImpl<PredictCommandInput, PredictCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Generates a prediction for the observation using the specified <code>ML Model</code>.</p>
|
|
30
30
|
* <p>
|
|
31
31
|
* <b>Note:</b> Not all response parameters will be populated. Whether a
|
|
@@ -84,6 +84,7 @@ declare const PredictCommand_base: {
|
|
|
84
84
|
* @throws {@link MachineLearningServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
86
86
|
*
|
|
87
|
+
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class PredictCommand extends PredictCommand_base {
|
|
89
90
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateBatchPredictionCommand_base: {
|
|
24
24
|
new (input: UpdateBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateBatchPredictionCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the <code>BatchPredictionName</code> of a <code>BatchPrediction</code>.</p>
|
|
30
30
|
* <p>You can use the <code>GetBatchPrediction</code> operation to view the contents of the updated data element.</p>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const UpdateBatchPredictionCommand_base: {
|
|
|
64
64
|
* @throws {@link MachineLearningServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class UpdateBatchPredictionCommand extends UpdateBatchPredictionCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateDataSourceCommand_base: {
|
|
24
24
|
new (input: UpdateDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateDataSourceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the <code>DataSourceName</code> of a <code>DataSource</code>.</p>
|
|
30
30
|
* <p>You can use the <code>GetDataSource</code> operation to view the contents of the updated data element.</p>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const UpdateDataSourceCommand_base: {
|
|
|
64
64
|
* @throws {@link MachineLearningServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class UpdateDataSourceCommand extends UpdateDataSourceCommand_base {
|
|
69
70
|
}
|
|
@@ -22,10 +22,10 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
|
|
|
22
22
|
}
|
|
23
23
|
declare const UpdateEvaluationCommand_base: {
|
|
24
24
|
new (input: UpdateEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: UpdateEvaluationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput, MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
26
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
|
-
* @public
|
|
29
29
|
* <p>Updates the <code>EvaluationName</code> of an <code>Evaluation</code>.</p>
|
|
30
30
|
* <p>You can use the <code>GetEvaluation</code> operation to view the contents of the updated data element.</p>
|
|
31
31
|
* @example
|
|
@@ -64,6 +64,7 @@ declare const UpdateEvaluationCommand_base: {
|
|
|
64
64
|
* @throws {@link MachineLearningServiceException}
|
|
65
65
|
* <p>Base exception class for all service exceptions from MachineLearning service.</p>
|
|
66
66
|
*
|
|
67
|
+
* @public
|
|
67
68
|
*/
|
|
68
69
|
export declare class UpdateEvaluationCommand extends UpdateEvaluationCommand_base {
|
|
69
70
|
}
|