@aws-sdk/client-machine-learning 3.295.0 → 3.297.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 +29 -0
- package/dist-types/MachineLearningClient.d.ts +24 -4
- package/dist-types/commands/AddTagsCommand.d.ts +16 -0
- package/dist-types/commands/CreateBatchPredictionCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +16 -0
- package/dist-types/commands/CreateEvaluationCommand.d.ts +16 -0
- package/dist-types/commands/CreateMLModelCommand.d.ts +16 -0
- package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEvaluationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteMLModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDataSourcesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeEvaluationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeMLModelsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
- package/dist-types/commands/GetBatchPredictionCommand.d.ts +16 -0
- package/dist-types/commands/GetDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/GetEvaluationCommand.d.ts +16 -0
- package/dist-types/commands/GetMLModelCommand.d.ts +16 -0
- package/dist-types/commands/PredictCommand.d.ts +16 -0
- package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEvaluationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateMLModelCommand.d.ts +16 -0
- package/dist-types/models/MachineLearningServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +206 -30
- package/dist-types/pagination/DescribeBatchPredictionsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeDataSourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeEvaluationsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeMLModelsPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/package.json +31 -31
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { CreateMLModelInput, CreateMLModelOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateMLModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateMLModelCommandInput extends CreateMLModelInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateMLModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new <code>MLModel</code> using the <code>DataSource</code> and the recipe as
|
|
18
23
|
* information sources. </p>
|
|
19
24
|
* <p>An <code>MLModel</code> is nearly immutable. Users can update only the
|
|
@@ -44,6 +49,8 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param CreateMLModelCommandInput - {@link CreateMLModelCommandInput}
|
|
53
|
+
* @returns {@link CreateMLModelCommandOutput}
|
|
47
54
|
* @see {@link CreateMLModelCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link CreateMLModelCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface CreateMLModelCommandOutput extends CreateMLModelOutput, __Metad
|
|
|
62
69
|
export declare class CreateMLModelCommand extends $Command<CreateMLModelCommandInput, CreateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
|
|
63
70
|
readonly input: CreateMLModelCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: CreateMLModelCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateMLModelCommandInput, CreateMLModelCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { CreateRealtimeEndpointInput, CreateRealtimeEndpointOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateRealtimeEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateRealtimeEndpointCommandInput extends CreateRealtimeEndpointInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateRealtimeEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpointOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <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>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateRealtimeEndpointCommandInput - {@link CreateRealtimeEndpointCommandInput}
|
|
34
|
+
* @returns {@link CreateRealtimeEndpointCommandOutput}
|
|
28
35
|
* @see {@link CreateRealtimeEndpointCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateRealtimeEndpointCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface CreateRealtimeEndpointCommandOutput extends CreateRealtimeEndpo
|
|
|
43
50
|
export declare class CreateRealtimeEndpointCommand extends $Command<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig> {
|
|
44
51
|
readonly input: CreateRealtimeEndpointCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: CreateRealtimeEndpointCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateRealtimeEndpointCommandInput, CreateRealtimeEndpointCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteBatchPredictionInput, DeleteBatchPredictionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBatchPredictionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBatchPredictionCommandInput extends DeleteBatchPredictionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBatchPredictionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns the DELETED status to a <code>BatchPrediction</code>, rendering it unusable.</p>
|
|
18
23
|
* <p>After using the <code>DeleteBatchPrediction</code> operation, you can use the <a>GetBatchPrediction</a>
|
|
19
24
|
* operation to verify that the status of the <code>BatchPrediction</code> changed to DELETED.</p>
|
|
@@ -30,6 +35,8 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteBatchPredictionCommandInput - {@link DeleteBatchPredictionCommandInput}
|
|
39
|
+
* @returns {@link DeleteBatchPredictionCommandOutput}
|
|
33
40
|
* @see {@link DeleteBatchPredictionCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteBatchPredictionCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteBatchPredictionCommandOutput extends DeleteBatchPredictio
|
|
|
48
55
|
export declare class DeleteBatchPredictionCommand extends $Command<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteBatchPredictionCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteBatchPredictionCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBatchPredictionCommandInput, DeleteBatchPredictionCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteDataSourceInput, DeleteDataSourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDataSourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDataSourceCommandInput extends DeleteDataSourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDataSourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns the DELETED status to a <code>DataSource</code>, rendering it unusable.</p>
|
|
18
23
|
* <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>
|
|
19
24
|
* <p>
|
|
@@ -28,6 +33,8 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param DeleteDataSourceCommandInput - {@link DeleteDataSourceCommandInput}
|
|
37
|
+
* @returns {@link DeleteDataSourceCommandOutput}
|
|
31
38
|
* @see {@link DeleteDataSourceCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link DeleteDataSourceCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteDataSourceCommandOutput extends DeleteDataSourceOutput, _
|
|
|
46
53
|
export declare class DeleteDataSourceCommand extends $Command<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteDataSourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteDataSourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataSourceCommandInput, DeleteDataSourceCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteEvaluationInput, DeleteEvaluationOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteEvaluationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteEvaluationCommandInput extends DeleteEvaluationInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteEvaluationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns the <code>DELETED</code> status to an <code>Evaluation</code>, rendering it unusable.</p>
|
|
18
23
|
*
|
|
19
24
|
* <p>After invoking the <code>DeleteEvaluation</code> operation, you can use the
|
|
@@ -30,6 +35,8 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteEvaluationCommandInput - {@link DeleteEvaluationCommandInput}
|
|
39
|
+
* @returns {@link DeleteEvaluationCommandOutput}
|
|
33
40
|
* @see {@link DeleteEvaluationCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteEvaluationCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteEvaluationCommandOutput extends DeleteEvaluationOutput, _
|
|
|
48
55
|
export declare class DeleteEvaluationCommand extends $Command<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteEvaluationCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteEvaluationCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEvaluationCommandInput, DeleteEvaluationCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteMLModelInput, DeleteMLModelOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteMLModelCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteMLModelCommandInput extends DeleteMLModelInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteMLModelCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns the <code>DELETED</code> status to an <code>MLModel</code>, rendering it unusable.</p>
|
|
18
23
|
* <p>After using the <code>DeleteMLModel</code> operation, you can use the
|
|
19
24
|
* <code>GetMLModel</code> operation to verify that the status of the <code>MLModel</code> changed to DELETED.</p>
|
|
@@ -30,6 +35,8 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param DeleteMLModelCommandInput - {@link DeleteMLModelCommandInput}
|
|
39
|
+
* @returns {@link DeleteMLModelCommandOutput}
|
|
33
40
|
* @see {@link DeleteMLModelCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link DeleteMLModelCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteMLModelCommandOutput extends DeleteMLModelOutput, __Metad
|
|
|
48
55
|
export declare class DeleteMLModelCommand extends $Command<DeleteMLModelCommandInput, DeleteMLModelCommandOutput, MachineLearningClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteMLModelCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteMLModelCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMLModelCommandInput, DeleteMLModelCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteRealtimeEndpointInput, DeleteRealtimeEndpointOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteRealtimeEndpointCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteRealtimeEndpointCommandInput extends DeleteRealtimeEndpointInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteRealtimeEndpointCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpointOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a real time endpoint of an <code>MLModel</code>.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeleteRealtimeEndpointCommandInput - {@link DeleteRealtimeEndpointCommandInput}
|
|
34
|
+
* @returns {@link DeleteRealtimeEndpointCommandOutput}
|
|
28
35
|
* @see {@link DeleteRealtimeEndpointCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeleteRealtimeEndpointCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeleteRealtimeEndpointCommandOutput extends DeleteRealtimeEndpo
|
|
|
43
50
|
export declare class DeleteRealtimeEndpointCommand extends $Command<DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput, MachineLearningClientResolvedConfig> {
|
|
44
51
|
readonly input: DeleteRealtimeEndpointCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeleteRealtimeEndpointCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRealtimeEndpointCommandInput, DeleteRealtimeEndpointCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DeleteTagsInput, DeleteTagsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteTagsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteTagsCommandInput extends DeleteTagsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteTagsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified tags associated with an ML object. After this operation is complete, you can't recover deleted tags.</p>
|
|
18
23
|
* <p>If you specify a tag that doesn't exist, Amazon ML ignores it.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteTagsCommandInput - {@link DeleteTagsCommandInput}
|
|
35
|
+
* @returns {@link DeleteTagsCommandOutput}
|
|
29
36
|
* @see {@link DeleteTagsCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteTagsCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface DeleteTagsCommandOutput extends DeleteTagsOutput, __MetadataBea
|
|
|
46
53
|
export declare class DeleteTagsCommand extends $Command<DeleteTagsCommandInput, DeleteTagsCommandOutput, MachineLearningClientResolvedConfig> {
|
|
47
54
|
readonly input: DeleteTagsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: DeleteTagsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteTagsCommandInput, DeleteTagsCommandOutput>;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
54
67
|
private serialize;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
55
71
|
private deserialize;
|
|
56
72
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DescribeBatchPredictionsInput, DescribeBatchPredictionsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBatchPredictionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBatchPredictionsCommandInput extends DescribeBatchPredictionsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBatchPredictionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPredictionsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of <code>BatchPrediction</code> operations that match the search criteria in the request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeBatchPredictionsCommandInput - {@link DescribeBatchPredictionsCommandInput}
|
|
34
|
+
* @returns {@link DescribeBatchPredictionsCommandOutput}
|
|
28
35
|
* @see {@link DescribeBatchPredictionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeBatchPredictionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeBatchPredictionsCommandOutput extends DescribeBatchPred
|
|
|
40
47
|
export declare class DescribeBatchPredictionsCommand extends $Command<DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput, MachineLearningClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeBatchPredictionsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeBatchPredictionsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBatchPredictionsCommandInput, DescribeBatchPredictionsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DescribeDataSourcesInput, DescribeDataSourcesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDataSourcesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDataSourcesCommandInput extends DescribeDataSourcesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDataSourcesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of <code>DataSource</code> that match the search criteria in the request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeDataSourcesCommandInput - {@link DescribeDataSourcesCommandInput}
|
|
34
|
+
* @returns {@link DescribeDataSourcesCommandOutput}
|
|
28
35
|
* @see {@link DescribeDataSourcesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeDataSourcesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeDataSourcesCommandOutput extends DescribeDataSourcesOut
|
|
|
40
47
|
export declare class DescribeDataSourcesCommand extends $Command<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput, MachineLearningClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeDataSourcesCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeDataSourcesCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDataSourcesCommandInput, DescribeDataSourcesCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DescribeEvaluationsInput, DescribeEvaluationsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeEvaluationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeEvaluationsCommandInput extends DescribeEvaluationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeEvaluationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of <code>DescribeEvaluations</code> that match the search criteria in the request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeEvaluationsCommandInput - {@link DescribeEvaluationsCommandInput}
|
|
34
|
+
* @returns {@link DescribeEvaluationsCommandOutput}
|
|
28
35
|
* @see {@link DescribeEvaluationsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeEvaluationsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeEvaluationsCommandOutput extends DescribeEvaluationsOut
|
|
|
40
47
|
export declare class DescribeEvaluationsCommand extends $Command<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput, MachineLearningClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeEvaluationsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeEvaluationsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEvaluationsCommandInput, DescribeEvaluationsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
|
|
5
5
|
import { DescribeMLModelsInput, DescribeMLModelsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeMLModelsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeMLModelsCommandInput extends DescribeMLModelsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeMLModelsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns a list of <code>MLModel</code> that match the search criteria in the request.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeMLModelsCommandInput - {@link DescribeMLModelsCommandInput}
|
|
34
|
+
* @returns {@link DescribeMLModelsCommandOutput}
|
|
28
35
|
* @see {@link DescribeMLModelsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeMLModelsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DescribeMLModelsCommandOutput extends DescribeMLModelsOutput, _
|
|
|
40
47
|
export declare class DescribeMLModelsCommand extends $Command<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput, MachineLearningClientResolvedConfig> {
|
|
41
48
|
readonly input: DescribeMLModelsCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DescribeMLModelsCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMLModelsCommandInput, DescribeMLModelsCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|