@aws-sdk/client-machine-learning 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +828 -1209
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/MachineLearningClient.js +2 -0
- package/dist-es/commands/AddTagsCommand.js +3 -9
- package/dist-es/commands/CreateBatchPredictionCommand.js +3 -9
- package/dist-es/commands/CreateDataSourceFromRDSCommand.js +3 -10
- package/dist-es/commands/CreateDataSourceFromRedshiftCommand.js +3 -10
- package/dist-es/commands/CreateDataSourceFromS3Command.js +3 -9
- package/dist-es/commands/CreateEvaluationCommand.js +3 -9
- package/dist-es/commands/CreateMLModelCommand.js +3 -9
- package/dist-es/commands/CreateRealtimeEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteBatchPredictionCommand.js +3 -9
- package/dist-es/commands/DeleteDataSourceCommand.js +3 -9
- package/dist-es/commands/DeleteEvaluationCommand.js +3 -9
- package/dist-es/commands/DeleteMLModelCommand.js +3 -9
- package/dist-es/commands/DeleteRealtimeEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteTagsCommand.js +3 -9
- package/dist-es/commands/DescribeBatchPredictionsCommand.js +3 -9
- package/dist-es/commands/DescribeDataSourcesCommand.js +3 -9
- package/dist-es/commands/DescribeEvaluationsCommand.js +3 -9
- package/dist-es/commands/DescribeMLModelsCommand.js +3 -9
- package/dist-es/commands/DescribeTagsCommand.js +3 -9
- package/dist-es/commands/GetBatchPredictionCommand.js +3 -9
- package/dist-es/commands/GetDataSourceCommand.js +3 -9
- package/dist-es/commands/GetEvaluationCommand.js +3 -9
- package/dist-es/commands/GetMLModelCommand.js +3 -9
- package/dist-es/commands/PredictCommand.js +3 -10
- package/dist-es/commands/UpdateBatchPredictionCommand.js +3 -9
- package/dist-es/commands/UpdateDataSourceCommand.js +3 -9
- package/dist-es/commands/UpdateEvaluationCommand.js +3 -9
- package/dist-es/commands/UpdateMLModelCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -29
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +754 -0
- package/dist-types/MachineLearningClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -24
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +126 -0
- package/dist-types/ts3.4/MachineLearningClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -16
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +132 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -958
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -254
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -341
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AddTagsCommandInput, AddTagsCommandOutput } from "./commands/AddTagsCommand";
|
|
11
11
|
import { CreateBatchPredictionCommandInput, CreateBatchPredictionCommandOutput } from "./commands/CreateBatchPredictionCommand";
|
|
@@ -169,6 +169,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
169
169
|
* Optional extensions
|
|
170
170
|
*/
|
|
171
171
|
extensions?: RuntimeExtension[];
|
|
172
|
+
/**
|
|
173
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
174
|
+
* may be overridden. A default will always be set by the client.
|
|
175
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
176
|
+
* the client.
|
|
177
|
+
* @alpha
|
|
178
|
+
*
|
|
179
|
+
*/
|
|
180
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
172
181
|
/**
|
|
173
182
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
174
183
|
*/
|
|
@@ -3570,27 +3570,3 @@ export interface UpdateMLModelOutput {
|
|
|
3570
3570
|
*/
|
|
3571
3571
|
MLModelId?: string | undefined;
|
|
3572
3572
|
}
|
|
3573
|
-
/**
|
|
3574
|
-
* @internal
|
|
3575
|
-
*/
|
|
3576
|
-
export declare const RDSDatabaseCredentialsFilterSensitiveLog: (obj: RDSDatabaseCredentials) => any;
|
|
3577
|
-
/**
|
|
3578
|
-
* @internal
|
|
3579
|
-
*/
|
|
3580
|
-
export declare const RDSDataSpecFilterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
3581
|
-
/**
|
|
3582
|
-
* @internal
|
|
3583
|
-
*/
|
|
3584
|
-
export declare const CreateDataSourceFromRDSInputFilterSensitiveLog: (obj: CreateDataSourceFromRDSInput) => any;
|
|
3585
|
-
/**
|
|
3586
|
-
* @internal
|
|
3587
|
-
*/
|
|
3588
|
-
export declare const RedshiftDatabaseCredentialsFilterSensitiveLog: (obj: RedshiftDatabaseCredentials) => any;
|
|
3589
|
-
/**
|
|
3590
|
-
* @internal
|
|
3591
|
-
*/
|
|
3592
|
-
export declare const RedshiftDataSpecFilterSensitiveLog: (obj: RedshiftDataSpec) => any;
|
|
3593
|
-
/**
|
|
3594
|
-
* @internal
|
|
3595
|
-
*/
|
|
3596
|
-
export declare const CreateDataSourceFromRedshiftInputFilterSensitiveLog: (obj: CreateDataSourceFromRedshiftInput) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: MachineLearningClientConfig) =>
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: MachineLearningClientConfig) =>
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: MachineLearningClientConfig) =>
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: MachineLearningClientConfig) =>
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MachineLearningHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var RDSDatabasePassword: StaticSimpleSchema;
|
|
3
|
+
export declare var RedshiftDatabasePassword: StaticSimpleSchema;
|
|
4
|
+
export declare var AddTagsInput: StaticStructureSchema;
|
|
5
|
+
export declare var AddTagsOutput: StaticStructureSchema;
|
|
6
|
+
export declare var BatchPrediction: StaticStructureSchema;
|
|
7
|
+
export declare var CreateBatchPredictionInput: StaticStructureSchema;
|
|
8
|
+
export declare var CreateBatchPredictionOutput: StaticStructureSchema;
|
|
9
|
+
export declare var CreateDataSourceFromRDSInput: StaticStructureSchema;
|
|
10
|
+
export declare var CreateDataSourceFromRDSOutput: StaticStructureSchema;
|
|
11
|
+
export declare var CreateDataSourceFromRedshiftInput: StaticStructureSchema;
|
|
12
|
+
export declare var CreateDataSourceFromRedshiftOutput: StaticStructureSchema;
|
|
13
|
+
export declare var CreateDataSourceFromS3Input: StaticStructureSchema;
|
|
14
|
+
export declare var CreateDataSourceFromS3Output: StaticStructureSchema;
|
|
15
|
+
export declare var CreateEvaluationInput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateEvaluationOutput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateMLModelInput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateMLModelOutput: StaticStructureSchema;
|
|
19
|
+
export declare var CreateRealtimeEndpointInput: StaticStructureSchema;
|
|
20
|
+
export declare var CreateRealtimeEndpointOutput: StaticStructureSchema;
|
|
21
|
+
export declare var DataSource: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteBatchPredictionInput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteBatchPredictionOutput: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteDataSourceInput: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteDataSourceOutput: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteEvaluationInput: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteEvaluationOutput: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteMLModelInput: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteMLModelOutput: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteRealtimeEndpointInput: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteRealtimeEndpointOutput: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteTagsInput: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteTagsOutput: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeBatchPredictionsInput: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeBatchPredictionsOutput: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeDataSourcesInput: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeDataSourcesOutput: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeEvaluationsInput: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeEvaluationsOutput: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeMLModelsInput: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeMLModelsOutput: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeTagsInput: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeTagsOutput: StaticStructureSchema;
|
|
44
|
+
export declare var Evaluation: StaticStructureSchema;
|
|
45
|
+
export declare var GetBatchPredictionInput: StaticStructureSchema;
|
|
46
|
+
export declare var GetBatchPredictionOutput: StaticStructureSchema;
|
|
47
|
+
export declare var GetDataSourceInput: StaticStructureSchema;
|
|
48
|
+
export declare var GetDataSourceOutput: StaticStructureSchema;
|
|
49
|
+
export declare var GetEvaluationInput: StaticStructureSchema;
|
|
50
|
+
export declare var GetEvaluationOutput: StaticStructureSchema;
|
|
51
|
+
export declare var GetMLModelInput: StaticStructureSchema;
|
|
52
|
+
export declare var GetMLModelOutput: StaticStructureSchema;
|
|
53
|
+
export declare var IdempotentParameterMismatchException: StaticErrorSchema;
|
|
54
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
55
|
+
export declare var InvalidInputException: StaticErrorSchema;
|
|
56
|
+
export declare var InvalidTagException: StaticErrorSchema;
|
|
57
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
58
|
+
export declare var MLModel: StaticStructureSchema;
|
|
59
|
+
export declare var PerformanceMetrics: StaticStructureSchema;
|
|
60
|
+
export declare var PredictInput: StaticStructureSchema;
|
|
61
|
+
export declare var Prediction: StaticStructureSchema;
|
|
62
|
+
export declare var PredictorNotMountedException: StaticErrorSchema;
|
|
63
|
+
export declare var PredictOutput: StaticStructureSchema;
|
|
64
|
+
export declare var RDSDatabase: StaticStructureSchema;
|
|
65
|
+
export declare var RDSDatabaseCredentials: StaticStructureSchema;
|
|
66
|
+
export declare var RDSDataSpec: StaticStructureSchema;
|
|
67
|
+
export declare var RDSMetadata: StaticStructureSchema;
|
|
68
|
+
export declare var RealtimeEndpointInfo: StaticStructureSchema;
|
|
69
|
+
export declare var RedshiftDatabase: StaticStructureSchema;
|
|
70
|
+
export declare var RedshiftDatabaseCredentials: StaticStructureSchema;
|
|
71
|
+
export declare var RedshiftDataSpec: StaticStructureSchema;
|
|
72
|
+
export declare var RedshiftMetadata: StaticStructureSchema;
|
|
73
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
74
|
+
export declare var S3DataSpec: StaticStructureSchema;
|
|
75
|
+
export declare var Tag: StaticStructureSchema;
|
|
76
|
+
export declare var TagLimitExceededException: StaticErrorSchema;
|
|
77
|
+
export declare var UpdateBatchPredictionInput: StaticStructureSchema;
|
|
78
|
+
export declare var UpdateBatchPredictionOutput: StaticStructureSchema;
|
|
79
|
+
export declare var UpdateDataSourceInput: StaticStructureSchema;
|
|
80
|
+
export declare var UpdateDataSourceOutput: StaticStructureSchema;
|
|
81
|
+
export declare var UpdateEvaluationInput: StaticStructureSchema;
|
|
82
|
+
export declare var UpdateEvaluationOutput: StaticStructureSchema;
|
|
83
|
+
export declare var UpdateMLModelInput: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateMLModelOutput: StaticStructureSchema;
|
|
85
|
+
export declare var __Unit: "unit";
|
|
86
|
+
export declare var MachineLearningServiceException: StaticErrorSchema;
|
|
87
|
+
export declare var BatchPredictions: StaticListSchema;
|
|
88
|
+
export declare var DataSources: StaticListSchema;
|
|
89
|
+
export declare var EDPSecurityGroupIds: number;
|
|
90
|
+
export declare var Evaluations: StaticListSchema;
|
|
91
|
+
export declare var MLModels: StaticListSchema;
|
|
92
|
+
export declare var TagKeyList: number;
|
|
93
|
+
export declare var TagList: StaticListSchema;
|
|
94
|
+
export declare var DetailsMap: number;
|
|
95
|
+
export declare var PerformanceMetricsProperties: number;
|
|
96
|
+
export declare var _Record: number;
|
|
97
|
+
export declare var ScoreValuePerLabelMap: number;
|
|
98
|
+
export declare var TrainingParameters: number;
|
|
99
|
+
export declare var AddTags: StaticOperationSchema;
|
|
100
|
+
export declare var CreateBatchPrediction: StaticOperationSchema;
|
|
101
|
+
export declare var CreateDataSourceFromRDS: StaticOperationSchema;
|
|
102
|
+
export declare var CreateDataSourceFromRedshift: StaticOperationSchema;
|
|
103
|
+
export declare var CreateDataSourceFromS3: StaticOperationSchema;
|
|
104
|
+
export declare var CreateEvaluation: StaticOperationSchema;
|
|
105
|
+
export declare var CreateMLModel: StaticOperationSchema;
|
|
106
|
+
export declare var CreateRealtimeEndpoint: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteBatchPrediction: StaticOperationSchema;
|
|
108
|
+
export declare var DeleteDataSource: StaticOperationSchema;
|
|
109
|
+
export declare var DeleteEvaluation: StaticOperationSchema;
|
|
110
|
+
export declare var DeleteMLModel: StaticOperationSchema;
|
|
111
|
+
export declare var DeleteRealtimeEndpoint: StaticOperationSchema;
|
|
112
|
+
export declare var DeleteTags: StaticOperationSchema;
|
|
113
|
+
export declare var DescribeBatchPredictions: StaticOperationSchema;
|
|
114
|
+
export declare var DescribeDataSources: StaticOperationSchema;
|
|
115
|
+
export declare var DescribeEvaluations: StaticOperationSchema;
|
|
116
|
+
export declare var DescribeMLModels: StaticOperationSchema;
|
|
117
|
+
export declare var DescribeTags: StaticOperationSchema;
|
|
118
|
+
export declare var GetBatchPrediction: StaticOperationSchema;
|
|
119
|
+
export declare var GetDataSource: StaticOperationSchema;
|
|
120
|
+
export declare var GetEvaluation: StaticOperationSchema;
|
|
121
|
+
export declare var GetMLModel: StaticOperationSchema;
|
|
122
|
+
export declare var Predict: StaticOperationSchema;
|
|
123
|
+
export declare var UpdateBatchPrediction: StaticOperationSchema;
|
|
124
|
+
export declare var UpdateDataSource: StaticOperationSchema;
|
|
125
|
+
export declare var UpdateEvaluation: StaticOperationSchema;
|
|
126
|
+
export declare var UpdateMLModel: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -246,6 +249,7 @@ export interface ClientDefaults
|
|
|
246
249
|
retryMode?: string | __Provider<string>;
|
|
247
250
|
logger?: __Logger;
|
|
248
251
|
extensions?: RuntimeExtension[];
|
|
252
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
249
253
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
250
254
|
}
|
|
251
255
|
export type MachineLearningClientConfigType = Partial<
|
|
@@ -633,19 +633,3 @@ export interface UpdateMLModelInput {
|
|
|
633
633
|
export interface UpdateMLModelOutput {
|
|
634
634
|
MLModelId?: string | undefined;
|
|
635
635
|
}
|
|
636
|
-
export declare const RDSDatabaseCredentialsFilterSensitiveLog: (
|
|
637
|
-
obj: RDSDatabaseCredentials
|
|
638
|
-
) => any;
|
|
639
|
-
export declare const RDSDataSpecFilterSensitiveLog: (obj: RDSDataSpec) => any;
|
|
640
|
-
export declare const CreateDataSourceFromRDSInputFilterSensitiveLog: (
|
|
641
|
-
obj: CreateDataSourceFromRDSInput
|
|
642
|
-
) => any;
|
|
643
|
-
export declare const RedshiftDatabaseCredentialsFilterSensitiveLog: (
|
|
644
|
-
obj: RedshiftDatabaseCredentials
|
|
645
|
-
) => any;
|
|
646
|
-
export declare const RedshiftDataSpecFilterSensitiveLog: (
|
|
647
|
-
obj: RedshiftDataSpec
|
|
648
|
-
) => any;
|
|
649
|
-
export declare const CreateDataSourceFromRedshiftInputFilterSensitiveLog: (
|
|
650
|
-
obj: CreateDataSourceFromRedshiftInput
|
|
651
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MachineLearningHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var RDSDatabasePassword: StaticSimpleSchema;
|
|
9
|
+
export declare var RedshiftDatabasePassword: StaticSimpleSchema;
|
|
10
|
+
export declare var AddTagsInput: StaticStructureSchema;
|
|
11
|
+
export declare var AddTagsOutput: StaticStructureSchema;
|
|
12
|
+
export declare var BatchPrediction: StaticStructureSchema;
|
|
13
|
+
export declare var CreateBatchPredictionInput: StaticStructureSchema;
|
|
14
|
+
export declare var CreateBatchPredictionOutput: StaticStructureSchema;
|
|
15
|
+
export declare var CreateDataSourceFromRDSInput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateDataSourceFromRDSOutput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateDataSourceFromRedshiftInput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateDataSourceFromRedshiftOutput: StaticStructureSchema;
|
|
19
|
+
export declare var CreateDataSourceFromS3Input: StaticStructureSchema;
|
|
20
|
+
export declare var CreateDataSourceFromS3Output: StaticStructureSchema;
|
|
21
|
+
export declare var CreateEvaluationInput: StaticStructureSchema;
|
|
22
|
+
export declare var CreateEvaluationOutput: StaticStructureSchema;
|
|
23
|
+
export declare var CreateMLModelInput: StaticStructureSchema;
|
|
24
|
+
export declare var CreateMLModelOutput: StaticStructureSchema;
|
|
25
|
+
export declare var CreateRealtimeEndpointInput: StaticStructureSchema;
|
|
26
|
+
export declare var CreateRealtimeEndpointOutput: StaticStructureSchema;
|
|
27
|
+
export declare var DataSource: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteBatchPredictionInput: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteBatchPredictionOutput: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteDataSourceInput: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteDataSourceOutput: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteEvaluationInput: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteEvaluationOutput: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteMLModelInput: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteMLModelOutput: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteRealtimeEndpointInput: StaticStructureSchema;
|
|
37
|
+
export declare var DeleteRealtimeEndpointOutput: StaticStructureSchema;
|
|
38
|
+
export declare var DeleteTagsInput: StaticStructureSchema;
|
|
39
|
+
export declare var DeleteTagsOutput: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeBatchPredictionsInput: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeBatchPredictionsOutput: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeDataSourcesInput: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeDataSourcesOutput: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeEvaluationsInput: StaticStructureSchema;
|
|
45
|
+
export declare var DescribeEvaluationsOutput: StaticStructureSchema;
|
|
46
|
+
export declare var DescribeMLModelsInput: StaticStructureSchema;
|
|
47
|
+
export declare var DescribeMLModelsOutput: StaticStructureSchema;
|
|
48
|
+
export declare var DescribeTagsInput: StaticStructureSchema;
|
|
49
|
+
export declare var DescribeTagsOutput: StaticStructureSchema;
|
|
50
|
+
export declare var Evaluation: StaticStructureSchema;
|
|
51
|
+
export declare var GetBatchPredictionInput: StaticStructureSchema;
|
|
52
|
+
export declare var GetBatchPredictionOutput: StaticStructureSchema;
|
|
53
|
+
export declare var GetDataSourceInput: StaticStructureSchema;
|
|
54
|
+
export declare var GetDataSourceOutput: StaticStructureSchema;
|
|
55
|
+
export declare var GetEvaluationInput: StaticStructureSchema;
|
|
56
|
+
export declare var GetEvaluationOutput: StaticStructureSchema;
|
|
57
|
+
export declare var GetMLModelInput: StaticStructureSchema;
|
|
58
|
+
export declare var GetMLModelOutput: StaticStructureSchema;
|
|
59
|
+
export declare var IdempotentParameterMismatchException: StaticErrorSchema;
|
|
60
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
61
|
+
export declare var InvalidInputException: StaticErrorSchema;
|
|
62
|
+
export declare var InvalidTagException: StaticErrorSchema;
|
|
63
|
+
export declare var LimitExceededException: StaticErrorSchema;
|
|
64
|
+
export declare var MLModel: StaticStructureSchema;
|
|
65
|
+
export declare var PerformanceMetrics: StaticStructureSchema;
|
|
66
|
+
export declare var PredictInput: StaticStructureSchema;
|
|
67
|
+
export declare var Prediction: StaticStructureSchema;
|
|
68
|
+
export declare var PredictorNotMountedException: StaticErrorSchema;
|
|
69
|
+
export declare var PredictOutput: StaticStructureSchema;
|
|
70
|
+
export declare var RDSDatabase: StaticStructureSchema;
|
|
71
|
+
export declare var RDSDatabaseCredentials: StaticStructureSchema;
|
|
72
|
+
export declare var RDSDataSpec: StaticStructureSchema;
|
|
73
|
+
export declare var RDSMetadata: StaticStructureSchema;
|
|
74
|
+
export declare var RealtimeEndpointInfo: StaticStructureSchema;
|
|
75
|
+
export declare var RedshiftDatabase: StaticStructureSchema;
|
|
76
|
+
export declare var RedshiftDatabaseCredentials: StaticStructureSchema;
|
|
77
|
+
export declare var RedshiftDataSpec: StaticStructureSchema;
|
|
78
|
+
export declare var RedshiftMetadata: StaticStructureSchema;
|
|
79
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
80
|
+
export declare var S3DataSpec: StaticStructureSchema;
|
|
81
|
+
export declare var Tag: StaticStructureSchema;
|
|
82
|
+
export declare var TagLimitExceededException: StaticErrorSchema;
|
|
83
|
+
export declare var UpdateBatchPredictionInput: StaticStructureSchema;
|
|
84
|
+
export declare var UpdateBatchPredictionOutput: StaticStructureSchema;
|
|
85
|
+
export declare var UpdateDataSourceInput: StaticStructureSchema;
|
|
86
|
+
export declare var UpdateDataSourceOutput: StaticStructureSchema;
|
|
87
|
+
export declare var UpdateEvaluationInput: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateEvaluationOutput: StaticStructureSchema;
|
|
89
|
+
export declare var UpdateMLModelInput: StaticStructureSchema;
|
|
90
|
+
export declare var UpdateMLModelOutput: StaticStructureSchema;
|
|
91
|
+
export declare var __Unit: "unit";
|
|
92
|
+
export declare var MachineLearningServiceException: StaticErrorSchema;
|
|
93
|
+
export declare var BatchPredictions: StaticListSchema;
|
|
94
|
+
export declare var DataSources: StaticListSchema;
|
|
95
|
+
export declare var EDPSecurityGroupIds: number;
|
|
96
|
+
export declare var Evaluations: StaticListSchema;
|
|
97
|
+
export declare var MLModels: StaticListSchema;
|
|
98
|
+
export declare var TagKeyList: number;
|
|
99
|
+
export declare var TagList: StaticListSchema;
|
|
100
|
+
export declare var DetailsMap: number;
|
|
101
|
+
export declare var PerformanceMetricsProperties: number;
|
|
102
|
+
export declare var _Record: number;
|
|
103
|
+
export declare var ScoreValuePerLabelMap: number;
|
|
104
|
+
export declare var TrainingParameters: number;
|
|
105
|
+
export declare var AddTags: StaticOperationSchema;
|
|
106
|
+
export declare var CreateBatchPrediction: StaticOperationSchema;
|
|
107
|
+
export declare var CreateDataSourceFromRDS: StaticOperationSchema;
|
|
108
|
+
export declare var CreateDataSourceFromRedshift: StaticOperationSchema;
|
|
109
|
+
export declare var CreateDataSourceFromS3: StaticOperationSchema;
|
|
110
|
+
export declare var CreateEvaluation: StaticOperationSchema;
|
|
111
|
+
export declare var CreateMLModel: StaticOperationSchema;
|
|
112
|
+
export declare var CreateRealtimeEndpoint: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteBatchPrediction: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteDataSource: StaticOperationSchema;
|
|
115
|
+
export declare var DeleteEvaluation: StaticOperationSchema;
|
|
116
|
+
export declare var DeleteMLModel: StaticOperationSchema;
|
|
117
|
+
export declare var DeleteRealtimeEndpoint: StaticOperationSchema;
|
|
118
|
+
export declare var DeleteTags: StaticOperationSchema;
|
|
119
|
+
export declare var DescribeBatchPredictions: StaticOperationSchema;
|
|
120
|
+
export declare var DescribeDataSources: StaticOperationSchema;
|
|
121
|
+
export declare var DescribeEvaluations: StaticOperationSchema;
|
|
122
|
+
export declare var DescribeMLModels: StaticOperationSchema;
|
|
123
|
+
export declare var DescribeTags: StaticOperationSchema;
|
|
124
|
+
export declare var GetBatchPrediction: StaticOperationSchema;
|
|
125
|
+
export declare var GetDataSource: StaticOperationSchema;
|
|
126
|
+
export declare var GetEvaluation: StaticOperationSchema;
|
|
127
|
+
export declare var GetMLModel: StaticOperationSchema;
|
|
128
|
+
export declare var Predict: StaticOperationSchema;
|
|
129
|
+
export declare var UpdateBatchPrediction: StaticOperationSchema;
|
|
130
|
+
export declare var UpdateDataSource: StaticOperationSchema;
|
|
131
|
+
export declare var UpdateEvaluation: StaticOperationSchema;
|
|
132
|
+
export declare var UpdateMLModel: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-machine-learning",
|
|
3
3
|
"description": "AWS SDK for JavaScript Machine Learning Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-machine-learning",
|
|
@@ -20,18 +20,18 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
28
|
"@aws-sdk/middleware-sdk-machinelearning": "3.922.0",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
31
31
|
"@aws-sdk/types": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.2",
|
|
36
36
|
"@smithy/core": "^3.17.2",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.5",
|