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.
23 lines (22 loc) • 439 B
TypeScript
import { Profile } from "@smithy/types";
/**
* @internal
*
* Cached SSO token retrieved from SSO login flow.
*/
export interface SSOToken {
accessToken: string;
expiresAt: string;
region?: string;
startUrl?: string;
}
/**
* @internal
*/
export interface SsoProfile extends Profile {
sso_start_url: string;
sso_session?: string;
sso_account_id: string;
sso_region: string;
sso_role_name: string;
}