@aws-sdk/client-sagemaker-featurestore-runtime 3.50.0 → 3.53.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 (30) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/SageMakerFeatureStoreRuntimeServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +72 -1
  5. package/dist-cjs/protocols/Aws_restJson1.js +77 -183
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/SageMakerFeatureStoreRuntimeServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +67 -1
  9. package/dist-es/protocols/Aws_restJson1.js +117 -205
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +37 -16
  13. package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +25 -0
  14. package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +77 -0
  15. package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  20. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  21. package/dist-types/ts3.4/index.d.ts +5 -0
  22. package/dist-types/ts3.4/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +6 -0
  23. package/dist-types/ts3.4/models/index.d.ts +1 -0
  24. package/dist-types/ts3.4/models/models_0.d.ts +156 -0
  25. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +14 -0
  26. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  27. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  28. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  29. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  30. package/package.json +33 -33
@@ -1,11 +1,16 @@
1
- import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
2
3
  /**
3
4
  * <p>You do not have permission to perform an action.</p>
4
5
  */
5
- export interface AccessForbidden extends __SmithyException, $MetadataBearer {
6
- name: "AccessForbidden";
7
- $fault: "client";
6
+ export declare class AccessForbidden extends __BaseException {
7
+ readonly name: "AccessForbidden";
8
+ readonly $fault: "client";
8
9
  Message?: string;
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
9
14
  }
10
15
  /**
11
16
  * <p>The identifier that identifies the batch of Records you are retrieving in a batch.</p>
@@ -140,26 +145,38 @@ export declare namespace BatchGetRecordResponse {
140
145
  * <p>An internal failure occurred. Try your request again. If the problem
141
146
  * persists, contact AWS customer support.</p>
142
147
  */
143
- export interface InternalFailure extends __SmithyException, $MetadataBearer {
144
- name: "InternalFailure";
145
- $fault: "server";
148
+ export declare class InternalFailure extends __BaseException {
149
+ readonly name: "InternalFailure";
150
+ readonly $fault: "server";
146
151
  Message?: string;
152
+ /**
153
+ * @internal
154
+ */
155
+ constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
147
156
  }
148
157
  /**
149
158
  * <p>The service is currently unavailable.</p>
150
159
  */
151
- export interface ServiceUnavailable extends __SmithyException, $MetadataBearer {
152
- name: "ServiceUnavailable";
153
- $fault: "server";
160
+ export declare class ServiceUnavailable extends __BaseException {
161
+ readonly name: "ServiceUnavailable";
162
+ readonly $fault: "server";
154
163
  Message?: string;
164
+ /**
165
+ * @internal
166
+ */
167
+ constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
155
168
  }
156
169
  /**
157
170
  * <p>There was an error validating your request.</p>
158
171
  */
159
- export interface ValidationError extends __SmithyException, $MetadataBearer {
160
- name: "ValidationError";
161
- $fault: "client";
172
+ export declare class ValidationError extends __BaseException {
173
+ readonly name: "ValidationError";
174
+ readonly $fault: "client";
162
175
  Message?: string;
176
+ /**
177
+ * @internal
178
+ */
179
+ constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
163
180
  }
164
181
  export interface DeleteRecordRequest {
165
182
  /**
@@ -220,10 +237,14 @@ export declare namespace GetRecordResponse {
220
237
  /**
221
238
  * <p>A resource that is required to perform an action was not found.</p>
222
239
  */
223
- export interface ResourceNotFound extends __SmithyException, $MetadataBearer {
224
- name: "ResourceNotFound";
225
- $fault: "client";
240
+ export declare class ResourceNotFound extends __BaseException {
241
+ readonly name: "ResourceNotFound";
242
+ readonly $fault: "client";
226
243
  Message?: string;
244
+ /**
245
+ * @internal
246
+ */
247
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
227
248
  }
228
249
  export interface PutRecordRequest {
229
250
  /**
@@ -0,0 +1,25 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
3
+ import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
4
+ import { GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand";
5
+ import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
6
+ import { SageMakerFeatureStoreRuntimeClient } from "./SageMakerFeatureStoreRuntimeClient";
7
+
8
+ export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient {
9
+
10
+ batchGetRecord(args: BatchGetRecordCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetRecordCommandOutput>;
11
+ batchGetRecord(args: BatchGetRecordCommandInput, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
12
+ batchGetRecord(args: BatchGetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
13
+
14
+ deleteRecord(args: DeleteRecordCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecordCommandOutput>;
15
+ deleteRecord(args: DeleteRecordCommandInput, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
16
+ deleteRecord(args: DeleteRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
17
+
18
+ getRecord(args: GetRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetRecordCommandOutput>;
19
+ getRecord(args: GetRecordCommandInput, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
20
+ getRecord(args: GetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
21
+
22
+ putRecord(args: PutRecordCommandInput, options?: __HttpHandlerOptions): Promise<PutRecordCommandOutput>;
23
+ putRecord(args: PutRecordCommandInput, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
24
+ putRecord(args: PutRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
25
+ }
@@ -0,0 +1,77 @@
1
+ import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
+ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
+ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
+ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
+ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
+ import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
+ import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
+ import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
10
+ import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
11
+ import { GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand";
12
+ import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
13
+ export declare type ServiceInputTypes = BatchGetRecordCommandInput | DeleteRecordCommandInput | GetRecordCommandInput | PutRecordCommandInput;
14
+ export declare type ServiceOutputTypes = BatchGetRecordCommandOutput | DeleteRecordCommandOutput | GetRecordCommandOutput | PutRecordCommandOutput;
15
+ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
16
+
17
+ requestHandler?: __HttpHandler;
18
+
19
+ sha256?: __HashConstructor;
20
+
21
+ urlParser?: __UrlParser;
22
+
23
+ bodyLengthChecker?: (body: any) => number | undefined;
24
+
25
+ streamCollector?: __StreamCollector;
26
+
27
+ base64Decoder?: __Decoder;
28
+
29
+ base64Encoder?: __Encoder;
30
+
31
+ utf8Decoder?: __Decoder;
32
+
33
+ utf8Encoder?: __Encoder;
34
+
35
+ runtime?: string;
36
+
37
+ disableHostPrefix?: boolean;
38
+
39
+ maxAttempts?: number | __Provider<number>;
40
+
41
+ retryMode?: string | __Provider<string>;
42
+
43
+ logger?: __Logger;
44
+
45
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
46
+
47
+ useFipsEndpoint?: boolean | __Provider<boolean>;
48
+
49
+ serviceId?: string;
50
+
51
+ region?: string | __Provider<string>;
52
+
53
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
54
+
55
+ regionInfoProvider?: RegionInfoProvider;
56
+
57
+ defaultUserAgentProvider?: Provider<__UserAgent>;
58
+
59
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
60
+ }
61
+ declare type SageMakerFeatureStoreRuntimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
62
+
63
+ export interface SageMakerFeatureStoreRuntimeClientConfig extends SageMakerFeatureStoreRuntimeClientConfigType {
64
+ }
65
+ declare type SageMakerFeatureStoreRuntimeClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
66
+
67
+ export interface SageMakerFeatureStoreRuntimeClientResolvedConfig extends SageMakerFeatureStoreRuntimeClientResolvedConfigType {
68
+ }
69
+
70
+ export declare class SageMakerFeatureStoreRuntimeClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
71
+
72
+ readonly config: SageMakerFeatureStoreRuntimeClientResolvedConfig;
73
+ constructor(configuration: SageMakerFeatureStoreRuntimeClientConfig);
74
+
75
+ destroy(): void;
76
+ }
77
+ export {};
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { BatchGetRecordRequest, BatchGetRecordResponse } from "../models/models_0";
4
+ import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
5
+ export interface BatchGetRecordCommandInput extends BatchGetRecordRequest {
6
+ }
7
+ export interface BatchGetRecordCommandOutput extends BatchGetRecordResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class BatchGetRecordCommand extends $Command<BatchGetRecordCommandInput, BatchGetRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
11
+ readonly input: BatchGetRecordCommandInput;
12
+ constructor(input: BatchGetRecordCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchGetRecordCommandInput, BatchGetRecordCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { DeleteRecordRequest } from "../models/models_0";
4
+ import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
5
+ export interface DeleteRecordCommandInput extends DeleteRecordRequest {
6
+ }
7
+ export interface DeleteRecordCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteRecordCommand extends $Command<DeleteRecordCommandInput, DeleteRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
11
+ readonly input: DeleteRecordCommandInput;
12
+ constructor(input: DeleteRecordCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRecordCommandInput, DeleteRecordCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { GetRecordRequest, GetRecordResponse } from "../models/models_0";
4
+ import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
5
+ export interface GetRecordCommandInput extends GetRecordRequest {
6
+ }
7
+ export interface GetRecordCommandOutput extends GetRecordResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class GetRecordCommand extends $Command<GetRecordCommandInput, GetRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
11
+ readonly input: GetRecordCommandInput;
12
+ constructor(input: GetRecordCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRecordCommandInput, GetRecordCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { PutRecordRequest } from "../models/models_0";
4
+ import { SageMakerFeatureStoreRuntimeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerFeatureStoreRuntimeClient";
5
+ export interface PutRecordCommandInput extends PutRecordRequest {
6
+ }
7
+ export interface PutRecordCommandOutput extends __MetadataBearer {
8
+ }
9
+
10
+ export declare class PutRecordCommand extends $Command<PutRecordCommandInput, PutRecordCommandOutput, SageMakerFeatureStoreRuntimeClientResolvedConfig> {
11
+ readonly input: PutRecordCommandInput;
12
+ constructor(input: PutRecordCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SageMakerFeatureStoreRuntimeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutRecordCommandInput, PutRecordCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./BatchGetRecordCommand";
2
+ export * from "./DeleteRecordCommand";
3
+ export * from "./GetRecordCommand";
4
+ export * from "./PutRecordCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,5 @@
1
+ export * from "./SageMakerFeatureStoreRuntime";
2
+ export * from "./SageMakerFeatureStoreRuntimeClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";
@@ -0,0 +1,156 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
+
4
+ export declare class AccessForbidden extends __BaseException {
5
+ readonly name: "AccessForbidden";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
10
+ }
11
+
12
+ export interface BatchGetRecordIdentifier {
13
+
14
+ FeatureGroupName: string | undefined;
15
+
16
+ RecordIdentifiersValueAsString: string[] | undefined;
17
+
18
+ FeatureNames?: string[];
19
+ }
20
+ export declare namespace BatchGetRecordIdentifier {
21
+
22
+ const filterSensitiveLog: (obj: BatchGetRecordIdentifier) => any;
23
+ }
24
+ export interface BatchGetRecordRequest {
25
+
26
+ Identifiers: BatchGetRecordIdentifier[] | undefined;
27
+ }
28
+ export declare namespace BatchGetRecordRequest {
29
+
30
+ const filterSensitiveLog: (obj: BatchGetRecordRequest) => any;
31
+ }
32
+
33
+ export interface BatchGetRecordError {
34
+
35
+ FeatureGroupName: string | undefined;
36
+
37
+ RecordIdentifierValueAsString: string | undefined;
38
+
39
+ ErrorCode: string | undefined;
40
+
41
+ ErrorMessage: string | undefined;
42
+ }
43
+ export declare namespace BatchGetRecordError {
44
+
45
+ const filterSensitiveLog: (obj: BatchGetRecordError) => any;
46
+ }
47
+
48
+ export interface FeatureValue {
49
+
50
+ FeatureName: string | undefined;
51
+
52
+ ValueAsString: string | undefined;
53
+ }
54
+ export declare namespace FeatureValue {
55
+
56
+ const filterSensitiveLog: (obj: FeatureValue) => any;
57
+ }
58
+
59
+ export interface BatchGetRecordResultDetail {
60
+
61
+ FeatureGroupName: string | undefined;
62
+
63
+ RecordIdentifierValueAsString: string | undefined;
64
+
65
+ Record: FeatureValue[] | undefined;
66
+ }
67
+ export declare namespace BatchGetRecordResultDetail {
68
+
69
+ const filterSensitiveLog: (obj: BatchGetRecordResultDetail) => any;
70
+ }
71
+ export interface BatchGetRecordResponse {
72
+
73
+ Records: BatchGetRecordResultDetail[] | undefined;
74
+
75
+ Errors: BatchGetRecordError[] | undefined;
76
+
77
+ UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
78
+ }
79
+ export declare namespace BatchGetRecordResponse {
80
+
81
+ const filterSensitiveLog: (obj: BatchGetRecordResponse) => any;
82
+ }
83
+
84
+ export declare class InternalFailure extends __BaseException {
85
+ readonly name: "InternalFailure";
86
+ readonly $fault: "server";
87
+ Message?: string;
88
+
89
+ constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
90
+ }
91
+
92
+ export declare class ServiceUnavailable extends __BaseException {
93
+ readonly name: "ServiceUnavailable";
94
+ readonly $fault: "server";
95
+ Message?: string;
96
+
97
+ constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
98
+ }
99
+
100
+ export declare class ValidationError extends __BaseException {
101
+ readonly name: "ValidationError";
102
+ readonly $fault: "client";
103
+ Message?: string;
104
+
105
+ constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
106
+ }
107
+ export interface DeleteRecordRequest {
108
+
109
+ FeatureGroupName: string | undefined;
110
+
111
+ RecordIdentifierValueAsString: string | undefined;
112
+
113
+ EventTime: string | undefined;
114
+ }
115
+ export declare namespace DeleteRecordRequest {
116
+
117
+ const filterSensitiveLog: (obj: DeleteRecordRequest) => any;
118
+ }
119
+ export interface GetRecordRequest {
120
+
121
+ FeatureGroupName: string | undefined;
122
+
123
+ RecordIdentifierValueAsString: string | undefined;
124
+
125
+ FeatureNames?: string[];
126
+ }
127
+ export declare namespace GetRecordRequest {
128
+
129
+ const filterSensitiveLog: (obj: GetRecordRequest) => any;
130
+ }
131
+ export interface GetRecordResponse {
132
+
133
+ Record?: FeatureValue[];
134
+ }
135
+ export declare namespace GetRecordResponse {
136
+
137
+ const filterSensitiveLog: (obj: GetRecordResponse) => any;
138
+ }
139
+
140
+ export declare class ResourceNotFound extends __BaseException {
141
+ readonly name: "ResourceNotFound";
142
+ readonly $fault: "client";
143
+ Message?: string;
144
+
145
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
146
+ }
147
+ export interface PutRecordRequest {
148
+
149
+ FeatureGroupName: string | undefined;
150
+
151
+ Record: FeatureValue[] | undefined;
152
+ }
153
+ export declare namespace PutRecordRequest {
154
+
155
+ const filterSensitiveLog: (obj: PutRecordRequest) => any;
156
+ }
@@ -0,0 +1,14 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "../commands/BatchGetRecordCommand";
4
+ import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "../commands/DeleteRecordCommand";
5
+ import { GetRecordCommandInput, GetRecordCommandOutput } from "../commands/GetRecordCommand";
6
+ import { PutRecordCommandInput, PutRecordCommandOutput } from "../commands/PutRecordCommand";
7
+ export declare const serializeAws_restJson1BatchGetRecordCommand: (input: BatchGetRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
8
+ export declare const serializeAws_restJson1DeleteRecordCommand: (input: DeleteRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
9
+ export declare const serializeAws_restJson1GetRecordCommand: (input: GetRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
10
+ export declare const serializeAws_restJson1PutRecordCommand: (input: PutRecordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
11
+ export declare const deserializeAws_restJson1BatchGetRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<BatchGetRecordCommandOutput>;
12
+ export declare const deserializeAws_restJson1DeleteRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteRecordCommandOutput>;
13
+ export declare const deserializeAws_restJson1GetRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRecordCommandOutput>;
14
+ export declare const deserializeAws_restJson1PutRecordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutRecordCommandOutput>;
@@ -0,0 +1,38 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
+
4
+ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,38 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
+
4
+ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
5
+ runtime: string;
6
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sha256: import("@aws-sdk/types").HashConstructor;
17
+ streamCollector: import("@aws-sdk/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ utf8Decoder: import("@aws-sdk/types").Decoder;
21
+ utf8Encoder: import("@aws-sdk/types").Encoder;
22
+ apiVersion: string;
23
+ urlParser: import("@aws-sdk/types").UrlParser;
24
+ disableHostPrefix: boolean;
25
+ logger: import("@aws-sdk/types").Logger;
26
+ serviceId: string;
27
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ tls?: boolean | undefined;
30
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signingEscapePath?: boolean | undefined;
34
+ systemClockOffset?: number | undefined;
35
+ signingRegion?: string | undefined;
36
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
+ };
@@ -0,0 +1,37 @@
1
+ import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
2
+
3
+ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
4
+ runtime: string;
5
+ sha256: import("@aws-sdk/types").HashConstructor;
6
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
+ apiVersion: string;
8
+ urlParser: import("@aws-sdk/types").UrlParser;
9
+ bodyLengthChecker: (body: any) => number | undefined;
10
+ streamCollector: import("@aws-sdk/types").StreamCollector;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ utf8Decoder: import("@aws-sdk/types").Decoder;
14
+ utf8Encoder: import("@aws-sdk/types").Encoder;
15
+ disableHostPrefix: boolean;
16
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
18
+ logger: import("@aws-sdk/types").Logger;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ serviceId: string;
22
+ region: string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Provider<any>;
23
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode> | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
27
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ tls?: boolean | undefined;
29
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
+ credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
+ signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
+ signingEscapePath?: boolean | undefined;
33
+ systemClockOffset?: number | undefined;
34
+ signingRegion?: string | undefined;
35
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
+ };
@@ -0,0 +1,11 @@
1
+ import { Logger as __Logger } from "@aws-sdk/types";
2
+ import { SageMakerFeatureStoreRuntimeClientConfig } from "./SageMakerFeatureStoreRuntimeClient";
3
+
4
+ export declare const getRuntimeConfig: (config: SageMakerFeatureStoreRuntimeClientConfig) => {
5
+ apiVersion: string;
6
+ disableHostPrefix: boolean;
7
+ logger: __Logger;
8
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
9
+ serviceId: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ };