@aws-sdk/client-sagemaker-featurestore-runtime 3.422.1 → 3.425.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/SageMakerFeatureStoreRuntimeClient.d.ts +2 -0
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +75 -64
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +145 -197
- package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +38 -131
- package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +33 -115
- package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +35 -105
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +33 -115
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -22
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -5
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -8
- package/dist-types/ts3.4/index.d.ts +6 -37
- package/dist-types/ts3.4/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +8 -13
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +115 -410
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -38
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +99 -46
- package/dist-types/ts3.4/runtimeConfig.d.ts +99 -46
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +90 -45
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -19
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -17
- package/package.json +31 -31
|
@@ -115,6 +115,8 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
115
115
|
maxAttempts?: number | __Provider<number>;
|
|
116
116
|
/**
|
|
117
117
|
* Specifies which retry algorithm to use.
|
|
118
|
+
* @see https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-util-retry/Enum/RETRY_MODES/
|
|
119
|
+
*
|
|
118
120
|
*/
|
|
119
121
|
retryMode?: string | __Provider<string>;
|
|
120
122
|
/**
|
|
@@ -1,64 +1,75 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
BatchGetRecordCommandInput,
|
|
4
|
+
BatchGetRecordCommandOutput,
|
|
5
|
+
} from "./commands/BatchGetRecordCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteRecordCommandInput,
|
|
8
|
+
DeleteRecordCommandOutput,
|
|
9
|
+
} from "./commands/DeleteRecordCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetRecordCommandInput,
|
|
12
|
+
GetRecordCommandOutput,
|
|
13
|
+
} from "./commands/GetRecordCommand";
|
|
14
|
+
import {
|
|
15
|
+
PutRecordCommandInput,
|
|
16
|
+
PutRecordCommandOutput,
|
|
17
|
+
} from "./commands/PutRecordCommand";
|
|
18
|
+
import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient";
|
|
19
|
+
export interface SageMakerFeatureStoreRuntime {
|
|
20
|
+
batchGetRecord(
|
|
21
|
+
args: BatchGetRecordCommandInput,
|
|
22
|
+
options?: __HttpHandlerOptions
|
|
23
|
+
): Promise<BatchGetRecordCommandOutput>;
|
|
24
|
+
batchGetRecord(
|
|
25
|
+
args: BatchGetRecordCommandInput,
|
|
26
|
+
cb: (err: any, data?: BatchGetRecordCommandOutput) => void
|
|
27
|
+
): void;
|
|
28
|
+
batchGetRecord(
|
|
29
|
+
args: BatchGetRecordCommandInput,
|
|
30
|
+
options: __HttpHandlerOptions,
|
|
31
|
+
cb: (err: any, data?: BatchGetRecordCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
deleteRecord(
|
|
34
|
+
args: DeleteRecordCommandInput,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Promise<DeleteRecordCommandOutput>;
|
|
37
|
+
deleteRecord(
|
|
38
|
+
args: DeleteRecordCommandInput,
|
|
39
|
+
cb: (err: any, data?: DeleteRecordCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
deleteRecord(
|
|
42
|
+
args: DeleteRecordCommandInput,
|
|
43
|
+
options: __HttpHandlerOptions,
|
|
44
|
+
cb: (err: any, data?: DeleteRecordCommandOutput) => void
|
|
45
|
+
): void;
|
|
46
|
+
getRecord(
|
|
47
|
+
args: GetRecordCommandInput,
|
|
48
|
+
options?: __HttpHandlerOptions
|
|
49
|
+
): Promise<GetRecordCommandOutput>;
|
|
50
|
+
getRecord(
|
|
51
|
+
args: GetRecordCommandInput,
|
|
52
|
+
cb: (err: any, data?: GetRecordCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
getRecord(
|
|
55
|
+
args: GetRecordCommandInput,
|
|
56
|
+
options: __HttpHandlerOptions,
|
|
57
|
+
cb: (err: any, data?: GetRecordCommandOutput) => void
|
|
58
|
+
): void;
|
|
59
|
+
putRecord(
|
|
60
|
+
args: PutRecordCommandInput,
|
|
61
|
+
options?: __HttpHandlerOptions
|
|
62
|
+
): Promise<PutRecordCommandOutput>;
|
|
63
|
+
putRecord(
|
|
64
|
+
args: PutRecordCommandInput,
|
|
65
|
+
cb: (err: any, data?: PutRecordCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
putRecord(
|
|
68
|
+
args: PutRecordCommandInput,
|
|
69
|
+
options: __HttpHandlerOptions,
|
|
70
|
+
cb: (err: any, data?: PutRecordCommandOutput) => void
|
|
71
|
+
): void;
|
|
72
|
+
}
|
|
73
|
+
export declare class SageMakerFeatureStoreRuntime
|
|
74
|
+
extends SageMakerFeatureStoreRuntimeClient
|
|
75
|
+
implements SageMakerFeatureStoreRuntime {}
|
|
@@ -1,197 +1,145 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
*/
|
|
147
|
-
export type SageMakerFeatureStoreRuntimeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RuntimeExtensionsConfig & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
148
|
-
/**
|
|
149
|
-
* @public
|
|
150
|
-
*
|
|
151
|
-
* The resolved configuration interface of SageMakerFeatureStoreRuntimeClient class. This is resolved and normalized from the {@link SageMakerFeatureStoreRuntimeClientConfig | constructor configuration interface}.
|
|
152
|
-
*/
|
|
153
|
-
export interface SageMakerFeatureStoreRuntimeClientResolvedConfig extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
* @public
|
|
157
|
-
* <p>Contains all data plane API operations and data types for the Amazon SageMaker Feature
|
|
158
|
-
* Store. Use this API to put, delete, and retrieve (get) features from a feature
|
|
159
|
-
* store.</p>
|
|
160
|
-
* <p>Use the following operations to configure your <code>OnlineStore</code> and
|
|
161
|
-
* <code>OfflineStore</code> features, and to create and manage feature groups:</p>
|
|
162
|
-
* <ul>
|
|
163
|
-
* <li>
|
|
164
|
-
* <p>
|
|
165
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a>
|
|
166
|
-
* </p>
|
|
167
|
-
* </li>
|
|
168
|
-
* <li>
|
|
169
|
-
* <p>
|
|
170
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a>
|
|
171
|
-
* </p>
|
|
172
|
-
* </li>
|
|
173
|
-
* <li>
|
|
174
|
-
* <p>
|
|
175
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a>
|
|
176
|
-
* </p>
|
|
177
|
-
* </li>
|
|
178
|
-
* <li>
|
|
179
|
-
* <p>
|
|
180
|
-
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a>
|
|
181
|
-
* </p>
|
|
182
|
-
* </li>
|
|
183
|
-
* </ul>
|
|
184
|
-
*/
|
|
185
|
-
export declare class SageMakerFeatureStoreRuntimeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
|
|
186
|
-
/**
|
|
187
|
-
* The resolved configuration of SageMakerFeatureStoreRuntimeClient class. This is resolved and normalized from the {@link SageMakerFeatureStoreRuntimeClientConfig | constructor configuration interface}.
|
|
188
|
-
*/
|
|
189
|
-
readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
|
|
190
|
-
constructor(...[configuration]: __CheckOptionalClientConfig<SageMakerFeatureStoreRuntimeClientConfig>);
|
|
191
|
-
/**
|
|
192
|
-
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
193
|
-
* However in Node.js, it's best to explicitly shut down the client's agent when it is no longer needed.
|
|
194
|
-
* Otherwise, sockets might stay open for quite a long time before the server terminates them.
|
|
195
|
-
*/
|
|
196
|
-
destroy(): void;
|
|
197
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
BatchGetRecordCommandInput,
|
|
50
|
+
BatchGetRecordCommandOutput,
|
|
51
|
+
} from "./commands/BatchGetRecordCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteRecordCommandInput,
|
|
54
|
+
DeleteRecordCommandOutput,
|
|
55
|
+
} from "./commands/DeleteRecordCommand";
|
|
56
|
+
import {
|
|
57
|
+
GetRecordCommandInput,
|
|
58
|
+
GetRecordCommandOutput,
|
|
59
|
+
} from "./commands/GetRecordCommand";
|
|
60
|
+
import {
|
|
61
|
+
PutRecordCommandInput,
|
|
62
|
+
PutRecordCommandOutput,
|
|
63
|
+
} from "./commands/PutRecordCommand";
|
|
64
|
+
import {
|
|
65
|
+
ClientInputEndpointParameters,
|
|
66
|
+
ClientResolvedEndpointParameters,
|
|
67
|
+
EndpointParameters,
|
|
68
|
+
} from "./endpoint/EndpointParameters";
|
|
69
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
70
|
+
export { __Client };
|
|
71
|
+
export type ServiceInputTypes =
|
|
72
|
+
| BatchGetRecordCommandInput
|
|
73
|
+
| DeleteRecordCommandInput
|
|
74
|
+
| GetRecordCommandInput
|
|
75
|
+
| PutRecordCommandInput;
|
|
76
|
+
export type ServiceOutputTypes =
|
|
77
|
+
| BatchGetRecordCommandOutput
|
|
78
|
+
| DeleteRecordCommandOutput
|
|
79
|
+
| GetRecordCommandOutput
|
|
80
|
+
| PutRecordCommandOutput;
|
|
81
|
+
export interface ClientDefaults
|
|
82
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
83
|
+
requestHandler?: __HttpHandler;
|
|
84
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
85
|
+
urlParser?: __UrlParser;
|
|
86
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
87
|
+
streamCollector?: __StreamCollector;
|
|
88
|
+
base64Decoder?: __Decoder;
|
|
89
|
+
base64Encoder?: __Encoder;
|
|
90
|
+
utf8Decoder?: __Decoder;
|
|
91
|
+
utf8Encoder?: __Encoder;
|
|
92
|
+
runtime?: string;
|
|
93
|
+
disableHostPrefix?: boolean;
|
|
94
|
+
serviceId?: string;
|
|
95
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
96
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
97
|
+
region?: string | __Provider<string>;
|
|
98
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
99
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
100
|
+
maxAttempts?: number | __Provider<number>;
|
|
101
|
+
retryMode?: string | __Provider<string>;
|
|
102
|
+
logger?: __Logger;
|
|
103
|
+
extensions?: RuntimeExtension[];
|
|
104
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
105
|
+
}
|
|
106
|
+
export type SageMakerFeatureStoreRuntimeClientConfigType = Partial<
|
|
107
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
108
|
+
> &
|
|
109
|
+
ClientDefaults &
|
|
110
|
+
RegionInputConfig &
|
|
111
|
+
EndpointInputConfig<EndpointParameters> &
|
|
112
|
+
RetryInputConfig &
|
|
113
|
+
HostHeaderInputConfig &
|
|
114
|
+
AwsAuthInputConfig &
|
|
115
|
+
UserAgentInputConfig &
|
|
116
|
+
ClientInputEndpointParameters;
|
|
117
|
+
export interface SageMakerFeatureStoreRuntimeClientConfig
|
|
118
|
+
extends SageMakerFeatureStoreRuntimeClientConfigType {}
|
|
119
|
+
export type SageMakerFeatureStoreRuntimeClientResolvedConfigType =
|
|
120
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
121
|
+
Required<ClientDefaults> &
|
|
122
|
+
RuntimeExtensionsConfig &
|
|
123
|
+
RegionResolvedConfig &
|
|
124
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
125
|
+
RetryResolvedConfig &
|
|
126
|
+
HostHeaderResolvedConfig &
|
|
127
|
+
AwsAuthResolvedConfig &
|
|
128
|
+
UserAgentResolvedConfig &
|
|
129
|
+
ClientResolvedEndpointParameters;
|
|
130
|
+
export interface SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
131
|
+
extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {}
|
|
132
|
+
export declare class SageMakerFeatureStoreRuntimeClient extends __Client<
|
|
133
|
+
__HttpHandlerOptions,
|
|
134
|
+
ServiceInputTypes,
|
|
135
|
+
ServiceOutputTypes,
|
|
136
|
+
SageMakerFeatureStoreRuntimeClientResolvedConfig
|
|
137
|
+
> {
|
|
138
|
+
readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
|
|
139
|
+
constructor(
|
|
140
|
+
...[
|
|
141
|
+
configuration,
|
|
142
|
+
]: __CheckOptionalClientConfig<SageMakerFeatureStoreRuntimeClientConfig>
|
|
143
|
+
);
|
|
144
|
+
destroy(): void;
|
|
145
|
+
}
|