@aws-sdk/client-sagemaker-featurestore-runtime 3.422.1 → 3.423.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.
@@ -1,22 +1,33 @@
1
- import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
- /**
3
- * @public
4
- */
5
- export interface ClientInputEndpointParameters {
6
- region?: string | Provider<string>;
7
- useDualstackEndpoint?: boolean | Provider<boolean>;
8
- useFipsEndpoint?: boolean | Provider<boolean>;
9
- endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
- }
11
- export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
- defaultSigningName: string;
13
- };
14
- export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
- defaultSigningName: string;
16
- };
17
- export interface EndpointParameters extends __EndpointParameters {
18
- Region?: string;
19
- UseDualStack?: boolean;
20
- UseFIPS?: boolean;
21
- Endpoint?: string;
22
- }
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export interface EndpointParameters extends __EndpointParameters {
29
+ Region?: string;
30
+ UseDualStack?: boolean;
31
+ UseFIPS?: boolean;
32
+ Endpoint?: string;
33
+ }
@@ -1,5 +1,8 @@
1
- import { EndpointV2, Logger } from "@smithy/types";
2
- import { EndpointParameters } from "./EndpointParameters";
3
- export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
- logger?: Logger;
5
- }) => EndpointV2;
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -1,2 +1,2 @@
1
- import { RuleSetObject } from "@smithy/types";
2
- export declare const ruleSet: RuleSetObject;
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -1,8 +1,7 @@
1
- import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
- import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
- import { DefaultExtensionConfiguration } from "@smithy/types";
4
- /**
5
- * @internal
6
- */
7
- export interface SageMakerFeatureStoreRuntimeExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration {
8
- }
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ export interface SageMakerFeatureStoreRuntimeExtensionConfiguration
5
+ extends HttpHandlerExtensionConfiguration,
6
+ DefaultExtensionConfiguration,
7
+ AwsRegionExtensionConfiguration {}
@@ -1,37 +1,6 @@
1
- /**
2
- * <p>Contains all data plane API operations and data types for the Amazon SageMaker Feature
3
- * Store. Use this API to put, delete, and retrieve (get) features from a feature
4
- * store.</p>
5
- * <p>Use the following operations to configure your <code>OnlineStore</code> and
6
- * <code>OfflineStore</code> features, and to create and manage feature groups:</p>
7
- * <ul>
8
- * <li>
9
- * <p>
10
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateFeatureGroup.html">CreateFeatureGroup</a>
11
- * </p>
12
- * </li>
13
- * <li>
14
- * <p>
15
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteFeatureGroup.html">DeleteFeatureGroup</a>
16
- * </p>
17
- * </li>
18
- * <li>
19
- * <p>
20
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeFeatureGroup.html">DescribeFeatureGroup</a>
21
- * </p>
22
- * </li>
23
- * <li>
24
- * <p>
25
- * <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_ListFeatureGroups.html">ListFeatureGroups</a>
26
- * </p>
27
- * </li>
28
- * </ul>
29
- *
30
- * @packageDocumentation
31
- */
32
- export * from "./SageMakerFeatureStoreRuntimeClient";
33
- export * from "./SageMakerFeatureStoreRuntime";
34
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
35
- export * from "./commands";
36
- export * from "./models";
37
- export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
1
+ export * from "./SageMakerFeatureStoreRuntimeClient";
2
+ export * from "./SageMakerFeatureStoreRuntime";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export * from "./commands";
5
+ export * from "./models";
6
+ export { SageMakerFeatureStoreRuntimeServiceException } from "./models/SageMakerFeatureStoreRuntimeServiceException";
@@ -1,13 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
- export { __ServiceException, __ServiceExceptionOptions };
3
- /**
4
- * @public
5
- *
6
- * Base exception class for all service exceptions from SageMakerFeatureStoreRuntime service.
7
- */
8
- export declare class SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
9
- /**
10
- * @internal
11
- */
12
- constructor(options: __ServiceExceptionOptions);
13
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceException, __ServiceExceptionOptions };
6
+ export declare class SageMakerFeatureStoreRuntimeServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";