UNPKG

serverless-spy

Version:

CDK-based library for writing elegant integration tests on AWS serverless architecture and an additional web console to monitor events in real time.

11 lines (10 loc) 401 B
import { ParsedIniData } from "@smithy/types"; export interface SsoSessionInit { /** * The path at which to locate the ini config file. Defaults to the value of * the `AWS_CONFIG_FILE` environment variable (if defined) or * `~/.aws/config` otherwise. */ configFilepath?: string; } export declare const loadSsoSessionData: (init?: SsoSessionInit) => Promise<ParsedIniData>;