UNPKG

431 BTypeScriptView Raw
1import { EndpointVariant } from "./EndpointVariant";
2/**
3 * @internal
4 *
5 * The hash of partition with the information specific to that partition.
6 * The information includes the list of regions belonging to that partition,
7 * and the hostname to be used for the partition.
8 */
9export type PartitionHash = Record<string, {
10 regions: string[];
11 regionRegex: string;
12 variants: EndpointVariant[];
13 endpoint?: string;
14}>;