UNPKG

788 BTypeScriptView Raw
1import { FinalizeRequestMiddleware, Pluggable, RelativeMiddlewareOptions } from "@smithy/types";
2import { AwsAuthResolvedConfig } from "./awsAuthConfiguration";
3/**
4 * @deprecated only used in legacy auth.
5 */
6export declare const awsAuthMiddleware: <Input extends object, Output extends object>(options: AwsAuthResolvedConfig) => FinalizeRequestMiddleware<Input, Output>;
7/**
8 * @deprecated only used in legacy auth.
9 */
10export declare const awsAuthMiddlewareOptions: RelativeMiddlewareOptions;
11/**
12 * @deprecated only used in legacy auth.
13 */
14export declare const getAwsAuthPlugin: (options: AwsAuthResolvedConfig) => Pluggable<any, any>;
15/**
16 * @deprecated only used in legacy auth.
17 */
18export declare const getSigV4AuthPlugin: (options: AwsAuthResolvedConfig) => Pluggable<any, any>;