@aws-sdk/types
Version:
Types for the AWS SDK
12 lines (11 loc) • 348 B
TypeScript
import type { TokenIdentity } from "@smithy/types";
import type { AwsSdkTokenFeatures } from "../feature-ids";
export { TokenIdentity, TokenIdentityProvider } from "@smithy/types";
/**
* @public
*
* TokenIdentity with source attribution metadata.
*/
export type AttributedTokenIdentity = TokenIdentity & {
$source?: AwsSdkTokenFeatures;
};