envilder
Version:
A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth
16 lines • 620 B
TypeScript
/**
* Thrown when the AWS SSO session for the active profile could not be loaded
* or has expired, so credentials cannot be resolved.
*/
export declare class SsoSessionExpiredError extends Error {
readonly profileName?: string;
readonly cause?: unknown;
constructor(profileName?: string, cause?: unknown);
private static buildMessage;
}
/**
* Detects whether an unknown error represents an expired or unresolved AWS SSO
* session, by inspecting its AWS error name.
*/
export declare function isSsoSessionExpiredError(error: unknown): boolean;
//# sourceMappingURL=sso-session-expired-error.d.ts.map