@aws-sdk/types
Version:
Types for the AWS SDK
19 lines (18 loc) • 360 B
TypeScript
import { Identity, IdentityProvider } from "./Identity";
/**
* @public
*/
export interface LoginIdentity extends Identity {
/**
* Identity username
*/
readonly username: string;
/**
* Identity password
*/
readonly password: string;
}
/**
* @public
*/
export type LoginIdentityProvider = IdentityProvider<LoginIdentity>;