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