@aws-sdk/client-sagemaker-featurestore-runtime 3.428.0 → 3.429.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.
|
@@ -67,7 +67,7 @@ export interface BatchGetRecordRequest {
|
|
|
67
67
|
* not null. If <code>Disabled</code> and null, <code>BatchGetRecord</code> will return
|
|
68
68
|
* null.</p>
|
|
69
69
|
*/
|
|
70
|
-
ExpirationTimeResponse?: ExpirationTimeResponse
|
|
70
|
+
ExpirationTimeResponse?: ExpirationTimeResponse;
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
* @public
|
|
@@ -266,13 +266,13 @@ export interface DeleteRecordRequest {
|
|
|
266
266
|
* deletes the record from all of the stores that you're using for the
|
|
267
267
|
* <code>FeatureGroup</code>.</p>
|
|
268
268
|
*/
|
|
269
|
-
TargetStores?:
|
|
269
|
+
TargetStores?: TargetStore[];
|
|
270
270
|
/**
|
|
271
271
|
* @public
|
|
272
272
|
* <p>The name of the deletion mode for deleting the record. By default, the deletion mode is
|
|
273
273
|
* set to <code>SoftDelete</code>.</p>
|
|
274
274
|
*/
|
|
275
|
-
DeletionMode?: DeletionMode
|
|
275
|
+
DeletionMode?: DeletionMode;
|
|
276
276
|
}
|
|
277
277
|
/**
|
|
278
278
|
* @public
|
|
@@ -302,7 +302,7 @@ export interface GetRecordRequest {
|
|
|
302
302
|
* <code>GetRecord</code> will return the value of <code>ExpiresAt</code>, if it is not
|
|
303
303
|
* null. If <code>Disabled</code> and null, <code>GetRecord</code> will return null.</p>
|
|
304
304
|
*/
|
|
305
|
-
ExpirationTimeResponse?: ExpirationTimeResponse
|
|
305
|
+
ExpirationTimeResponse?: ExpirationTimeResponse;
|
|
306
306
|
}
|
|
307
307
|
/**
|
|
308
308
|
* @public
|
|
@@ -359,7 +359,7 @@ export interface TtlDuration {
|
|
|
359
359
|
* <p>
|
|
360
360
|
* <code>TtlDuration</code> time unit.</p>
|
|
361
361
|
*/
|
|
362
|
-
Unit: TtlDurationUnit |
|
|
362
|
+
Unit: TtlDurationUnit | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* @public
|
|
365
365
|
* <p>
|
|
@@ -399,7 +399,7 @@ export interface PutRecordRequest {
|
|
|
399
399
|
* <p>A list of stores to which you're adding the record. By default, Feature Store adds the
|
|
400
400
|
* record to all of the stores that you're using for the <code>FeatureGroup</code>.</p>
|
|
401
401
|
*/
|
|
402
|
-
TargetStores?:
|
|
402
|
+
TargetStores?: TargetStore[];
|
|
403
403
|
/**
|
|
404
404
|
* @public
|
|
405
405
|
* <p>Time to live duration, where the record is hard deleted after the expiration time is
|
|
@@ -19,7 +19,7 @@ export interface BatchGetRecordIdentifier {
|
|
|
19
19
|
}
|
|
20
20
|
export interface BatchGetRecordRequest {
|
|
21
21
|
Identifiers: BatchGetRecordIdentifier[] | undefined;
|
|
22
|
-
ExpirationTimeResponse?: ExpirationTimeResponse
|
|
22
|
+
ExpirationTimeResponse?: ExpirationTimeResponse;
|
|
23
23
|
}
|
|
24
24
|
export interface BatchGetRecordError {
|
|
25
25
|
FeatureGroupName: string | undefined;
|
|
@@ -75,14 +75,14 @@ export interface DeleteRecordRequest {
|
|
|
75
75
|
FeatureGroupName: string | undefined;
|
|
76
76
|
RecordIdentifierValueAsString: string | undefined;
|
|
77
77
|
EventTime: string | undefined;
|
|
78
|
-
TargetStores?:
|
|
79
|
-
DeletionMode?: DeletionMode
|
|
78
|
+
TargetStores?: TargetStore[];
|
|
79
|
+
DeletionMode?: DeletionMode;
|
|
80
80
|
}
|
|
81
81
|
export interface GetRecordRequest {
|
|
82
82
|
FeatureGroupName: string | undefined;
|
|
83
83
|
RecordIdentifierValueAsString: string | undefined;
|
|
84
84
|
FeatureNames?: string[];
|
|
85
|
-
ExpirationTimeResponse?: ExpirationTimeResponse
|
|
85
|
+
ExpirationTimeResponse?: ExpirationTimeResponse;
|
|
86
86
|
}
|
|
87
87
|
export interface GetRecordResponse {
|
|
88
88
|
Record?: FeatureValue[];
|
|
@@ -104,12 +104,12 @@ export declare const TtlDurationUnit: {
|
|
|
104
104
|
export type TtlDurationUnit =
|
|
105
105
|
(typeof TtlDurationUnit)[keyof typeof TtlDurationUnit];
|
|
106
106
|
export interface TtlDuration {
|
|
107
|
-
Unit: TtlDurationUnit |
|
|
107
|
+
Unit: TtlDurationUnit | undefined;
|
|
108
108
|
Value: number | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface PutRecordRequest {
|
|
111
111
|
FeatureGroupName: string | undefined;
|
|
112
112
|
Record: FeatureValue[] | undefined;
|
|
113
|
-
TargetStores?:
|
|
113
|
+
TargetStores?: TargetStore[];
|
|
114
114
|
TtlDuration?: TtlDuration;
|
|
115
115
|
}
|
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.
|
|
4
|
+
"version": "3.429.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
42
|
"@smithy/middleware-retry": "^2.0.16",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|