@aws-sdk/client-machine-learning 3.296.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.
Files changed (38) hide show
  1. package/dist-types/MachineLearning.d.ts +29 -0
  2. package/dist-types/MachineLearningClient.d.ts +24 -4
  3. package/dist-types/commands/AddTagsCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateBatchPredictionCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateDataSourceFromRDSCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateDataSourceFromRedshiftCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateDataSourceFromS3Command.d.ts +16 -0
  8. package/dist-types/commands/CreateEvaluationCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateMLModelCommand.d.ts +16 -0
  10. package/dist-types/commands/CreateRealtimeEndpointCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteBatchPredictionCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteDataSourceCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteEvaluationCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteMLModelCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteRealtimeEndpointCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteTagsCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeBatchPredictionsCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeDataSourcesCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeEvaluationsCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeMLModelsCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeTagsCommand.d.ts +16 -0
  22. package/dist-types/commands/GetBatchPredictionCommand.d.ts +16 -0
  23. package/dist-types/commands/GetDataSourceCommand.d.ts +16 -0
  24. package/dist-types/commands/GetEvaluationCommand.d.ts +16 -0
  25. package/dist-types/commands/GetMLModelCommand.d.ts +16 -0
  26. package/dist-types/commands/PredictCommand.d.ts +16 -0
  27. package/dist-types/commands/UpdateBatchPredictionCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateDataSourceCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateEvaluationCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateMLModelCommand.d.ts +16 -0
  31. package/dist-types/models/MachineLearningServiceException.d.ts +2 -0
  32. package/dist-types/models/models_0.d.ts +206 -30
  33. package/dist-types/pagination/DescribeBatchPredictionsPaginator.d.ts +3 -0
  34. package/dist-types/pagination/DescribeDataSourcesPaginator.d.ts +3 -0
  35. package/dist-types/pagination/DescribeEvaluationsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/DescribeMLModelsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/Interfaces.d.ts +3 -0
  38. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { DescribeTagsInput, DescribeTagsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeTagsCommand}.
8
10
  */
9
11
  export interface DescribeTagsCommandInput extends DescribeTagsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeTagsCommand}.
13
17
  */
14
18
  export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes one or more of the tags for your Amazon ML object.</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 DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeTagsCommandInput - {@link DescribeTagsCommandInput}
34
+ * @returns {@link DescribeTagsCommandOutput}
28
35
  * @see {@link DescribeTagsCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeTagsCommandOutput} for command's `response` shape.
30
37
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -43,11 +50,20 @@ export interface DescribeTagsCommandOutput extends DescribeTagsOutput, __Metadat
43
50
  export declare class DescribeTagsCommand extends $Command<DescribeTagsCommandInput, DescribeTagsCommandOutput, MachineLearningClientResolvedConfig> {
44
51
  readonly input: DescribeTagsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: DescribeTagsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeTagsCommandInput, DescribeTagsCommandOutput>;
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 { GetBatchPredictionInput, GetBatchPredictionOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetBatchPredictionCommand}.
8
10
  */
9
11
  export interface GetBatchPredictionCommandInput extends GetBatchPredictionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetBatchPredictionCommand}.
13
17
  */
14
18
  export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a <code>BatchPrediction</code> that includes detailed metadata, status, and data file information for a
18
23
  * <code>Batch Prediction</code> request.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param GetBatchPredictionCommandInput - {@link GetBatchPredictionCommandInput}
35
+ * @returns {@link GetBatchPredictionCommandOutput}
29
36
  * @see {@link GetBatchPredictionCommandInput} for command's `input` shape.
30
37
  * @see {@link GetBatchPredictionCommandOutput} for command's `response` shape.
31
38
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -44,11 +51,20 @@ export interface GetBatchPredictionCommandOutput extends GetBatchPredictionOutpu
44
51
  export declare class GetBatchPredictionCommand extends $Command<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
45
52
  readonly input: GetBatchPredictionCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: GetBatchPredictionCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetBatchPredictionCommandInput, GetBatchPredictionCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { GetDataSourceInput, GetDataSourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDataSourceCommand}.
8
10
  */
9
11
  export interface GetDataSourceCommandInput extends GetDataSourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDataSourceCommand}.
13
17
  */
14
18
  export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <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>
18
23
  * <p>
19
24
  * <code>GetDataSource</code> provides results in normal or verbose format. The verbose format
@@ -28,6 +33,8 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param GetDataSourceCommandInput - {@link GetDataSourceCommandInput}
37
+ * @returns {@link GetDataSourceCommandOutput}
31
38
  * @see {@link GetDataSourceCommandInput} for command's `input` shape.
32
39
  * @see {@link GetDataSourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetDataSourceCommandOutput extends GetDataSourceOutput, __Metad
46
53
  export declare class GetDataSourceCommand extends $Command<GetDataSourceCommandInput, GetDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
47
54
  readonly input: GetDataSourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetDataSourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSourceCommandInput, GetDataSourceCommandOutput>;
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 { GetEvaluationInput, GetEvaluationOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEvaluationCommand}.
8
10
  */
9
11
  export interface GetEvaluationCommandInput extends GetEvaluationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEvaluationCommand}.
13
17
  */
14
18
  export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns an <code>Evaluation</code> that includes metadata as well as the current status of the <code>Evaluation</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 GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetEvaluationCommandInput - {@link GetEvaluationCommandInput}
34
+ * @returns {@link GetEvaluationCommandOutput}
28
35
  * @see {@link GetEvaluationCommandInput} for command's `input` shape.
29
36
  * @see {@link GetEvaluationCommandOutput} for command's `response` shape.
30
37
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -43,11 +50,20 @@ export interface GetEvaluationCommandOutput extends GetEvaluationOutput, __Metad
43
50
  export declare class GetEvaluationCommand extends $Command<GetEvaluationCommandInput, GetEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
44
51
  readonly input: GetEvaluationCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: GetEvaluationCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEvaluationCommandInput, GetEvaluationCommandOutput>;
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 { GetMLModelInput, GetMLModelOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetMLModelCommand}.
8
10
  */
9
11
  export interface GetMLModelCommandInput extends GetMLModelInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetMLModelCommand}.
13
17
  */
14
18
  export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns an <code>MLModel</code> that includes detailed metadata, data source information, and the current status of the <code>MLModel</code>.</p>
18
23
  * <p>
19
24
  * <code>GetMLModel</code> provides results in normal or verbose format. </p>
@@ -27,6 +32,8 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param GetMLModelCommandInput - {@link GetMLModelCommandInput}
36
+ * @returns {@link GetMLModelCommandOutput}
30
37
  * @see {@link GetMLModelCommandInput} for command's `input` shape.
31
38
  * @see {@link GetMLModelCommandOutput} for command's `response` shape.
32
39
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -45,11 +52,20 @@ export interface GetMLModelCommandOutput extends GetMLModelOutput, __MetadataBea
45
52
  export declare class GetMLModelCommand extends $Command<GetMLModelCommandInput, GetMLModelCommandOutput, MachineLearningClientResolvedConfig> {
46
53
  readonly input: GetMLModelCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: GetMLModelCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetMLModelCommandInput, GetMLModelCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { PredictInput, PredictOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PredictCommand}.
8
10
  */
9
11
  export interface PredictCommandInput extends PredictInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PredictCommand}.
13
17
  */
14
18
  export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Generates a prediction for the observation using the specified <code>ML Model</code>.</p>
18
23
  * <p>
19
24
  * <b>Note:</b> Not all response parameters will be populated. Whether a
@@ -28,6 +33,8 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param PredictCommandInput - {@link PredictCommandInput}
37
+ * @returns {@link PredictCommandOutput}
31
38
  * @see {@link PredictCommandInput} for command's `input` shape.
32
39
  * @see {@link PredictCommandOutput} for command's `response` shape.
33
40
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -52,11 +59,20 @@ export interface PredictCommandOutput extends PredictOutput, __MetadataBearer {
52
59
  export declare class PredictCommand extends $Command<PredictCommandInput, PredictCommandOutput, MachineLearningClientResolvedConfig> {
53
60
  readonly input: PredictCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: PredictCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PredictCommandInput, PredictCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { UpdateBatchPredictionInput, UpdateBatchPredictionOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateBatchPredictionCommand}.
8
10
  */
9
11
  export interface UpdateBatchPredictionCommandInput extends UpdateBatchPredictionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateBatchPredictionCommand}.
13
17
  */
14
18
  export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the <code>BatchPredictionName</code> of a <code>BatchPrediction</code>.</p>
18
23
  * <p>You can use the <code>GetBatchPrediction</code> operation to view the contents of the updated data element.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateBatchPredictionCommandInput - {@link UpdateBatchPredictionCommandInput}
35
+ * @returns {@link UpdateBatchPredictionCommandOutput}
29
36
  * @see {@link UpdateBatchPredictionCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateBatchPredictionCommandOutput} for command's `response` shape.
31
38
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UpdateBatchPredictionCommandOutput extends UpdateBatchPredictio
44
51
  export declare class UpdateBatchPredictionCommand extends $Command<UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput, MachineLearningClientResolvedConfig> {
45
52
  readonly input: UpdateBatchPredictionCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UpdateBatchPredictionCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateBatchPredictionCommandInput, UpdateBatchPredictionCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { UpdateDataSourceInput, UpdateDataSourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateDataSourceCommand}.
8
10
  */
9
11
  export interface UpdateDataSourceCommandInput extends UpdateDataSourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateDataSourceCommand}.
13
17
  */
14
18
  export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the <code>DataSourceName</code> of a <code>DataSource</code>.</p>
18
23
  * <p>You can use the <code>GetDataSource</code> operation to view the contents of the updated data element.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateDataSourceCommandInput - {@link UpdateDataSourceCommandInput}
35
+ * @returns {@link UpdateDataSourceCommandOutput}
29
36
  * @see {@link UpdateDataSourceCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateDataSourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UpdateDataSourceCommandOutput extends UpdateDataSourceOutput, _
44
51
  export declare class UpdateDataSourceCommand extends $Command<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput, MachineLearningClientResolvedConfig> {
45
52
  readonly input: UpdateDataSourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UpdateDataSourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDataSourceCommandInput, UpdateDataSourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { UpdateEvaluationInput, UpdateEvaluationOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateEvaluationCommand}.
8
10
  */
9
11
  export interface UpdateEvaluationCommandInput extends UpdateEvaluationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateEvaluationCommand}.
13
17
  */
14
18
  export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the <code>EvaluationName</code> of an <code>Evaluation</code>.</p>
18
23
  * <p>You can use the <code>GetEvaluation</code> operation to view the contents of the updated data element.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateEvaluationCommandInput - {@link UpdateEvaluationCommandInput}
35
+ * @returns {@link UpdateEvaluationCommandOutput}
29
36
  * @see {@link UpdateEvaluationCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateEvaluationCommandOutput} for command's `response` shape.
31
38
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UpdateEvaluationCommandOutput extends UpdateEvaluationOutput, _
44
51
  export declare class UpdateEvaluationCommand extends $Command<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput, MachineLearningClientResolvedConfig> {
45
52
  readonly input: UpdateEvaluationCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UpdateEvaluationCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEvaluationCommandInput, UpdateEvaluationCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { MachineLearningClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MachineLearningClient";
5
5
  import { UpdateMLModelInput, UpdateMLModelOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateMLModelCommand}.
8
10
  */
9
11
  export interface UpdateMLModelCommandInput extends UpdateMLModelInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateMLModelCommand}.
13
17
  */
14
18
  export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the <code>MLModelName</code> and the <code>ScoreThreshold</code> of an <code>MLModel</code>.</p>
18
23
  * <p>You can use the <code>GetMLModel</code> operation to view the contents of the updated data element.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateMLModelCommandInput - {@link UpdateMLModelCommandInput}
35
+ * @returns {@link UpdateMLModelCommandOutput}
29
36
  * @see {@link UpdateMLModelCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateMLModelCommandOutput} for command's `response` shape.
31
38
  * @see {@link MachineLearningClientResolvedConfig | config} for MachineLearningClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UpdateMLModelCommandOutput extends UpdateMLModelOutput, __Metad
44
51
  export declare class UpdateMLModelCommand extends $Command<UpdateMLModelCommandInput, UpdateMLModelCommandOutput, MachineLearningClientResolvedConfig> {
45
52
  readonly input: UpdateMLModelCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UpdateMLModelCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MachineLearningClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateMLModelCommandInput, UpdateMLModelCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from MachineLearning service.
4
6
  */
5
7
  export declare class MachineLearningServiceException extends __ServiceException {