@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.
Files changed (26) hide show
  1. package/dist-types/commands/BatchGetRecordCommand.d.ts +4 -1
  2. package/dist-types/commands/GetRecordCommand.d.ts +4 -1
  3. package/dist-types/commands/PutRecordCommand.d.ts +4 -1
  4. package/dist-types/models/models_0.d.ts +14 -3
  5. package/dist-types/ts3.4/SageMakerFeatureStoreRuntime.d.ts +64 -75
  6. package/dist-types/ts3.4/SageMakerFeatureStoreRuntimeClient.d.ts +197 -145
  7. package/dist-types/ts3.4/commands/BatchGetRecordCommand.d.ts +131 -38
  8. package/dist-types/ts3.4/commands/DeleteRecordCommand.d.ts +115 -33
  9. package/dist-types/ts3.4/commands/GetRecordCommand.d.ts +105 -35
  10. package/dist-types/ts3.4/commands/PutRecordCommand.d.ts +115 -33
  11. package/dist-types/ts3.4/commands/index.d.ts +4 -4
  12. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +22 -33
  13. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +5 -8
  14. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -2
  15. package/dist-types/ts3.4/extensionConfiguration.d.ts +8 -7
  16. package/dist-types/ts3.4/index.d.ts +37 -6
  17. package/dist-types/ts3.4/models/SageMakerFeatureStoreRuntimeServiceException.d.ts +13 -8
  18. package/dist-types/ts3.4/models/index.d.ts +1 -1
  19. package/dist-types/ts3.4/models/models_0.d.ts +410 -114
  20. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +38 -53
  21. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +46 -99
  22. package/dist-types/ts3.4/runtimeConfig.d.ts +46 -99
  23. package/dist-types/ts3.4/runtimeConfig.native.d.ts +45 -90
  24. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -21
  25. package/dist-types/ts3.4/runtimeExtensions.d.ts +17 -13
  26. 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", // required
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", // required
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", // required
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, in string format. Note that features types can be
115
- * String, Integral, or Fractional. This value represents all three types as a string.</p>
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: string | undefined;
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
- 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
+ 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
- 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
- }
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
+ }