@aws-sdk/config-resolver
Version:
[](https://www.npmjs.com/package/@aws-sdk/config-resolver) [](https://www.npmjs.com/package/@aws-sd
13 lines (12 loc) • 356 B
TypeScript
import { EndpointVariant } from "./EndpointVariant";
/**
* @internal
*
* The hash of region with the information specific to that region.
* The information can include hostname, signingService and signingRegion.
*/
export type RegionHash = Record<string, {
variants: EndpointVariant[];
signingService?: string;
signingRegion?: string;
}>;