@aws-sdk/client-sagemaker-featurestore-runtime 3.421.0 → 3.422.1
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/commands/BatchGetRecordCommand.d.ts +4 -1
- package/dist-types/commands/GetRecordCommand.d.ts +4 -1
- package/dist-types/commands/PutRecordCommand.d.ts +4 -1
- package/dist-types/models/models_0.d.ts +14 -3
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +64 -75
- package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +197 -145
- package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +131 -38
- package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +115 -33
- package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +105 -35
- package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +115 -33
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +22 -33
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +5 -8
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -2
- package/dist-types/ts3.4/extensionConfiguration.d.ts +8 -7
- package/dist-types/ts3.4/index.d.ts +37 -6
- package/dist-types/ts3.4/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +13 -8
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +410 -114
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +38 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +46 -99
- package/dist-types/ts3.4/runtimeConfig.d.ts +46 -99
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +45 -90
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -21
- package/dist-types/ts3.4/runtimeExtensions.d.ts +17 -13
- package/package.json +1 -1
|
@@ -54,7 +54,10 @@ export interface BatchGetRecordCommandOutput extends BatchGetRecordResponse, __M
|
|
|
54
54
|
* // Record: [ // Record // required
|
|
55
55
|
* // { // FeatureValue
|
|
56
56
|
* // FeatureName: "STRING_VALUE", // required
|
|
57
|
-
* // ValueAsString: "STRING_VALUE",
|
|
57
|
+
* // ValueAsString: "STRING_VALUE",
|
|
58
|
+
* // ValueAsStringList: [ // ValueAsStringList
|
|
59
|
+
* // "STRING_VALUE",
|
|
60
|
+
* // ],
|
|
58
61
|
* // },
|
|
59
62
|
* // ],
|
|
60
63
|
* // ExpiresAt: "STRING_VALUE",
|
|
@@ -46,7 +46,10 @@ export interface GetRecordCommandOutput extends GetRecordResponse, __MetadataBea
|
|
|
46
46
|
* // Record: [ // Record
|
|
47
47
|
* // { // FeatureValue
|
|
48
48
|
* // FeatureName: "STRING_VALUE", // required
|
|
49
|
-
* // ValueAsString: "STRING_VALUE",
|
|
49
|
+
* // ValueAsString: "STRING_VALUE",
|
|
50
|
+
* // ValueAsStringList: [ // ValueAsStringList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
50
53
|
* // },
|
|
51
54
|
* // ],
|
|
52
55
|
* // ExpiresAt: "STRING_VALUE",
|
|
@@ -50,7 +50,10 @@ export interface PutRecordCommandOutput extends __MetadataBearer {
|
|
|
50
50
|
* Record: [ // Record // required
|
|
51
51
|
* { // FeatureValue
|
|
52
52
|
* FeatureName: "STRING_VALUE", // required
|
|
53
|
-
* ValueAsString: "STRING_VALUE",
|
|
53
|
+
* ValueAsString: "STRING_VALUE",
|
|
54
|
+
* ValueAsStringList: [ // ValueAsStringList
|
|
55
|
+
* "STRING_VALUE",
|
|
56
|
+
* ],
|
|
54
57
|
* },
|
|
55
58
|
* ],
|
|
56
59
|
* TargetStores: [ // TargetStores
|
|
@@ -111,10 +111,21 @@ export interface FeatureValue {
|
|
|
111
111
|
FeatureName: string | undefined;
|
|
112
112
|
/**
|
|
113
113
|
* @public
|
|
114
|
-
* <p>The value associated with a feature
|
|
115
|
-
*
|
|
114
|
+
* <p>The value in string format associated with a feature. Used when your
|
|
115
|
+
* <code>CollectionType</code> is <code>None</code>. Note that features types can be
|
|
116
|
+
* <code>String</code>, <code>Integral</code>, or <code>Fractional</code>. This value
|
|
117
|
+
* represents all three types as a string.</p>
|
|
116
118
|
*/
|
|
117
|
-
ValueAsString
|
|
119
|
+
ValueAsString?: string;
|
|
120
|
+
/**
|
|
121
|
+
* @public
|
|
122
|
+
* <p>The list of values in string format associated with a feature. Used when your
|
|
123
|
+
* <code>CollectionType</code> is a <code>List</code>, <code>Set</code>, or
|
|
124
|
+
* <code>Vector</code>. Note that features types can be <code>String</code>,
|
|
125
|
+
* <code>Integral</code>, or <code>Fractional</code>. These values represents all three
|
|
126
|
+
* types as a string.</p>
|
|
127
|
+
*/
|
|
128
|
+
ValueAsStringList?: string[];
|
|
118
129
|
}
|
|
119
130
|
/**
|
|
120
131
|
* @public
|
|
@@ -1,75 +1,64 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
} from "./commands/
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
args:
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
args:
|
|
30
|
-
|
|
31
|
-
cb: (err: any, data?:
|
|
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
|
-
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
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/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
|
+
export interface SageMakerFeatureStoreRuntime {
|
|
8
|
+
/**
|
|
9
|
+
* @see {@link BatchGetRecordCommand}
|
|
10
|
+
*/
|
|
11
|
+
batchGetRecord(args: BatchGetRecordCommandInput, options?: __HttpHandlerOptions): Promise<BatchGetRecordCommandOutput>;
|
|
12
|
+
batchGetRecord(args: BatchGetRecordCommandInput, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
|
|
13
|
+
batchGetRecord(args: BatchGetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchGetRecordCommandOutput) => void): void;
|
|
14
|
+
/**
|
|
15
|
+
* @see {@link DeleteRecordCommand}
|
|
16
|
+
*/
|
|
17
|
+
deleteRecord(args: DeleteRecordCommandInput, options?: __HttpHandlerOptions): Promise<DeleteRecordCommandOutput>;
|
|
18
|
+
deleteRecord(args: DeleteRecordCommandInput, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
|
|
19
|
+
deleteRecord(args: DeleteRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteRecordCommandOutput) => void): void;
|
|
20
|
+
/**
|
|
21
|
+
* @see {@link GetRecordCommand}
|
|
22
|
+
*/
|
|
23
|
+
getRecord(args: GetRecordCommandInput, options?: __HttpHandlerOptions): Promise<GetRecordCommandOutput>;
|
|
24
|
+
getRecord(args: GetRecordCommandInput, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
|
|
25
|
+
getRecord(args: GetRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetRecordCommandOutput) => void): void;
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link PutRecordCommand}
|
|
28
|
+
*/
|
|
29
|
+
putRecord(args: PutRecordCommandInput, options?: __HttpHandlerOptions): Promise<PutRecordCommandOutput>;
|
|
30
|
+
putRecord(args: PutRecordCommandInput, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
31
|
+
putRecord(args: PutRecordCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutRecordCommandOutput) => void): void;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @public
|
|
35
|
+
* <p>Contains all data plane API operations and data types for the Amazon SageMaker Feature
|
|
36
|
+
* Store. Use this API to put, delete, and retrieve (get) features from a feature
|
|
37
|
+
* store.</p>
|
|
38
|
+
* <p>Use the following operations to configure your <code>OnlineStore</code> and
|
|
39
|
+
* <code>OfflineStore</code> features, and to create and manage feature groups:</p>
|
|
40
|
+
* <ul>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>
|
|
43
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a>
|
|
44
|
+
* </p>
|
|
45
|
+
* </li>
|
|
46
|
+
* <li>
|
|
47
|
+
* <p>
|
|
48
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a>
|
|
49
|
+
* </p>
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p>
|
|
53
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a>
|
|
54
|
+
* </p>
|
|
55
|
+
* </li>
|
|
56
|
+
* <li>
|
|
57
|
+
* <p>
|
|
58
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a>
|
|
59
|
+
* </p>
|
|
60
|
+
* </li>
|
|
61
|
+
* </ul>
|
|
62
|
+
*/
|
|
63
|
+
export declare class SageMakerFeatureStoreRuntime extends SageMakerFeatureStoreRuntimeClient implements SageMakerFeatureStoreRuntime {
|
|
64
|
+
}
|
|
@@ -1,145 +1,197 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
} from "@aws-sdk/
|
|
5
|
-
import {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} from "@
|
|
9
|
-
import {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
} from "
|
|
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
|
-
|
|
1
|
+
import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
|
|
2
|
+
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
3
|
+
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
4
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
5
|
+
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/config-resolver";
|
|
6
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-endpoint";
|
|
7
|
+
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
8
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
9
|
+
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
10
|
+
import { 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";
|
|
11
|
+
import { BatchGetRecordCommandInput, BatchGetRecordCommandOutput } from "./commands/BatchGetRecordCommand";
|
|
12
|
+
import { DeleteRecordCommandInput, DeleteRecordCommandOutput } from "./commands/DeleteRecordCommand";
|
|
13
|
+
import { GetRecordCommandInput, GetRecordCommandOutput } from "./commands/GetRecordCommand";
|
|
14
|
+
import { PutRecordCommandInput, PutRecordCommandOutput } from "./commands/PutRecordCommand";
|
|
15
|
+
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
16
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
17
|
+
export { __Client };
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export type ServiceInputTypes = BatchGetRecordCommandInput | DeleteRecordCommandInput | GetRecordCommandInput | PutRecordCommandInput;
|
|
22
|
+
/**
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export type ServiceOutputTypes = BatchGetRecordCommandOutput | DeleteRecordCommandOutput | GetRecordCommandOutput | PutRecordCommandOutput;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
30
|
+
/**
|
|
31
|
+
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
32
|
+
*/
|
|
33
|
+
requestHandler?: __HttpHandler;
|
|
34
|
+
/**
|
|
35
|
+
* A constructor for a class implementing the {@link @smithy/types#ChecksumConstructor} interface
|
|
36
|
+
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
37
|
+
* @internal
|
|
38
|
+
*/
|
|
39
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
40
|
+
/**
|
|
41
|
+
* The function that will be used to convert strings into HTTP endpoints.
|
|
42
|
+
* @internal
|
|
43
|
+
*/
|
|
44
|
+
urlParser?: __UrlParser;
|
|
45
|
+
/**
|
|
46
|
+
* A function that can calculate the length of a request body.
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
50
|
+
/**
|
|
51
|
+
* A function that converts a stream into an array of bytes.
|
|
52
|
+
* @internal
|
|
53
|
+
*/
|
|
54
|
+
streamCollector?: __StreamCollector;
|
|
55
|
+
/**
|
|
56
|
+
* The function that will be used to convert a base64-encoded string to a byte array.
|
|
57
|
+
* @internal
|
|
58
|
+
*/
|
|
59
|
+
base64Decoder?: __Decoder;
|
|
60
|
+
/**
|
|
61
|
+
* The function that will be used to convert binary data to a base64-encoded string.
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
64
|
+
base64Encoder?: __Encoder;
|
|
65
|
+
/**
|
|
66
|
+
* The function that will be used to convert a UTF8-encoded string to a byte array.
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
69
|
+
utf8Decoder?: __Decoder;
|
|
70
|
+
/**
|
|
71
|
+
* The function that will be used to convert binary data to a UTF-8 encoded string.
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
74
|
+
utf8Encoder?: __Encoder;
|
|
75
|
+
/**
|
|
76
|
+
* The runtime environment.
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
79
|
+
runtime?: string;
|
|
80
|
+
/**
|
|
81
|
+
* Disable dynamically changing the endpoint of the client based on the hostPrefix
|
|
82
|
+
* trait of an operation.
|
|
83
|
+
*/
|
|
84
|
+
disableHostPrefix?: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* Unique service identifier.
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
serviceId?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Enables IPv6/IPv4 dualstack endpoint.
|
|
92
|
+
*/
|
|
93
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
94
|
+
/**
|
|
95
|
+
* Enables FIPS compatible endpoints.
|
|
96
|
+
*/
|
|
97
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
98
|
+
/**
|
|
99
|
+
* The AWS region to which this client will send requests
|
|
100
|
+
*/
|
|
101
|
+
region?: string | __Provider<string>;
|
|
102
|
+
/**
|
|
103
|
+
* Default credentials provider; Not available in browser runtime.
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
106
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
107
|
+
/**
|
|
108
|
+
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
112
|
+
/**
|
|
113
|
+
* Value for how many times a request will be made at most in case of retry.
|
|
114
|
+
*/
|
|
115
|
+
maxAttempts?: number | __Provider<number>;
|
|
116
|
+
/**
|
|
117
|
+
* Specifies which retry algorithm to use.
|
|
118
|
+
*/
|
|
119
|
+
retryMode?: string | __Provider<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Optional logger for logging debug/info/warn/error.
|
|
122
|
+
*/
|
|
123
|
+
logger?: __Logger;
|
|
124
|
+
/**
|
|
125
|
+
* Optional extensions
|
|
126
|
+
*/
|
|
127
|
+
extensions?: RuntimeExtension[];
|
|
128
|
+
/**
|
|
129
|
+
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
130
|
+
*/
|
|
131
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
export type SageMakerFeatureStoreRuntimeClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
137
|
+
/**
|
|
138
|
+
* @public
|
|
139
|
+
*
|
|
140
|
+
* The configuration interface of SageMakerFeatureStoreRuntimeClient class constructor that set the region, credentials and other options.
|
|
141
|
+
*/
|
|
142
|
+
export interface SageMakerFeatureStoreRuntimeClientConfig extends SageMakerFeatureStoreRuntimeClientConfigType {
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
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
|
+
}
|