Skip to content

Commit

Permalink
feat(clients): update client endpoints as of 2022-05-24
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed May 24, 2022
1 parent 6ee832d commit 92f1e36
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 2 deletions.
18 changes: 18 additions & 0 deletions clients/client-pinpoint-email/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {
"us-east-1": {
variants: [
{
hostname: "email-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-gov-west-1": {
variants: [
{
Expand All @@ -11,6 +19,14 @@ const regionHash: RegionHash = {
},
],
},
"us-west-2": {
variants: [
{
hostname: "email-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
],
},
};

const partitionHash: PartitionHash = {
Expand All @@ -32,6 +48,8 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-west-2",
"me-south-1",
"sa-east-1",
"us-east-1",
Expand Down
18 changes: 18 additions & 0 deletions clients/client-ses/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {
"us-east-1": {
variants: [
{
hostname: "email-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-gov-west-1": {
variants: [
{
Expand All @@ -11,6 +19,14 @@ const regionHash: RegionHash = {
},
],
},
"us-west-2": {
variants: [
{
hostname: "email-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
],
},
};

const partitionHash: PartitionHash = {
Expand All @@ -32,6 +48,8 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-west-2",
"me-south-1",
"sa-east-1",
"us-east-1",
Expand Down
18 changes: 18 additions & 0 deletions clients/client-sesv2/src/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ import { getRegionInfo, PartitionHash, RegionHash } from "@aws-sdk/config-resolv
import { RegionInfoProvider, RegionInfoProviderOptions } from "@aws-sdk/types";

const regionHash: RegionHash = {
"us-east-1": {
variants: [
{
hostname: "email-fips.us-east-1.amazonaws.com",
tags: ["fips"],
},
],
},
"us-gov-west-1": {
variants: [
{
Expand All @@ -11,6 +19,14 @@ const regionHash: RegionHash = {
},
],
},
"us-west-2": {
variants: [
{
hostname: "email-fips.us-west-2.amazonaws.com",
tags: ["fips"],
},
],
},
};

const partitionHash: PartitionHash = {
Expand All @@ -32,6 +48,8 @@ const partitionHash: PartitionHash = {
"eu-west-1",
"eu-west-2",
"eu-west-3",
"fips-us-east-1",
"fips-us-west-2",
"me-south-1",
"sa-east-1",
"us-east-1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5292,12 +5292,54 @@
},
"email": {
"endpoints": {
"af-south-1": {},
"ap-northeast-1": {},
"ap-northeast-2": {},
"ap-northeast-3": {},
"ap-south-1": {},
"ap-southeast-1": {},
"ap-southeast-2": {},
"ca-central-1": {},
"eu-central-1": {},
"eu-north-1": {},
"eu-south-1": {},
"eu-west-1": {},
"us-east-1": {},
"us-west-2": {}
"eu-west-2": {},
"eu-west-3": {},
"fips-us-east-1": {
"credentialScope": {
"region": "us-east-1"
},
"deprecated": true,
"hostname": "email-fips.us-east-1.amazonaws.com"
},
"fips-us-west-2": {
"credentialScope": {
"region": "us-west-2"
},
"deprecated": true,
"hostname": "email-fips.us-west-2.amazonaws.com"
},
"me-south-1": {},
"sa-east-1": {},
"us-east-1": {
"variants": [
{
"hostname": "email-fips.us-east-1.amazonaws.com",
"tags": ["fips"]
}
]
},
"us-east-2": {},
"us-west-1": {},
"us-west-2": {
"variants": [
{
"hostname": "email-fips.us-west-2.amazonaws.com",
"tags": ["fips"]
}
]
}
}
},
"emr-containers": {
Expand Down

0 comments on commit 92f1e36

Please sign in to comment.