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.
18 lines (17 loc) • 370 B
TypeScript
import { TokenIdentity } from "./identity";
import { Provider } from "./util";
/**
* @public
*
* An object representing temporary or permanent AWS token.
*
* @deprecated Use {@link TokenIdentity}
*/
export interface Token extends TokenIdentity {
}
/**
* @public
*
* @deprecated Use {@link TokenIdentityProvider}
*/
export type TokenProvider = Provider<Token>;