| 12 | export declare function secretsManagerParam<T>(path: string): SecretType<T>; |
| 13 | |
| 14 | export interface SecretsManagerOptions< |
| 15 | AwsSecretsManagerClient = SecretsManagerClient, |
| 16 | > extends Omit< |
| 17 | MiddyOptions<AwsSecretsManagerClient, SecretsManagerClientConfig>, |
| 18 | "fetchData" |
| 19 | > { |
| 20 | fetchData?: { [key: string]: string | SecretType<unknown> }; |
| 21 | fetchRotationDate?: boolean | Record<string, boolean>; |
| 22 | } |
| 23 | |
| 24 | export type Context<TOptions extends SecretsManagerOptions | undefined> = |
| 25 | TOptions extends { setToContext: true } |
nothing calls this directly
no outgoing calls
no test coverage detected