UNPKG

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