@smithy/types
Version:
[](https://www.npmjs.com/package/@smithy/types) [](https://www.npmjs.com/package/@smithy/types)
15 lines (14 loc) • 306 B
TypeScript
import type { Identity, IdentityProvider } from "../identity/identity";
/**
* @public
*/
export interface ApiKeyIdentity extends Identity {
/**
* The literal API Key
*/
readonly apiKey: string;
}
/**
* @public
*/
export type ApiKeyIdentityProvider = IdentityProvider<ApiKeyIdentity>;