@aws-sdk/client-sagemaker-featurestore-runtime 3.933.0 → 3.935.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 CHANGED
@@ -131,10 +131,6 @@ let AccessForbidden$1 = class AccessForbidden extends SageMakerFeatureStoreRunti
131
131
  this.Message = opts.Message;
132
132
  }
133
133
  };
134
- const ExpirationTimeResponse = {
135
- DISABLED: "Disabled",
136
- ENABLED: "Enabled",
137
- };
138
134
  let InternalFailure$1 = class InternalFailure extends SageMakerFeatureStoreRuntimeServiceException$1 {
139
135
  name = "InternalFailure";
140
136
  $fault = "server";
@@ -177,14 +173,6 @@ let ValidationError$1 = class ValidationError extends SageMakerFeatureStoreRunti
177
173
  this.Message = opts.Message;
178
174
  }
179
175
  };
180
- const DeletionMode = {
181
- HARD_DELETE: "HardDelete",
182
- SOFT_DELETE: "SoftDelete",
183
- };
184
- const TargetStore = {
185
- OFFLINE_STORE: "OfflineStore",
186
- ONLINE_STORE: "OnlineStore",
187
- };
188
176
  let ResourceNotFound$1 = class ResourceNotFound extends SageMakerFeatureStoreRuntimeServiceException$1 {
189
177
  name = "ResourceNotFound";
190
178
  $fault = "client";
@@ -199,13 +187,6 @@ let ResourceNotFound$1 = class ResourceNotFound extends SageMakerFeatureStoreRun
199
187
  this.Message = opts.Message;
200
188
  }
201
189
  };
202
- const TtlDurationUnit = {
203
- DAYS: "Days",
204
- HOURS: "Hours",
205
- MINUTES: "Minutes",
206
- SECONDS: "Seconds",
207
- WEEKS: "Weeks",
208
- };
209
190
 
210
191
  const _AF = "AccessForbidden";
211
192
  const _BGR = "BatchGetRecord";
@@ -540,6 +521,26 @@ class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient {
540
521
  }
541
522
  smithyClient.createAggregatedClient(commands, SageMakerFeatureStoreRuntime);
542
523
 
524
+ const ExpirationTimeResponse = {
525
+ DISABLED: "Disabled",
526
+ ENABLED: "Enabled",
527
+ };
528
+ const DeletionMode = {
529
+ HARD_DELETE: "HardDelete",
530
+ SOFT_DELETE: "SoftDelete",
531
+ };
532
+ const TargetStore = {
533
+ OFFLINE_STORE: "OfflineStore",
534
+ ONLINE_STORE: "OnlineStore",
535
+ };
536
+ const TtlDurationUnit = {
537
+ DAYS: "Days",
538
+ HOURS: "Hours",
539
+ MINUTES: "Minutes",
540
+ SECONDS: "Seconds",
541
+ WEEKS: "Weeks",
542
+ };
543
+
543
544
  Object.defineProperty(exports, "$Command", {
544
545
  enumerable: true,
545
546
  get: function () { return smithyClient.Command; }
package/dist-es/index.js CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from "./SageMakerFeatureStoreRuntimeClient";
2
2
  export * from "./SageMakerFeatureStoreRuntime";
3
3
  export * from "./commands";
4
- export * from "./models";
4
+ export * from "./models/enums";
5
+ export * from "./models/errors";
5
6
  export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
@@ -0,0 +1,19 @@
1
+ export const ExpirationTimeResponse = {
2
+ DISABLED: "Disabled",
3
+ ENABLED: "Enabled",
4
+ };
5
+ export const DeletionMode = {
6
+ HARD_DELETE: "HardDelete",
7
+ SOFT_DELETE: "SoftDelete",
8
+ };
9
+ export const TargetStore = {
10
+ OFFLINE_STORE: "OfflineStore",
11
+ ONLINE_STORE: "OnlineStore",
12
+ };
13
+ export const TtlDurationUnit = {
14
+ DAYS: "Days",
15
+ HOURS: "Hours",
16
+ MINUTES: "Minutes",
17
+ SECONDS: "Seconds",
18
+ WEEKS: "Weeks",
19
+ };
@@ -0,0 +1,71 @@
1
+ import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
2
+ export class AccessForbidden extends __BaseException {
3
+ name = "AccessForbidden";
4
+ $fault = "client";
5
+ Message;
6
+ constructor(opts) {
7
+ super({
8
+ name: "AccessForbidden",
9
+ $fault: "client",
10
+ ...opts,
11
+ });
12
+ Object.setPrototypeOf(this, AccessForbidden.prototype);
13
+ this.Message = opts.Message;
14
+ }
15
+ }
16
+ export class InternalFailure extends __BaseException {
17
+ name = "InternalFailure";
18
+ $fault = "server";
19
+ Message;
20
+ constructor(opts) {
21
+ super({
22
+ name: "InternalFailure",
23
+ $fault: "server",
24
+ ...opts,
25
+ });
26
+ Object.setPrototypeOf(this, InternalFailure.prototype);
27
+ this.Message = opts.Message;
28
+ }
29
+ }
30
+ export class ServiceUnavailable extends __BaseException {
31
+ name = "ServiceUnavailable";
32
+ $fault = "server";
33
+ Message;
34
+ constructor(opts) {
35
+ super({
36
+ name: "ServiceUnavailable",
37
+ $fault: "server",
38
+ ...opts,
39
+ });
40
+ Object.setPrototypeOf(this, ServiceUnavailable.prototype);
41
+ this.Message = opts.Message;
42
+ }
43
+ }
44
+ export class ValidationError extends __BaseException {
45
+ name = "ValidationError";
46
+ $fault = "client";
47
+ Message;
48
+ constructor(opts) {
49
+ super({
50
+ name: "ValidationError",
51
+ $fault: "client",
52
+ ...opts,
53
+ });
54
+ Object.setPrototypeOf(this, ValidationError.prototype);
55
+ this.Message = opts.Message;
56
+ }
57
+ }
58
+ export class ResourceNotFound extends __BaseException {
59
+ name = "ResourceNotFound";
60
+ $fault = "client";
61
+ Message;
62
+ constructor(opts) {
63
+ super({
64
+ name: "ResourceNotFound",
65
+ $fault: "client",
66
+ ...opts,
67
+ });
68
+ Object.setPrototypeOf(this, ResourceNotFound.prototype);
69
+ this.Message = opts.Message;
70
+ }
71
+ }
@@ -1,90 +1 @@
1
- import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
2
- export class AccessForbidden extends __BaseException {
3
- name = "AccessForbidden";
4
- $fault = "client";
5
- Message;
6
- constructor(opts) {
7
- super({
8
- name: "AccessForbidden",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- Object.setPrototypeOf(this, AccessForbidden.prototype);
13
- this.Message = opts.Message;
14
- }
15
- }
16
- export const ExpirationTimeResponse = {
17
- DISABLED: "Disabled",
18
- ENABLED: "Enabled",
19
- };
20
- export class InternalFailure extends __BaseException {
21
- name = "InternalFailure";
22
- $fault = "server";
23
- Message;
24
- constructor(opts) {
25
- super({
26
- name: "InternalFailure",
27
- $fault: "server",
28
- ...opts,
29
- });
30
- Object.setPrototypeOf(this, InternalFailure.prototype);
31
- this.Message = opts.Message;
32
- }
33
- }
34
- export class ServiceUnavailable extends __BaseException {
35
- name = "ServiceUnavailable";
36
- $fault = "server";
37
- Message;
38
- constructor(opts) {
39
- super({
40
- name: "ServiceUnavailable",
41
- $fault: "server",
42
- ...opts,
43
- });
44
- Object.setPrototypeOf(this, ServiceUnavailable.prototype);
45
- this.Message = opts.Message;
46
- }
47
- }
48
- export class ValidationError extends __BaseException {
49
- name = "ValidationError";
50
- $fault = "client";
51
- Message;
52
- constructor(opts) {
53
- super({
54
- name: "ValidationError",
55
- $fault: "client",
56
- ...opts,
57
- });
58
- Object.setPrototypeOf(this, ValidationError.prototype);
59
- this.Message = opts.Message;
60
- }
61
- }
62
- export const DeletionMode = {
63
- HARD_DELETE: "HardDelete",
64
- SOFT_DELETE: "SoftDelete",
65
- };
66
- export const TargetStore = {
67
- OFFLINE_STORE: "OfflineStore",
68
- ONLINE_STORE: "OnlineStore",
69
- };
70
- export class ResourceNotFound extends __BaseException {
71
- name = "ResourceNotFound";
72
- $fault = "client";
73
- Message;
74
- constructor(opts) {
75
- super({
76
- name: "ResourceNotFound",
77
- $fault: "client",
78
- ...opts,
79
- });
80
- Object.setPrototypeOf(this, ResourceNotFound.prototype);
81
- this.Message = opts.Message;
82
- }
83
- }
84
- export const TtlDurationUnit = {
85
- DAYS: "Days",
86
- HOURS: "Hours",
87
- MINUTES: "Minutes",
88
- SECONDS: "Seconds",
89
- WEEKS: "Weeks",
90
- };
1
+ export {};
@@ -52,7 +52,7 @@ const _s = "server";
52
52
  const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sagemakerfeaturestoreruntime";
53
53
  const n0 = "com.amazonaws.sagemakerfeaturestoreruntime";
54
54
  import { TypeRegistry } from "@smithy/core/schema";
55
- import { AccessForbidden as __AccessForbidden, InternalFailure as __InternalFailure, ResourceNotFound as __ResourceNotFound, ServiceUnavailable as __ServiceUnavailable, ValidationError as __ValidationError, } from "../models/index";
55
+ import { AccessForbidden as __AccessForbidden, InternalFailure as __InternalFailure, ResourceNotFound as __ResourceNotFound, ServiceUnavailable as __ServiceUnavailable, ValidationError as __ValidationError, } from "../models/errors";
56
56
  import { SageMakerFeatureStoreRuntimeServiceException as __SageMakerFeatureStoreRuntimeServiceException } from "../models/SageMakerFeatureStoreRuntimeServiceException";
57
57
  export var AccessForbidden = [
58
58
  -3,
@@ -35,5 +35,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
35
35
  export type { RuntimeExtension } from "./runtimeExtensions";
36
36
  export type { SageMakerFeatureStoreRuntimeExtensionConfiguration } from "./extensionConfiguration";
37
37
  export * from "./commands";
38
- export * from "./models";
38
+ export * from "./models/enums";
39
+ export * from "./models/errors";
40
+ export type * from "./models/models_0";
39
41
  export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
@@ -0,0 +1,51 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ExpirationTimeResponse: {
6
+ readonly DISABLED: "Disabled";
7
+ readonly ENABLED: "Enabled";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ExpirationTimeResponse = (typeof ExpirationTimeResponse)[keyof typeof ExpirationTimeResponse];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const DeletionMode: {
18
+ readonly HARD_DELETE: "HardDelete";
19
+ readonly SOFT_DELETE: "SoftDelete";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const TargetStore: {
30
+ readonly OFFLINE_STORE: "OfflineStore";
31
+ readonly ONLINE_STORE: "OnlineStore";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type TargetStore = (typeof TargetStore)[keyof typeof TargetStore];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const TtlDurationUnit: {
42
+ readonly DAYS: "Days";
43
+ readonly HOURS: "Hours";
44
+ readonly MINUTES: "Minutes";
45
+ readonly SECONDS: "Seconds";
46
+ readonly WEEKS: "Weeks";
47
+ };
48
+ /**
49
+ * @public
50
+ */
51
+ export type TtlDurationUnit = (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
@@ -0,0 +1,68 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
+ /**
4
+ * <p>You do not have permission to perform an action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessForbidden extends __BaseException {
8
+ readonly name: "AccessForbidden";
9
+ readonly $fault: "client";
10
+ Message?: string | undefined;
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>An internal failure occurred. Try your request again. If the problem persists, contact
18
+ * Amazon Web Services customer support.</p>
19
+ * @public
20
+ */
21
+ export declare class InternalFailure extends __BaseException {
22
+ readonly name: "InternalFailure";
23
+ readonly $fault: "server";
24
+ Message?: string | undefined;
25
+ /**
26
+ * @internal
27
+ */
28
+ constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
29
+ }
30
+ /**
31
+ * <p>The service is currently unavailable.</p>
32
+ * @public
33
+ */
34
+ export declare class ServiceUnavailable extends __BaseException {
35
+ readonly name: "ServiceUnavailable";
36
+ readonly $fault: "server";
37
+ Message?: string | undefined;
38
+ /**
39
+ * @internal
40
+ */
41
+ constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
42
+ }
43
+ /**
44
+ * <p>There was an error validating your request.</p>
45
+ * @public
46
+ */
47
+ export declare class ValidationError extends __BaseException {
48
+ readonly name: "ValidationError";
49
+ readonly $fault: "client";
50
+ Message?: string | undefined;
51
+ /**
52
+ * @internal
53
+ */
54
+ constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
55
+ }
56
+ /**
57
+ * <p>A resource that is required to perform an action was not found.</p>
58
+ * @public
59
+ */
60
+ export declare class ResourceNotFound extends __BaseException {
61
+ readonly name: "ResourceNotFound";
62
+ readonly $fault: "client";
63
+ Message?: string | undefined;
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
68
+ }
@@ -1,30 +1,4 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
- /**
4
- * <p>You do not have permission to perform an action.</p>
5
- * @public
6
- */
7
- export declare class AccessForbidden extends __BaseException {
8
- readonly name: "AccessForbidden";
9
- readonly $fault: "client";
10
- Message?: string | undefined;
11
- /**
12
- * @internal
13
- */
14
- constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
15
- }
16
- /**
17
- * @public
18
- * @enum
19
- */
20
- export declare const ExpirationTimeResponse: {
21
- readonly DISABLED: "Disabled";
22
- readonly ENABLED: "Enabled";
23
- };
24
- /**
25
- * @public
26
- */
27
- export type ExpirationTimeResponse = (typeof ExpirationTimeResponse)[keyof typeof ExpirationTimeResponse];
1
+ import { DeletionMode, ExpirationTimeResponse, TargetStore, TtlDurationUnit } from "./enums";
28
2
  /**
29
3
  * <p>The identifier that identifies the batch of Records you are retrieving in a
30
4
  * batch.</p>
@@ -174,70 +148,6 @@ export interface BatchGetRecordResponse {
174
148
  */
175
149
  UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
176
150
  }
177
- /**
178
- * <p>An internal failure occurred. Try your request again. If the problem persists, contact
179
- * Amazon Web Services customer support.</p>
180
- * @public
181
- */
182
- export declare class InternalFailure extends __BaseException {
183
- readonly name: "InternalFailure";
184
- readonly $fault: "server";
185
- Message?: string | undefined;
186
- /**
187
- * @internal
188
- */
189
- constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
190
- }
191
- /**
192
- * <p>The service is currently unavailable.</p>
193
- * @public
194
- */
195
- export declare class ServiceUnavailable extends __BaseException {
196
- readonly name: "ServiceUnavailable";
197
- readonly $fault: "server";
198
- Message?: string | undefined;
199
- /**
200
- * @internal
201
- */
202
- constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
203
- }
204
- /**
205
- * <p>There was an error validating your request.</p>
206
- * @public
207
- */
208
- export declare class ValidationError extends __BaseException {
209
- readonly name: "ValidationError";
210
- readonly $fault: "client";
211
- Message?: string | undefined;
212
- /**
213
- * @internal
214
- */
215
- constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
216
- }
217
- /**
218
- * @public
219
- * @enum
220
- */
221
- export declare const DeletionMode: {
222
- readonly HARD_DELETE: "HardDelete";
223
- readonly SOFT_DELETE: "SoftDelete";
224
- };
225
- /**
226
- * @public
227
- */
228
- export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
229
- /**
230
- * @public
231
- * @enum
232
- */
233
- export declare const TargetStore: {
234
- readonly OFFLINE_STORE: "OfflineStore";
235
- readonly ONLINE_STORE: "OnlineStore";
236
- };
237
- /**
238
- * @public
239
- */
240
- export type TargetStore = (typeof TargetStore)[keyof typeof TargetStore];
241
151
  /**
242
152
  * @public
243
153
  */
@@ -319,34 +229,6 @@ export interface GetRecordResponse {
319
229
  */
320
230
  ExpiresAt?: string | undefined;
321
231
  }
322
- /**
323
- * <p>A resource that is required to perform an action was not found.</p>
324
- * @public
325
- */
326
- export declare class ResourceNotFound extends __BaseException {
327
- readonly name: "ResourceNotFound";
328
- readonly $fault: "client";
329
- Message?: string | undefined;
330
- /**
331
- * @internal
332
- */
333
- constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
334
- }
335
- /**
336
- * @public
337
- * @enum
338
- */
339
- export declare const TtlDurationUnit: {
340
- readonly DAYS: "Days";
341
- readonly HOURS: "Hours";
342
- readonly MINUTES: "Minutes";
343
- readonly SECONDS: "Seconds";
344
- readonly WEEKS: "Weeks";
345
- };
346
- /**
347
- * @public
348
- */
349
- export type TtlDurationUnit = (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
350
232
  /**
351
233
  * <p>Time to live duration, where the record is hard deleted after the expiration time is
352
234
  * reached; <code>ExpiresAt</code> = <code>EventTime</code> + <code>TtlDuration</code>. For
@@ -4,5 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { SageMakerFeatureStoreRuntimeExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
- export * from "./models";
7
+ export * from "./models/enums";
8
+ export * from "./models/errors";
9
+ export * from "./models/models_0";
8
10
  export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
@@ -0,0 +1,25 @@
1
+ export declare const ExpirationTimeResponse: {
2
+ readonly DISABLED: "Disabled";
3
+ readonly ENABLED: "Enabled";
4
+ };
5
+ export type ExpirationTimeResponse =
6
+ (typeof ExpirationTimeResponse)[keyof typeof ExpirationTimeResponse];
7
+ export declare const DeletionMode: {
8
+ readonly HARD_DELETE: "HardDelete";
9
+ readonly SOFT_DELETE: "SoftDelete";
10
+ };
11
+ export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
12
+ export declare const TargetStore: {
13
+ readonly OFFLINE_STORE: "OfflineStore";
14
+ readonly ONLINE_STORE: "OnlineStore";
15
+ };
16
+ export type TargetStore = (typeof TargetStore)[keyof typeof TargetStore];
17
+ export declare const TtlDurationUnit: {
18
+ readonly DAYS: "Days";
19
+ readonly HOURS: "Hours";
20
+ readonly MINUTES: "Minutes";
21
+ readonly SECONDS: "Seconds";
22
+ readonly WEEKS: "Weeks";
23
+ };
24
+ export type TtlDurationUnit =
25
+ (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
@@ -0,0 +1,32 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
+ export declare class AccessForbidden extends __BaseException {
4
+ readonly name: "AccessForbidden";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
8
+ }
9
+ export declare class InternalFailure extends __BaseException {
10
+ readonly name: "InternalFailure";
11
+ readonly $fault: "server";
12
+ Message?: string | undefined;
13
+ constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
14
+ }
15
+ export declare class ServiceUnavailable extends __BaseException {
16
+ readonly name: "ServiceUnavailable";
17
+ readonly $fault: "server";
18
+ Message?: string | undefined;
19
+ constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
20
+ }
21
+ export declare class ValidationError extends __BaseException {
22
+ readonly name: "ValidationError";
23
+ readonly $fault: "client";
24
+ Message?: string | undefined;
25
+ constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
26
+ }
27
+ export declare class ResourceNotFound extends __BaseException {
28
+ readonly name: "ResourceNotFound";
29
+ readonly $fault: "client";
30
+ Message?: string | undefined;
31
+ constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
32
+ }
@@ -1,17 +1,9 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
- import { SageMakerFeatureStoreRuntimeServiceException as __BaseException } from "./SageMakerFeatureStoreRuntimeServiceException";
3
- export declare class AccessForbidden extends __BaseException {
4
- readonly name: "AccessForbidden";
5
- readonly $fault: "client";
6
- Message?: string | undefined;
7
- constructor(opts: __ExceptionOptionType<AccessForbidden, __BaseException>);
8
- }
9
- export declare const ExpirationTimeResponse: {
10
- readonly DISABLED: "Disabled";
11
- readonly ENABLED: "Enabled";
12
- };
13
- export type ExpirationTimeResponse =
14
- (typeof ExpirationTimeResponse)[keyof typeof ExpirationTimeResponse];
1
+ import {
2
+ DeletionMode,
3
+ ExpirationTimeResponse,
4
+ TargetStore,
5
+ TtlDurationUnit,
6
+ } from "./enums";
15
7
  export interface BatchGetRecordIdentifier {
16
8
  FeatureGroupName: string | undefined;
17
9
  RecordIdentifiersValueAsString: string[] | undefined;
@@ -43,34 +35,6 @@ export interface BatchGetRecordResponse {
43
35
  Errors: BatchGetRecordError[] | undefined;
44
36
  UnprocessedIdentifiers: BatchGetRecordIdentifier[] | undefined;
45
37
  }
46
- export declare class InternalFailure extends __BaseException {
47
- readonly name: "InternalFailure";
48
- readonly $fault: "server";
49
- Message?: string | undefined;
50
- constructor(opts: __ExceptionOptionType<InternalFailure, __BaseException>);
51
- }
52
- export declare class ServiceUnavailable extends __BaseException {
53
- readonly name: "ServiceUnavailable";
54
- readonly $fault: "server";
55
- Message?: string | undefined;
56
- constructor(opts: __ExceptionOptionType<ServiceUnavailable, __BaseException>);
57
- }
58
- export declare class ValidationError extends __BaseException {
59
- readonly name: "ValidationError";
60
- readonly $fault: "client";
61
- Message?: string | undefined;
62
- constructor(opts: __ExceptionOptionType<ValidationError, __BaseException>);
63
- }
64
- export declare const DeletionMode: {
65
- readonly HARD_DELETE: "HardDelete";
66
- readonly SOFT_DELETE: "SoftDelete";
67
- };
68
- export type DeletionMode = (typeof DeletionMode)[keyof typeof DeletionMode];
69
- export declare const TargetStore: {
70
- readonly OFFLINE_STORE: "OfflineStore";
71
- readonly ONLINE_STORE: "OnlineStore";
72
- };
73
- export type TargetStore = (typeof TargetStore)[keyof typeof TargetStore];
74
38
  export interface DeleteRecordRequest {
75
39
  FeatureGroupName: string | undefined;
76
40
  RecordIdentifierValueAsString: string | undefined;
@@ -88,21 +52,6 @@ export interface GetRecordResponse {
88
52
  Record?: FeatureValue[] | undefined;
89
53
  ExpiresAt?: string | undefined;
90
54
  }
91
- export declare class ResourceNotFound extends __BaseException {
92
- readonly name: "ResourceNotFound";
93
- readonly $fault: "client";
94
- Message?: string | undefined;
95
- constructor(opts: __ExceptionOptionType<ResourceNotFound, __BaseException>);
96
- }
97
- export declare const TtlDurationUnit: {
98
- readonly DAYS: "Days";
99
- readonly HOURS: "Hours";
100
- readonly MINUTES: "Minutes";
101
- readonly SECONDS: "Seconds";
102
- readonly WEEKS: "Weeks";
103
- };
104
- export type TtlDurationUnit =
105
- (typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
106
55
  export interface TtlDuration {
107
56
  Unit: TtlDurationUnit | undefined;
108
57
  Value: number | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker-featurestore-runtime",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Featurestore Runtime Client for Node.js, Browser and React Native",
4
- "version": "3.933.0",
4
+ "version": "3.935.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-sagemaker-featurestore-runtime",
@@ -20,38 +20,38 @@
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.932.0",
24
- "@aws-sdk/credential-provider-node": "3.933.0",
23
+ "@aws-sdk/core": "3.935.0",
24
+ "@aws-sdk/credential-provider-node": "3.935.0",
25
25
  "@aws-sdk/middleware-host-header": "3.930.0",
26
26
  "@aws-sdk/middleware-logger": "3.930.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.933.0",
28
- "@aws-sdk/middleware-user-agent": "3.932.0",
28
+ "@aws-sdk/middleware-user-agent": "3.935.0",
29
29
  "@aws-sdk/region-config-resolver": "3.930.0",
30
30
  "@aws-sdk/types": "3.930.0",
31
31
  "@aws-sdk/util-endpoints": "3.930.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.930.0",
33
- "@aws-sdk/util-user-agent-node": "3.932.0",
33
+ "@aws-sdk/util-user-agent-node": "3.935.0",
34
34
  "@smithy/config-resolver": "^4.4.3",
35
- "@smithy/core": "^3.18.2",
35
+ "@smithy/core": "^3.18.5",
36
36
  "@smithy/fetch-http-handler": "^5.3.6",
37
37
  "@smithy/hash-node": "^4.2.5",
38
38
  "@smithy/invalid-dependency": "^4.2.5",
39
39
  "@smithy/middleware-content-length": "^4.2.5",
40
- "@smithy/middleware-endpoint": "^4.3.9",
41
- "@smithy/middleware-retry": "^4.4.9",
42
- "@smithy/middleware-serde": "^4.2.5",
40
+ "@smithy/middleware-endpoint": "^4.3.12",
41
+ "@smithy/middleware-retry": "^4.4.12",
42
+ "@smithy/middleware-serde": "^4.2.6",
43
43
  "@smithy/middleware-stack": "^4.2.5",
44
44
  "@smithy/node-config-provider": "^4.3.5",
45
45
  "@smithy/node-http-handler": "^4.4.5",
46
46
  "@smithy/protocol-http": "^5.3.5",
47
- "@smithy/smithy-client": "^4.9.5",
47
+ "@smithy/smithy-client": "^4.9.8",
48
48
  "@smithy/types": "^4.9.0",
49
49
  "@smithy/url-parser": "^4.2.5",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.8",
54
- "@smithy/util-defaults-mode-node": "^4.2.11",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.11",
54
+ "@smithy/util-defaults-mode-node": "^4.2.14",
55
55
  "@smithy/util-endpoints": "^3.2.5",
56
56
  "@smithy/util-middleware": "^4.2.5",
57
57
  "@smithy/util-retry": "^4.2.5",
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";
@@ -1 +0,0 @@
1
- export * from "./models_0";