UNPKG

356 BTypeScriptView Raw
1import { EndpointVariant } from "./EndpointVariant";
2/**
3 * @internal
4 *
5 * The hash of region with the information specific to that region.
6 * The information can include hostname, signingService and signingRegion.
7 */
8export type RegionHash = Record<string, {
9 variants: EndpointVariant[];
10 signingService?: string;
11 signingRegion?: string;
12}>;