Skip to content

Commit 3df247b

Browse files
committed
chore(config-resolver): add optional signing region/service in RegionHash
1 parent 48b7a4c commit 3df247b

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/config-resolver/src/regionInfo/PartitionHash.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,12 @@
44
* and the hostname to be used for the partition.
55
*/
66
export type PartitionHash = {
7-
[key: string]: { regions: string[]; regionRegex: string; hostname?: string; endpoint?: string };
7+
[key: string]: {
8+
regions: string[];
9+
regionRegex: string;
10+
hostname?: string;
11+
endpoint?: string;
12+
signingRegion?: string;
13+
signingService?: string;
14+
};
815
};

0 commit comments

Comments
 (0)