UNPKG

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

14 lines 537 B
/** * Thrown when an AWS request fails because the credentials or security token * are expired or invalid (for example, an expired SSO session). */ export declare class ExpiredCredentialsError extends Error { readonly cause?: unknown; constructor(cause?: unknown); } /** * Detects whether an unknown error represents expired or invalid AWS * credentials, by inspecting its AWS error name. */ export declare function isExpiredCredentialsError(error: unknown): boolean; //# sourceMappingURL=expired-credentials-error.d.ts.map