Skip to content

Commit cae8d4c

Browse files
author
awstools
committed
feat(clients): update client endpoints as of 2022-09-15
1 parent a2d8893 commit cae8d4c

File tree

2 files changed

+82
-1
lines changed
  • clients/client-connectparticipant/src
  • codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen

2 files changed

+82
-1
lines changed

clients/client-connectparticipant/src/endpoints.ts

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,33 @@
22
import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolver";
33
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";
44

5-
const regionHash: RegionHash = {};
5+
const regionHash: RegionHash = {
6+
"us-east-1": {
7+
variants: [
8+
{
9+
hostname: "participant.connect-fips.us-east-1.amazonaws.com",
10+
tags: ["fips"],
11+
},
12+
],
13+
},
14+
"us-gov-west-1": {
15+
variants: [
16+
{
17+
hostname: "participant.connect.us-gov-west-1.amazonaws.com",
18+
tags: [],
19+
},
20+
],
21+
signingRegion: "us-gov-west-1",
22+
},
23+
"us-west-2": {
24+
variants: [
25+
{
26+
hostname: "participant.connect-fips.us-west-2.amazonaws.com",
27+
tags: ["fips"],
28+
},
29+
],
30+
},
31+
};
632

733
const partitionHash: PartitionHash = {
834
aws: {
@@ -23,6 +49,8 @@ const partitionHash: PartitionHash = {
2349
"eu-west-1",
2450
"eu-west-2",
2551
"eu-west-3",
52+
"fips-us-east-1",
53+
"fips-us-west-2",
2654
"me-central-1",
2755
"me-south-1",
2856
"sa-east-1",

codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen/endpoints.json

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10681,6 +10681,48 @@
1068110681
}
1068210682
}
1068310683
},
10684+
"participant.connect": {
10685+
"endpoints": {
10686+
"af-south-1": {},
10687+
"ap-northeast-1": {},
10688+
"ap-northeast-2": {},
10689+
"ap-southeast-1": {},
10690+
"ap-southeast-2": {},
10691+
"ca-central-1": {},
10692+
"eu-central-1": {},
10693+
"eu-west-2": {},
10694+
"fips-us-east-1": {
10695+
"credentialScope": {
10696+
"region": "us-east-1"
10697+
},
10698+
"deprecated": true,
10699+
"hostname": "participant.connect-fips.us-east-1.amazonaws.com"
10700+
},
10701+
"fips-us-west-2": {
10702+
"credentialScope": {
10703+
"region": "us-west-2"
10704+
},
10705+
"deprecated": true,
10706+
"hostname": "participant.connect-fips.us-west-2.amazonaws.com"
10707+
},
10708+
"us-east-1": {
10709+
"variants": [
10710+
{
10711+
"hostname": "participant.connect-fips.us-east-1.amazonaws.com",
10712+
"tags": ["fips"]
10713+
}
10714+
]
10715+
},
10716+
"us-west-2": {
10717+
"variants": [
10718+
{
10719+
"hostname": "participant.connect-fips.us-west-2.amazonaws.com",
10720+
"tags": ["fips"]
10721+
}
10722+
]
10723+
}
10724+
}
10725+
},
1068410726
"personalize": {
1068510727
"endpoints": {
1068610728
"ap-northeast-1": {},
@@ -13781,6 +13823,7 @@
1378113823
}
1378213824
]
1378313825
},
13826+
"ap-southeast-3": {},
1378413827
"ca-central-1": {
1378513828
"variants": [
1378613829
{
@@ -20302,6 +20345,16 @@
2030220345
}
2030320346
}
2030420347
},
20348+
"participant.connect": {
20349+
"endpoints": {
20350+
"us-gov-west-1": {
20351+
"credentialScope": {
20352+
"region": "us-gov-west-1"
20353+
},
20354+
"hostname": "participant.connect.us-gov-west-1.amazonaws.com"
20355+
}
20356+
}
20357+
},
2030520358
"pinpoint": {
2030620359
"defaults": {
2030720360
"credentialScope": {

0 commit comments

Comments
 (0)