From 0b66f2b22ab76a4e45fa1933cdb1062e5eadbb1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:15:18 +0000 Subject: [PATCH 01/22] Bump bandit[toml] from 1.7.5 to 1.7.8 Bumps [bandit[toml]](https://github.com/PyCQA/bandit) from 1.7.5 to 1.7.8. - [Release notes](https://github.com/PyCQA/bandit/releases) - [Commits](https://github.com/PyCQA/bandit/compare/1.7.5...1.7.8) --- updated-dependencies: - dependency-name: bandit[toml] dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements-lint.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-lint.txt b/requirements-lint.txt index 6cef8c2b69..5110684050 100644 --- a/requirements-lint.txt +++ b/requirements-lint.txt @@ -2,7 +2,7 @@ pep8==1.7.1 flake8==5.0.4 astroid==3.1.0; python_version >= '3.8' pylint==3.1.0; python_version >= '3.8' -bandit[toml]==1.7.5; python_version >= '3.7' +bandit[toml]==1.7.8; python_version >= '3.7' black==24.4.0; python_version >= '3.7' and implementation_name == "cpython" isort[pyproject]==5.12.0; python_version >= '3.8' pyupgrade==3.3.1 From a201a57d044d2dd085425ec961fac286eb7d62b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:30:41 +0000 Subject: [PATCH 02/22] Bump github/codeql-action from 2 to 3 Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2 to 3. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2...v3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 76f92e4051..e3cbafc756 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -34,12 +34,12 @@ jobs: uses: actions/checkout@master - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: ${{ matrix.language }} - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 From 7d7b4f9b5d2798b32662a7999555158f5a1bb14a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 17:58:44 +0000 Subject: [PATCH 03/22] Bump codecov/codecov-action from 4.3.0 to 4.4.1 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.3.0 to 4.4.1. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/84508663e988701840491b86de86b666e8a86bed...125fc84a9a348dbcf27191600683ec096ec9021c) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d37abff189..aebe0e99c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -150,7 +150,7 @@ jobs: tox -e coverage-ci - name: Upload Coverage to codecov.io - uses: codecov/codecov-action@84508663e988701840491b86de86b666e8a86bed # v4.3.0 + uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1 with: # We utilize secret for more realiable builds. Without secret being set, upload step # fails fairly often. From c3d5c3d83701e8b3d2e2c4e7d91467516a78ad0a Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Thu, 6 Jun 2024 10:37:51 +0200 Subject: [PATCH 04/22] Implements: #2015 --- libcloud/compute/drivers/openstack.py | 4 ++++ libcloud/test/compute/test_openstack.py | 1 + 2 files changed, 5 insertions(+) diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py index 360d32ebd0..d6df87bb3b 100644 --- a/libcloud/compute/drivers/openstack.py +++ b/libcloud/compute/drivers/openstack.py @@ -3160,6 +3160,10 @@ def _to_network(self, obj): extra["router:external"] = obj.get("router:external") if obj.get("subnets", None): extra["subnets"] = obj.get("subnets") + if obj.get("tags", None): + extra["tags"] = obj.get("tags") + if obj.get("is_default", None): + extra["is_default"] = obj.get("is_default") return OpenStackNetwork(id=obj["id"], name=obj["name"], cidr=None, driver=self, extra=extra) def ex_list_networks(self): diff --git a/libcloud/test/compute/test_openstack.py b/libcloud/test/compute/test_openstack.py index f81da0cdc7..7820a6657c 100644 --- a/libcloud/test/compute/test_openstack.py +++ b/libcloud/test/compute/test_openstack.py @@ -2121,6 +2121,7 @@ def test_ex_get_network(self): self.assertEqual(network.id, "cc2dad14-827a-feea-416b-f13e50511a0a") self.assertTrue(isinstance(network, OpenStackNetwork)) self.assertEqual(network.name, "net2") + self.assertEqual(network.extra["is_default"], False) def test_ex_list_subnets(self): subnets = self.driver.ex_list_subnets() From 0f8b7c82817dd025036369a715f85d7b0d798789 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Thu, 6 Jun 2024 10:45:33 +0200 Subject: [PATCH 05/22] Fix --- libcloud/compute/drivers/openstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py index d6df87bb3b..d5096b9728 100644 --- a/libcloud/compute/drivers/openstack.py +++ b/libcloud/compute/drivers/openstack.py @@ -3162,7 +3162,7 @@ def _to_network(self, obj): extra["subnets"] = obj.get("subnets") if obj.get("tags", None): extra["tags"] = obj.get("tags") - if obj.get("is_default", None): + if obj.get("is_default", None) is not None: extra["is_default"] = obj.get("is_default") return OpenStackNetwork(id=obj["id"], name=obj["name"], cidr=None, driver=self, extra=extra) From d16c45c2d8ea8d501f938faaa7e1c6162ae767be Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Thu, 6 Jun 2024 11:37:28 +0200 Subject: [PATCH 06/22] Add also description field --- libcloud/compute/drivers/openstack.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py index d5096b9728..38b7c64be3 100644 --- a/libcloud/compute/drivers/openstack.py +++ b/libcloud/compute/drivers/openstack.py @@ -3164,6 +3164,8 @@ def _to_network(self, obj): extra["tags"] = obj.get("tags") if obj.get("is_default", None) is not None: extra["is_default"] = obj.get("is_default") + if obj.get("description", None): + extra["description"] = obj.get("description") return OpenStackNetwork(id=obj["id"], name=obj["name"], cidr=None, driver=self, extra=extra) def ex_list_networks(self): From fefbdbf192a96e87dc4add1998e58ec774d0d019 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Wed, 29 May 2024 13:07:27 -0700 Subject: [PATCH 07/22] Update ec2 instance types, region details, and pricing Updated tox.ini to use python3.11 since Ubuntu 23.10 doesn't have python3.8 Ran: tox -escrape-ec2-sizes,scrape-ec2-prices Reverted tox.ini --- .../compute/constants/ec2_instance_types.py | 20615 ++++---- .../constants/ec2_region_details_complete.py | 1709 +- .../constants/ec2_region_details_partial.py | 50 +- libcloud/data/pricing.json | 43879 ++++++++++------ 4 files changed, 42179 insertions(+), 24074 deletions(-) diff --git a/libcloud/compute/constants/ec2_instance_types.py b/libcloud/compute/constants/ec2_instance_types.py index 524ade056c..c86a4feadb 100644 --- a/libcloud/compute/constants/ec2_instance_types.py +++ b/libcloud/compute/constants/ec2_instance_types.py @@ -22,7 +22,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", + "currentGeneration": "No", "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -43,11 +43,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "a1.2xlarge", "name": "a1.2xlarge", - "ram": 16384, + "ram": 16384 }, "a1.4xlarge": { "bandwidth": 10, @@ -56,7 +56,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", + "currentGeneration": "No", "dedicatedEbsThroughput": "3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -77,11 +77,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "a1.4xlarge", "name": "a1.4xlarge", - "ram": 32768, + "ram": 32768 }, "a1.large": { "bandwidth": 10, @@ -90,7 +90,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", + "currentGeneration": "No", "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -111,11 +111,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "a1.large", "name": "a1.large", - "ram": 4096, + "ram": 4096 }, "a1.medium": { "bandwidth": 10, @@ -124,7 +124,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", + "currentGeneration": "No", "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -145,11 +145,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "a1.medium", "name": "a1.medium", - "ram": 2048, + "ram": 2048 }, "a1.xlarge": { "bandwidth": 10, @@ -158,7 +158,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", + "currentGeneration": "No", "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -179,11 +179,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "a1.xlarge", "name": "a1.xlarge", - "ram": 8192, + "ram": 8192 }, "c1.medium": { "bandwidth": None, @@ -211,11 +211,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 350 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c1.medium", "name": "c1.medium", - "ram": 1740, + "ram": 1740 }, "c1.xlarge": { "bandwidth": None, @@ -243,11 +243,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 420 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c1.xlarge", "name": "c1.xlarge", - "ram": 7168, + "ram": 7168 }, "c3.2xlarge": { "bandwidth": None, @@ -277,11 +277,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 80 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c3.2xlarge", "name": "c3.2xlarge", - "ram": 15360, + "ram": 15360 }, "c3.4xlarge": { "bandwidth": None, @@ -311,11 +311,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 160 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c3.4xlarge", "name": "c3.4xlarge", - "ram": 30720, + "ram": 30720 }, "c3.8xlarge": { "bandwidth": 10, @@ -345,11 +345,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 320 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c3.8xlarge", "name": "c3.8xlarge", - "ram": 61440, + "ram": 61440 }, "c3.large": { "bandwidth": None, @@ -379,11 +379,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 16 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c3.large", "name": "c3.large", - "ram": 3840, + "ram": 3840 }, "c3.xlarge": { "bandwidth": None, @@ -413,11 +413,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 40 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c3.xlarge", "name": "c3.xlarge", - "ram": 7680, + "ram": 7680 }, "c4.2xlarge": { "bandwidth": None, @@ -448,11 +448,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c4.2xlarge", "name": "c4.2xlarge", - "ram": 15360, + "ram": 15360 }, "c4.4xlarge": { "bandwidth": None, @@ -483,11 +483,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c4.4xlarge", "name": "c4.4xlarge", - "ram": 30720, + "ram": 30720 }, "c4.8xlarge": { "bandwidth": 10, @@ -518,11 +518,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c4.8xlarge", "name": "c4.8xlarge", - "ram": 61440, + "ram": 61440 }, "c4.large": { "bandwidth": None, @@ -553,11 +553,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c4.large", "name": "c4.large", - "ram": 3840, + "ram": 3840 }, "c4.xlarge": { "bandwidth": None, @@ -588,11 +588,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c4.xlarge", "name": "c4.xlarge", - "ram": 7680, + "ram": 7680 }, "c5.12xlarge": { "bandwidth": 12, @@ -600,7 +600,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "7000 Mbps", "ecu": "188", @@ -623,11 +623,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.12xlarge", "name": "c5.12xlarge", - "ram": 98304, + "ram": 98304 }, "c5.18xlarge": { "bandwidth": 25, @@ -635,7 +635,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "9000 Mbps", "ecu": "281", @@ -658,11 +658,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "72", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.18xlarge", "name": "c5.18xlarge", - "ram": 147456, + "ram": 147456 }, "c5.24xlarge": { "bandwidth": 25, @@ -670,7 +670,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "14000 Mbps", "ecu": "375", @@ -693,11 +693,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.24xlarge", "name": "c5.24xlarge", - "ram": 196608, + "ram": 196608 }, "c5.2xlarge": { "bandwidth": 10, @@ -705,7 +705,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "39", @@ -728,11 +728,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.2xlarge", "name": "c5.2xlarge", - "ram": 16384, + "ram": 16384 }, "c5.4xlarge": { "bandwidth": 10, @@ -740,7 +740,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "73", @@ -763,11 +763,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.4xlarge", "name": "c5.4xlarge", - "ram": 32768, + "ram": 32768 }, "c5.9xlarge": { "bandwidth": 10, @@ -775,7 +775,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "4500 Mbps", "ecu": "139", @@ -798,11 +798,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.9xlarge", "name": "c5.9xlarge", - "ram": 73728, + "ram": 73728 }, "c5.large": { "bandwidth": 10, @@ -810,7 +810,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "10", @@ -833,11 +833,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.large", "name": "c5.large", - "ram": 4096, + "ram": 4096 }, "c5.xlarge": { "bandwidth": 10, @@ -845,7 +845,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "20", @@ -868,11 +868,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5.xlarge", "name": "c5.xlarge", - "ram": 8192, + "ram": 8192 }, "c5a.12xlarge": { "bandwidth": 12, @@ -880,7 +880,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "4750 Mbps", "ecu": "NA", @@ -903,11 +903,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.12xlarge", "name": "c5a.12xlarge", - "ram": 98304, + "ram": 98304 }, "c5a.16xlarge": { "bandwidth": 20, @@ -915,7 +915,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "6300 Mbps", "ecu": "NA", @@ -938,11 +938,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.16xlarge", "name": "c5a.16xlarge", - "ram": 131072, + "ram": 131072 }, "c5a.24xlarge": { "bandwidth": 20, @@ -950,7 +950,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "9500 Mbps", "ecu": "NA", @@ -973,11 +973,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.24xlarge", "name": "c5a.24xlarge", - "ram": 196608, + "ram": 196608 }, "c5a.2xlarge": { "bandwidth": 10, @@ -985,7 +985,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1008,11 +1008,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.2xlarge", "name": "c5a.2xlarge", - "ram": 16384, + "ram": 16384 }, "c5a.4xlarge": { "bandwidth": 10, @@ -1020,7 +1020,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1043,11 +1043,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.4xlarge", "name": "c5a.4xlarge", - "ram": 32768, + "ram": 32768 }, "c5a.8xlarge": { "bandwidth": 10, @@ -1055,7 +1055,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "3170 Mbps", "ecu": "NA", @@ -1078,11 +1078,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.8xlarge", "name": "c5a.8xlarge", - "ram": 65536, + "ram": 65536 }, "c5a.large": { "bandwidth": 10, @@ -1090,7 +1090,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1113,11 +1113,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.large", "name": "c5a.large", - "ram": 4096, + "ram": 4096 }, "c5a.xlarge": { "bandwidth": 10, @@ -1125,7 +1125,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1148,11 +1148,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5a.xlarge", "name": "c5a.xlarge", - "ram": 8192, + "ram": 8192 }, "c5ad.12xlarge": { "bandwidth": 12, @@ -1160,7 +1160,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "4750 Mbps", "ecu": "NA", @@ -1183,11 +1183,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.12xlarge", "name": "c5ad.12xlarge", - "ram": 98304, + "ram": 98304 }, "c5ad.16xlarge": { "bandwidth": 20, @@ -1195,7 +1195,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "6300 Mbps", "ecu": "NA", @@ -1218,11 +1218,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1200 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.16xlarge", "name": "c5ad.16xlarge", - "ram": 131072, + "ram": 131072 }, "c5ad.24xlarge": { "bandwidth": 20, @@ -1230,7 +1230,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "9500 Mbps", "ecu": "NA", @@ -1253,11 +1253,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.24xlarge", "name": "c5ad.24xlarge", - "ram": 196608, + "ram": 196608 }, "c5ad.2xlarge": { "bandwidth": 10, @@ -1265,7 +1265,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1288,11 +1288,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.2xlarge", "name": "c5ad.2xlarge", - "ram": 16384, + "ram": 16384 }, "c5ad.4xlarge": { "bandwidth": 10, @@ -1300,7 +1300,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1323,11 +1323,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.4xlarge", "name": "c5ad.4xlarge", - "ram": 32768, + "ram": 32768 }, "c5ad.8xlarge": { "bandwidth": 10, @@ -1335,7 +1335,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "3170 Mbps", "ecu": "NA", @@ -1358,11 +1358,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.8xlarge", "name": "c5ad.8xlarge", - "ram": 65536, + "ram": 65536 }, "c5ad.large": { "bandwidth": 10, @@ -1370,7 +1370,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1393,11 +1393,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.large", "name": "c5ad.large", - "ram": 4096, + "ram": 4096 }, "c5ad.xlarge": { "bandwidth": 10, @@ -1405,7 +1405,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.3 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", @@ -1428,11 +1428,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5ad.xlarge", "name": "c5ad.xlarge", - "ram": 8192, + "ram": 8192 }, "c5d.12xlarge": { "bandwidth": 12, @@ -1440,7 +1440,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "7000 Mbps", "ecu": "188", @@ -1463,11 +1463,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.12xlarge", "name": "c5d.12xlarge", - "ram": 98304, + "ram": 98304 }, "c5d.18xlarge": { "bandwidth": 25, @@ -1475,7 +1475,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "9000 Mbps", "ecu": "281", @@ -1498,11 +1498,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "72", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.18xlarge", "name": "c5d.18xlarge", - "ram": 147456, + "ram": 147456 }, "c5d.24xlarge": { "bandwidth": 25, @@ -1510,7 +1510,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "14000 Mbps", "ecu": "375", @@ -1533,11 +1533,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.24xlarge", "name": "c5d.24xlarge", - "ram": 196608, + "ram": 196608 }, "c5d.2xlarge": { "bandwidth": 10, @@ -1545,7 +1545,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "39", @@ -1568,11 +1568,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 200 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.2xlarge", "name": "c5d.2xlarge", - "ram": 16384, + "ram": 16384 }, "c5d.4xlarge": { "bandwidth": 10, @@ -1580,7 +1580,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "73", @@ -1603,11 +1603,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 400 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.4xlarge", "name": "c5d.4xlarge", - "ram": 32768, + "ram": 32768 }, "c5d.9xlarge": { "bandwidth": 10, @@ -1615,7 +1615,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "4500 Mbps", "ecu": "139", @@ -1633,16 +1633,16 @@ "physicalProcessor": "Intel Xeon Platinum 8124M", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-2", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 900 NVMe SSD", "vcpu": "36", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.9xlarge", "name": "c5d.9xlarge", - "ram": 73728, + "ram": 73728 }, "c5d.large": { "bandwidth": 10, @@ -1650,7 +1650,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "10", @@ -1673,11 +1673,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 50 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.large", "name": "c5d.large", - "ram": 4096, + "ram": 4096 }, "c5d.xlarge": { "bandwidth": 10, @@ -1685,7 +1685,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.4 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2250 Mbps", "ecu": "20", @@ -1708,11 +1708,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 100 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5d.xlarge", "name": "c5d.xlarge", - "ram": 8192, + "ram": 8192 }, "c5n.18xlarge": { "bandwidth": 100, @@ -1743,11 +1743,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "72", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.18xlarge", "name": "c5n.18xlarge", - "ram": 196608, + "ram": 196608 }, "c5n.2xlarge": { "bandwidth": 25, @@ -1778,11 +1778,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.2xlarge", "name": "c5n.2xlarge", - "ram": 21504, + "ram": 21504 }, "c5n.4xlarge": { "bandwidth": 25, @@ -1813,11 +1813,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.4xlarge", "name": "c5n.4xlarge", - "ram": 43008, + "ram": 43008 }, "c5n.9xlarge": { "bandwidth": 50, @@ -1848,11 +1848,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.9xlarge", "name": "c5n.9xlarge", - "ram": 98304, + "ram": 98304 }, "c5n.large": { "bandwidth": 25, @@ -1883,11 +1883,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.large", "name": "c5n.large", - "ram": 5376, + "ram": 5376 }, "c5n.xlarge": { "bandwidth": 25, @@ -1918,11 +1918,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c5n.xlarge", "name": "c5n.xlarge", - "ram": 10752, + "ram": 10752 }, "c6a.12xlarge": { "bandwidth": 18750, @@ -1930,7 +1930,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", @@ -1953,11 +1953,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.12xlarge", "name": "c6a.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6a.16xlarge": { "bandwidth": 25000, @@ -1965,7 +1965,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "13333 Mbps", "ecu": "NA", @@ -1988,11 +1988,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.16xlarge", "name": "c6a.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6a.24xlarge": { "bandwidth": 37500, @@ -2000,7 +2000,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", @@ -2023,11 +2023,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.24xlarge", "name": "c6a.24xlarge", - "ram": 196608, + "ram": 196608 }, "c6a.2xlarge": { "bandwidth": 12500, @@ -2035,7 +2035,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 6667 Mbps", "ecu": "NA", @@ -2058,11 +2058,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.2xlarge", "name": "c6a.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6a.32xlarge": { "bandwidth": 50000, @@ -2070,7 +2070,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "26667 Mbps", "ecu": "NA", @@ -2088,16 +2088,16 @@ "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-central-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.32xlarge", "name": "c6a.32xlarge", - "ram": 262144, + "ram": 262144 }, "c6a.48xlarge": { "bandwidth": 50000, @@ -2105,7 +2105,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", @@ -2128,11 +2128,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.48xlarge", "name": "c6a.48xlarge", - "ram": 393216, + "ram": 393216 }, "c6a.4xlarge": { "bandwidth": 12500, @@ -2140,7 +2140,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 6667 Mbps", "ecu": "NA", @@ -2163,11 +2163,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.4xlarge", "name": "c6a.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6a.8xlarge": { "bandwidth": 12500, @@ -2175,7 +2175,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "6667 Mbps", "ecu": "NA", @@ -2198,11 +2198,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.8xlarge", "name": "c6a.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6a.large": { "bandwidth": 12500, @@ -2210,7 +2210,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 6667 Mbps", "ecu": "NA", @@ -2233,11 +2233,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.large", "name": "c6a.large", - "ram": 4096, + "ram": 4096 }, "c6a.xlarge": { "bandwidth": 12500, @@ -2245,7 +2245,7 @@ "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 6667 Mbps", "ecu": "NA", @@ -2263,16 +2263,16 @@ "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6a.xlarge", "name": "c6a.xlarge", - "ram": 8192, + "ram": 8192 }, "c6g.12xlarge": { "bandwidth": 20, @@ -2302,11 +2302,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.12xlarge", "name": "c6g.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6g.16xlarge": { "bandwidth": 25, @@ -2336,11 +2336,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.16xlarge", "name": "c6g.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6g.2xlarge": { "bandwidth": 10, @@ -2370,11 +2370,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.2xlarge", "name": "c6g.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6g.4xlarge": { "bandwidth": 10, @@ -2404,11 +2404,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.4xlarge", "name": "c6g.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6g.8xlarge": { "bandwidth": 12, @@ -2438,11 +2438,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.8xlarge", "name": "c6g.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6g.large": { "bandwidth": 10, @@ -2472,11 +2472,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.large", "name": "c6g.large", - "ram": 4096, + "ram": 4096 }, "c6g.medium": { "bandwidth": 10, @@ -2506,11 +2506,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.medium", "name": "c6g.medium", - "ram": 2048, + "ram": 2048 }, "c6g.xlarge": { "bandwidth": 10, @@ -2540,11 +2540,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6g.xlarge", "name": "c6g.xlarge", - "ram": 8192, + "ram": 8192 }, "c6gd.12xlarge": { "bandwidth": 20, @@ -2574,11 +2574,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.12xlarge", "name": "c6gd.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6gd.16xlarge": { "bandwidth": 25, @@ -2608,11 +2608,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.16xlarge", "name": "c6gd.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6gd.2xlarge": { "bandwidth": 10, @@ -2642,11 +2642,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.2xlarge", "name": "c6gd.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6gd.4xlarge": { "bandwidth": 10, @@ -2676,11 +2676,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.4xlarge", "name": "c6gd.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6gd.8xlarge": { "bandwidth": 12, @@ -2710,11 +2710,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.8xlarge", "name": "c6gd.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6gd.large": { "bandwidth": 10, @@ -2744,11 +2744,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.large", "name": "c6gd.large", - "ram": 4096, + "ram": 4096 }, "c6gd.medium": { "bandwidth": 10, @@ -2778,11 +2778,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.medium", "name": "c6gd.medium", - "ram": 2048, + "ram": 2048 }, "c6gd.xlarge": { "bandwidth": 10, @@ -2812,11 +2812,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gd.xlarge", "name": "c6gd.xlarge", - "ram": 8192, + "ram": 8192 }, "c6gn.12xlarge": { "bandwidth": 75, @@ -2846,11 +2846,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.12xlarge", "name": "c6gn.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6gn.16xlarge": { "bandwidth": 100, @@ -2880,11 +2880,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.16xlarge", "name": "c6gn.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6gn.2xlarge": { "bandwidth": 25, @@ -2914,11 +2914,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.2xlarge", "name": "c6gn.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6gn.4xlarge": { "bandwidth": 25, @@ -2948,11 +2948,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.4xlarge", "name": "c6gn.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6gn.8xlarge": { "bandwidth": 50, @@ -2982,11 +2982,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.8xlarge", "name": "c6gn.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6gn.large": { "bandwidth": 25, @@ -3016,11 +3016,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.large", "name": "c6gn.large", - "ram": 4096, + "ram": 4096 }, "c6gn.medium": { "bandwidth": 25, @@ -3050,11 +3050,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.medium", "name": "c6gn.medium", - "ram": 2048, + "ram": 2048 }, "c6gn.xlarge": { "bandwidth": 25, @@ -3084,11 +3084,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6gn.xlarge", "name": "c6gn.xlarge", - "ram": 8192, + "ram": 8192 }, "c6i.12xlarge": { "bandwidth": 18750, @@ -3119,11 +3119,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.12xlarge", "name": "c6i.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6i.16xlarge": { "bandwidth": 25000, @@ -3154,11 +3154,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.16xlarge", "name": "c6i.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6i.24xlarge": { "bandwidth": 37500, @@ -3189,11 +3189,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.24xlarge", "name": "c6i.24xlarge", - "ram": 196608, + "ram": 196608 }, "c6i.2xlarge": { "bandwidth": 12500, @@ -3224,11 +3224,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.2xlarge", "name": "c6i.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6i.32xlarge": { "bandwidth": 50000, @@ -3259,11 +3259,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.32xlarge", "name": "c6i.32xlarge", - "ram": 262144, + "ram": 262144 }, "c6i.4xlarge": { "bandwidth": 12500, @@ -3294,11 +3294,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.4xlarge", "name": "c6i.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6i.8xlarge": { "bandwidth": 12500, @@ -3329,11 +3329,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.8xlarge", "name": "c6i.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6i.large": { "bandwidth": 12500, @@ -3364,11 +3364,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.large", "name": "c6i.large", - "ram": 4096, + "ram": 4096 }, "c6i.xlarge": { "bandwidth": 12500, @@ -3399,11 +3399,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6i.xlarge", "name": "c6i.xlarge", - "ram": 8192, + "ram": 8192 }, "c6id.12xlarge": { "bandwidth": 18750, @@ -3432,13 +3432,13 @@ "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 SSD", + "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.12xlarge", "name": "c6id.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6id.16xlarge": { "bandwidth": 25000, @@ -3464,16 +3464,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 SSD", + "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.16xlarge", "name": "c6id.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6id.24xlarge": { "bandwidth": 37500, @@ -3499,16 +3499,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1425 SSD", + "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.24xlarge", "name": "c6id.24xlarge", - "ram": 196608, + "ram": 196608 }, "c6id.2xlarge": { "bandwidth": 12500, @@ -3534,16 +3534,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 474 SSD", + "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.2xlarge", "name": "c6id.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6id.32xlarge": { "bandwidth": 50000, @@ -3572,13 +3572,13 @@ "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 SSD", + "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.32xlarge", "name": "c6id.32xlarge", - "ram": 262144, + "ram": 262144 }, "c6id.4xlarge": { "bandwidth": 12500, @@ -3607,13 +3607,13 @@ "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 SSD", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.4xlarge", "name": "c6id.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6id.8xlarge": { "bandwidth": 12500, @@ -3642,13 +3642,13 @@ "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 SSD", + "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.8xlarge", "name": "c6id.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6id.large": { "bandwidth": 12500, @@ -3677,13 +3677,13 @@ "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 SSD", + "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.large", "name": "c6id.large", - "ram": 4096, + "ram": 4096 }, "c6id.xlarge": { "bandwidth": 12500, @@ -3712,13 +3712,13 @@ "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 SSD", + "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6id.xlarge", "name": "c6id.xlarge", - "ram": 8192, + "ram": 8192 }, "c6in.12xlarge": { "bandwidth": 75000, @@ -3728,7 +3728,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "37500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3749,11 +3749,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.12xlarge", "name": "c6in.12xlarge", - "ram": 98304, + "ram": 98304 }, "c6in.16xlarge": { "bandwidth": 100000, @@ -3763,7 +3763,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "50000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3784,11 +3784,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.16xlarge", "name": "c6in.16xlarge", - "ram": 131072, + "ram": 131072 }, "c6in.24xlarge": { "bandwidth": 150000, @@ -3798,7 +3798,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60000 Mbps", + "dedicatedEbsThroughput": "75000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3814,16 +3814,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-south-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.24xlarge", "name": "c6in.24xlarge", - "ram": 196608, + "ram": 196608 }, "c6in.2xlarge": { "bandwidth": 40000, @@ -3833,7 +3833,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3849,16 +3849,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-south-1", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.2xlarge", "name": "c6in.2xlarge", - "ram": 16384, + "ram": 16384 }, "c6in.32xlarge": { "bandwidth": 200000, @@ -3868,7 +3868,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80000 Mbps", + "dedicatedEbsThroughput": "100000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3889,11 +3889,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.32xlarge", "name": "c6in.32xlarge", - "ram": 262144, + "ram": 262144 }, "c6in.4xlarge": { "bandwidth": 50000, @@ -3903,7 +3903,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3924,11 +3924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.4xlarge", "name": "c6in.4xlarge", - "ram": 32768, + "ram": 32768 }, "c6in.8xlarge": { "bandwidth": 50000, @@ -3938,7 +3938,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3959,11 +3959,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.8xlarge", "name": "c6in.8xlarge", - "ram": 65536, + "ram": 65536 }, "c6in.large": { "bandwidth": 25000, @@ -3973,7 +3973,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -3989,16 +3989,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-south-1", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.large", "name": "c6in.large", - "ram": 4096, + "ram": 4096 }, "c6in.xlarge": { "bandwidth": 30000, @@ -4008,7 +4008,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", @@ -4024,201 +4024,311 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-3", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "c6in.xlarge", "name": "c6in.xlarge", - "ram": 8192, + "ram": 8192 }, - "c7g.12xlarge": { - "bandwidth": 22500, + "c7a.12xlarge": { + "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.12xlarge", + "instanceType": "c7a.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "96 GiB", - "networkPerformance": "22500 Megabit", + "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.12xlarge", - "name": "c7g.12xlarge", - "ram": 98304, + "id": "c7a.12xlarge", + "name": "c7a.12xlarge", + "ram": 98304 }, - "c7g.16xlarge": { - "bandwidth": 30, + "c7a.16xlarge": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.16xlarge", + "instanceType": "c7a.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "30 Gigabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.16xlarge", - "name": "c7g.16xlarge", - "ram": 131072, + "id": "c7a.16xlarge", + "name": "c7a.16xlarge", + "ram": 131072 }, - "c7g.2xlarge": { - "bandwidth": 15, + "c7a.24xlarge": { + "bandwidth": 37500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Compute optimized", + "instanceType": "c7a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "c7a.24xlarge", + "name": "c7a.24xlarge", + "ram": 196608 + }, + "c7a.2xlarge": { + "bandwidth": 12500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.2xlarge", + "instanceType": "c7a.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 15 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.2xlarge", - "name": "c7g.2xlarge", - "ram": 16384, + "id": "c7a.2xlarge", + "name": "c7a.2xlarge", + "ram": 16384 }, - "c7g.4xlarge": { - "bandwidth": 15, + "c7a.32xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Compute optimized", + "instanceType": "c7a.32xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" + }, + "id": "c7a.32xlarge", + "name": "c7a.32xlarge", + "ram": 262144 + }, + "c7a.48xlarge": { + "bandwidth": 50000, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Compute optimized", + "instanceType": "c7a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" + }, + "id": "c7a.48xlarge", + "name": "c7a.48xlarge", + "ram": 393216 + }, + "c7a.4xlarge": { + "bandwidth": 12500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.4xlarge", + "instanceType": "c7a.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 15 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.4xlarge", - "name": "c7g.4xlarge", - "ram": 32768, + "id": "c7a.4xlarge", + "name": "c7a.4xlarge", + "ram": 32768 }, - "c7g.8xlarge": { - "bandwidth": 15, + "c7a.8xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.8xlarge", + "instanceType": "c7a.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "15 Gigabit", + "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.8xlarge", - "name": "c7g.8xlarge", - "ram": 65536, + "id": "c7a.8xlarge", + "name": "c7a.8xlarge", + "ram": 65536 }, - "c7g.large": { + "c7a.large": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.large", + "instanceType": "c7a.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4226,33 +4336,34 @@ "memory": "4 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.large", - "name": "c7g.large", - "ram": 4096, + "id": "c7a.large", + "name": "c7a.large", + "ram": 4096 }, - "c7g.medium": { + "c7a.medium": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.medium", + "instanceType": "c7a.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4260,33 +4371,34 @@ "memory": "2 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.medium", - "name": "c7g.medium", - "ram": 2048, + "id": "c7a.medium", + "name": "c7a.medium", + "ram": 2048 }, - "c7g.xlarge": { + "c7a.xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7g.xlarge", + "instanceType": "c7a.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4294,22 +4406,23 @@ "memory": "8 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7g.xlarge", - "name": "c7g.xlarge", - "ram": 8192, + "id": "c7a.xlarge", + "name": "c7a.xlarge", + "ram": 8192 }, - "c7gd.12xlarge": { + "c7g.12xlarge": { "bandwidth": 22500, - "disk": 2850, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4320,7 +4433,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.12xlarge", + "instanceType": "c7g.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4330,20 +4443,20 @@ "normalizationSizeFactor": "96", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 NVMe SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.12xlarge", - "name": "c7gd.12xlarge", - "ram": 98304, + "id": "c7g.12xlarge", + "name": "c7g.12xlarge", + "ram": 98304 }, - "c7gd.16xlarge": { + "c7g.16xlarge": { "bandwidth": 30, - "disk": 3800, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4354,7 +4467,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.16xlarge", + "instanceType": "c7g.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4364,20 +4477,20 @@ "normalizationSizeFactor": "128", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.16xlarge", - "name": "c7gd.16xlarge", - "ram": 131072, + "id": "c7g.16xlarge", + "name": "c7g.16xlarge", + "ram": 131072 }, - "c7gd.2xlarge": { + "c7g.2xlarge": { "bandwidth": 15, - "disk": 475, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4388,7 +4501,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.2xlarge", + "instanceType": "c7g.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4398,20 +4511,20 @@ "normalizationSizeFactor": "16", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.2xlarge", - "name": "c7gd.2xlarge", - "ram": 16384, + "id": "c7g.2xlarge", + "name": "c7g.2xlarge", + "ram": 16384 }, - "c7gd.4xlarge": { + "c7g.4xlarge": { "bandwidth": 15, - "disk": 950, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4422,7 +4535,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.4xlarge", + "instanceType": "c7g.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4432,20 +4545,20 @@ "normalizationSizeFactor": "32", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 NVMe SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.4xlarge", - "name": "c7gd.4xlarge", - "ram": 32768, + "id": "c7g.4xlarge", + "name": "c7g.4xlarge", + "ram": 32768 }, - "c7gd.8xlarge": { + "c7g.8xlarge": { "bandwidth": 15, - "disk": 1900, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4456,7 +4569,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.8xlarge", + "instanceType": "c7g.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4466,20 +4579,20 @@ "normalizationSizeFactor": "64", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 NVMe SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.8xlarge", - "name": "c7gd.8xlarge", - "ram": 65536, + "id": "c7g.8xlarge", + "name": "c7g.8xlarge", + "ram": 65536 }, - "c7gd.large": { + "c7g.large": { "bandwidth": 12500, - "disk": 118, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4490,7 +4603,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.large", + "instanceType": "c7g.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4500,20 +4613,20 @@ "normalizationSizeFactor": "4", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 NVMe SSD", + "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.large", - "name": "c7gd.large", - "ram": 4096, + "id": "c7g.large", + "name": "c7g.large", + "ram": 4096 }, - "c7gd.medium": { + "c7g.medium": { "bandwidth": 12500, - "disk": 59, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4524,7 +4637,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.medium", + "instanceType": "c7g.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4534,20 +4647,20 @@ "normalizationSizeFactor": "2", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 59 NVMe SSD", + "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.medium", - "name": "c7gd.medium", - "ram": 2048, + "id": "c7g.medium", + "name": "c7g.medium", + "ram": 2048 }, - "c7gd.xlarge": { + "c7g.xlarge": { "bandwidth": 12500, - "disk": 237, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", @@ -4558,7 +4671,7 @@ "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gd.xlarge", + "instanceType": "c7g.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", @@ -4571,1133 +4684,1192 @@ "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 NVMe SSD", + "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gd.xlarge", - "name": "c7gd.xlarge", - "ram": 8192, + "id": "c7g.xlarge", + "name": "c7g.xlarge", + "ram": 8192 }, - "c7gn.12xlarge": { - "bandwidth": 150, - "disk": 0, + "c7gd.12xlarge": { + "bandwidth": 22500, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.12xlarge", + "instanceType": "c7gd.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "96 GiB", - "networkPerformance": "150 Gigabit", + "networkPerformance": "22500 Megabit", "normalizationSizeFactor": "96", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.12xlarge", - "name": "c7gn.12xlarge", - "ram": 98304, + "id": "c7gd.12xlarge", + "name": "c7gd.12xlarge", + "ram": 98304 }, - "c7gn.16xlarge": { - "bandwidth": 200, - "disk": 0, + "c7gd.16xlarge": { + "bandwidth": 30, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.16xlarge", + "instanceType": "c7gd.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "200 Gigabit", + "networkPerformance": "30 Gigabit", "normalizationSizeFactor": "128", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.16xlarge", - "name": "c7gn.16xlarge", - "ram": 131072, + "id": "c7gd.16xlarge", + "name": "c7gd.16xlarge", + "ram": 131072 }, - "c7gn.2xlarge": { - "bandwidth": 50, - "disk": 0, + "c7gd.2xlarge": { + "bandwidth": 15, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.2xlarge", + "instanceType": "c7gd.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 50 Gigabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "16", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.2xlarge", - "name": "c7gn.2xlarge", - "ram": 16384, + "id": "c7gd.2xlarge", + "name": "c7gd.2xlarge", + "ram": 16384 }, - "c7gn.4xlarge": { - "bandwidth": 50, - "disk": 0, + "c7gd.4xlarge": { + "bandwidth": 15, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.4xlarge", + "instanceType": "c7gd.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "50 Gigabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "32", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.4xlarge", - "name": "c7gn.4xlarge", - "ram": 32768, + "id": "c7gd.4xlarge", + "name": "c7gd.4xlarge", + "ram": 32768 }, - "c7gn.8xlarge": { - "bandwidth": 100, - "disk": 0, + "c7gd.8xlarge": { + "bandwidth": 15, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.8xlarge", + "instanceType": "c7gd.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "100 Gigabit", + "networkPerformance": "15 Gigabit", "normalizationSizeFactor": "64", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.8xlarge", - "name": "c7gn.8xlarge", - "ram": 65536, + "id": "c7gd.8xlarge", + "name": "c7gd.8xlarge", + "ram": 65536 }, - "c7gn.large": { - "bandwidth": 30, - "disk": 0, + "c7gd.large": { + "bandwidth": 12500, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.large", + "instanceType": "c7gd.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "4 GiB", - "networkPerformance": "Up to 30 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.large", - "name": "c7gn.large", - "ram": 4096, + "id": "c7gd.large", + "name": "c7gd.large", + "ram": 4096 }, - "c7gn.medium": { - "bandwidth": 25, - "disk": 0, + "c7gd.medium": { + "bandwidth": 12500, + "disk": 59, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.medium", + "instanceType": "c7gd.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "2 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "2", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.medium", - "name": "c7gn.medium", - "ram": 2048, - }, - "c7gn.xlarge": { - "bandwidth": 40, - "disk": 0, + "id": "c7gd.medium", + "name": "c7gd.medium", + "ram": 2048 + }, + "c7gd.xlarge": { + "bandwidth": 12500, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "c7gn.xlarge", + "instanceType": "c7gd.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "8 GiB", - "networkPerformance": "Up to 40 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "c7gn.xlarge", - "name": "c7gn.xlarge", - "ram": 8192, + "id": "c7gd.xlarge", + "name": "c7gd.xlarge", + "ram": 8192 }, - "cc2.8xlarge": { - "bandwidth": 10, - "disk": 3360, + "c7gn.12xlarge": { + "bandwidth": 150, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.6 GHz", - "currentGeneration": "No", - "ecu": "88", - "enhancedNetworkingSupported": "No", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Compute optimized", - "instanceType": "cc2.8xlarge", + "instanceType": "c7gn.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "60.5 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2670", + "memory": "96 GiB", + "networkPerformance": "150 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 840 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "cc2.8xlarge", - "name": "cc2.8xlarge", - "ram": 61952, + "id": "c7gn.12xlarge", + "name": "c7gn.12xlarge", + "ram": 98304 }, - "cr1.8xlarge": { - "bandwidth": 10, - "disk": 240, + "c7gn.16xlarge": { + "bandwidth": 200, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "88", - "instanceFamily": "Memory optimized", - "instanceType": "cr1.8xlarge", + "classicnetworkingsupport": "false", + "clockSpeed": "2.6 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2670", + "memory": "128 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 120 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "cr1.8xlarge", - "name": "cr1.8xlarge", - "ram": 249856, + "id": "c7gn.16xlarge", + "name": "c7gn.16xlarge", + "ram": 131072 }, - "d2.2xlarge": { - "bandwidth": None, - "disk": 12000, + "c7gn.2xlarge": { + "bandwidth": 50, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.4 GHz", + "classicnetworkingsupport": "false", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1000 Mbps", - "ecu": "28", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d2.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "61 GiB", - "networkPerformance": "High", + "memory": "16 GiB", + "networkPerformance": "Up to 50 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-west-3", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "6 x 2000 HDD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "d2.2xlarge", - "name": "d2.2xlarge", - "ram": 62464, + "id": "c7gn.2xlarge", + "name": "c7gn.2xlarge", + "ram": 16384 }, - "d2.4xlarge": { - "bandwidth": None, - "disk": 24000, + "c7gn.4xlarge": { + "bandwidth": 50, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.4 GHz", + "classicnetworkingsupport": "false", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2000 Mbps", - "ecu": "56", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d2.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "122 GiB", - "networkPerformance": "High", + "memory": "32 GiB", + "networkPerformance": "50 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "12 x 2000 HDD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "d2.4xlarge", - "name": "d2.4xlarge", - "ram": 124928, + "id": "c7gn.4xlarge", + "name": "c7gn.4xlarge", + "ram": 32768 }, - "d2.8xlarge": { - "bandwidth": 10, - "disk": 48000, + "c7gn.8xlarge": { + "bandwidth": 100, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.4 GHz", + "classicnetworkingsupport": "false", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4000 Mbps", - "ecu": "116", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d2.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", + "memory": "64 GiB", + "networkPerformance": "100 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-east-2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "24 x 2000 HDD", - "vcpu": "36", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "d2.8xlarge", - "name": "d2.8xlarge", - "ram": 249856, + "id": "c7gn.8xlarge", + "name": "c7gn.8xlarge", + "ram": 65536 }, - "d2.xlarge": { - "bandwidth": None, - "disk": 6000, + "c7gn.large": { + "bandwidth": 30, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.4 GHz", + "classicnetworkingsupport": "false", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "750 Mbps", - "ecu": "14", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d2.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "30.5 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "memory": "4 GiB", + "networkPerformance": "Up to 30 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "3 x 2000 HDD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "d2.xlarge", - "name": "d2.xlarge", - "ram": 31232, + "id": "c7gn.large", + "name": "c7gn.large", + "ram": 4096 }, - "d3.2xlarge": { - "bandwidth": 15, - "disk": 12000, + "c7gn.medium": { + "bandwidth": 25, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "2 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "6 x 2000 HDD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "d3.2xlarge", - "name": "d3.2xlarge", - "ram": 65536, + "id": "c7gn.medium", + "name": "c7gn.medium", + "ram": 2048 }, - "d3.4xlarge": { - "bandwidth": 15, - "disk": 24000, + "c7gn.xlarge": { + "bandwidth": 40, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "c7gn.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 40 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "12 x 2000 HDD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "d3.4xlarge", - "name": "d3.4xlarge", - "ram": 131072, + "id": "c7gn.xlarge", + "name": "c7gn.xlarge", + "ram": 8192 }, - "d3.8xlarge": { - "bandwidth": 25, - "disk": 48000, + "c7i-flex.2xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3.8xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i-flex.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "24 x 2000 HDD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "d3.8xlarge", - "name": "d3.8xlarge", - "ram": 262144, + "id": "c7i-flex.2xlarge", + "name": "c7i-flex.2xlarge", + "ram": 16384 }, - "d3.xlarge": { - "bandwidth": 15, - "disk": 6000, + "c7i-flex.4xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3.xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i-flex.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "3 x 2000 HDD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "d3.xlarge", - "name": "d3.xlarge", - "ram": 32768, + "id": "c7i-flex.4xlarge", + "name": "c7i-flex.4xlarge", + "ram": 32768 }, - "d3en.12xlarge": { - "bandwidth": 75, - "disk": 336000, + "c7i-flex.8xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.12xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i-flex.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "75 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "24 x 14000 HDD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "d3en.12xlarge", - "name": "d3en.12xlarge", - "ram": 196608, + "id": "c7i-flex.8xlarge", + "name": "c7i-flex.8xlarge", + "ram": 65536 }, - "d3en.2xlarge": { - "bandwidth": 25, - "disk": 56000, + "c7i-flex.large": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.2xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i-flex.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "4 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 14000 HDD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "d3en.2xlarge", - "name": "d3en.2xlarge", - "ram": 32768, + "id": "c7i-flex.large", + "name": "c7i-flex.large", + "ram": 4096 }, - "d3en.4xlarge": { - "bandwidth": 25, - "disk": 112000, + "c7i-flex.xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.4xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i-flex.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 14000 HDD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "d3en.4xlarge", - "name": "d3en.4xlarge", - "ram": 65536, + "id": "c7i-flex.xlarge", + "name": "c7i-flex.xlarge", + "ram": 8192 }, - "d3en.6xlarge": { - "bandwidth": 40, - "disk": 168000, + "c7i.12xlarge": { + "bandwidth": 18750, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.6xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "96 GiB", - "networkPerformance": "40 Gigabit", - "normalizationSizeFactor": "48", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "12 x 14000 HDD", - "vcpu": "24", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "d3en.6xlarge", - "name": "d3en.6xlarge", - "ram": 98304, + "id": "c7i.12xlarge", + "name": "c7i.12xlarge", + "ram": 98304 }, - "d3en.8xlarge": { - "bandwidth": 50, - "disk": 224000, + "c7i.16xlarge": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.8xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.16xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "networkPerformance": "25000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-southeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "c7i.16xlarge", + "name": "c7i.16xlarge", + "ram": 131072 + }, + "c7i.24xlarge": { + "bandwidth": 37500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.2 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "16 x 14000 HDD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "d3en.8xlarge", - "name": "d3en.8xlarge", - "ram": 131072, + "id": "c7i.24xlarge", + "name": "c7i.24xlarge", + "ram": 196608 }, - "d3en.xlarge": { - "bandwidth": 25, - "disk": 28000, + "c7i.2xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2800 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "d3en.xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 14000 HDD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "d3en.xlarge", - "name": "d3en.xlarge", - "ram": 16384, + "id": "c7i.2xlarge", + "name": "c7i.2xlarge", + "ram": 16384 }, - "dl1.24xlarge": { - "bandwidth": 400, - "disk": 4000, + "c7i.48xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "dl1.24xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.48xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "400 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8275L", + "memory": "384 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1000 GB NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "dl1.24xlarge", - "name": "dl1.24xlarge", - "ram": 786432, + "id": "c7i.48xlarge", + "name": "c7i.48xlarge", + "ram": 393216 }, - "f1.16xlarge": { - "bandwidth": 25, - "disk": 3760, + "c7i.4xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "FPGA Instances", - "instanceType": "f1.16xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "976 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 940 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "f1.16xlarge", - "name": "f1.16xlarge", - "ram": 999424, + "id": "c7i.4xlarge", + "name": "c7i.4xlarge", + "ram": 32768 }, - "f1.2xlarge": { - "bandwidth": 10, - "disk": 470, + "c7i.8xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1700 Mbps", - "ecu": "31", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "FPGA Instances", - "instanceType": "f1.2xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "122 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "64 GiB", + "networkPerformance": "12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 470 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "f1.2xlarge", - "name": "f1.2xlarge", - "ram": 124928, + "id": "c7i.8xlarge", + "name": "c7i.8xlarge", + "ram": 65536 }, - "f1.4xlarge": { - "bandwidth": 10, - "disk": 940, + "c7i.large": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "58", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "FPGA Instances", - "instanceType": "f1.4xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "4 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 940 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "f1.4xlarge", - "name": "f1.4xlarge", - "ram": 249856, + "id": "c7i.large", + "name": "c7i.large", + "ram": 4096 }, - "g2.2xlarge": { - "bandwidth": None, - "disk": 60, + "c7i.xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.6 GHz", - "currentGeneration": "No", - "ecu": "26", - "enhancedNetworkingSupported": "No", - "gpu": "1", + "classicnetworkingsupport": "false", + "clockSpeed": "3.2 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g2.2xlarge", - "intelAvx2Available": "No", + "instanceFamily": "Compute optimized", + "instanceType": "c7i.xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "15 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2670 (Sandy Bridge)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 60 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "g2.2xlarge", - "name": "g2.2xlarge", - "ram": 15360, + "id": "c7i.xlarge", + "name": "c7i.xlarge", + "ram": 8192 }, - "g2.8xlarge": { - "bandwidth": None, - "disk": 240, + "cc2.8xlarge": { + "bandwidth": 10, + "disk": 3360, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "true", "clockSpeed": "2.6 GHz", "currentGeneration": "No", - "ecu": "104", + "ecu": "88", "enhancedNetworkingSupported": "No", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g2.8xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "cc2.8xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "60 GiB", - "networkPerformance": "High", + "memory": "60.5 GiB", + "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2670 (Sandy Bridge)", + "physicalProcessor": "Intel Xeon E5-2670", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "us-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 840 SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "cc2.8xlarge", + "name": "cc2.8xlarge", + "ram": 61952 + }, + "cr1.8xlarge": { + "bandwidth": 10, + "disk": 240, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "88", + "instanceFamily": "Memory optimized", + "instanceType": "cr1.8xlarge", + "marketoption": "OnDemand", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2670", + "processorArchitecture": "64-bit", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 120 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g2.8xlarge", - "name": "g2.8xlarge", - "ram": 61440, + "id": "cr1.8xlarge", + "name": "cr1.8xlarge", + "ram": 249856 }, - "g3.16xlarge": { - "bandwidth": 20, - "disk": 0, + "d2.2xlarge": { + "bandwidth": None, + "disk": 12000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "201", + "classicnetworkingsupport": "true", + "clockSpeed": "2.4 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "1000 Mbps", + "ecu": "28", "enhancedNetworkingSupported": "Yes", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g3.16xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d2.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "488 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "61 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ca-central-1", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "6 x 2000 HDD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "g3.16xlarge", - "name": "g3.16xlarge", - "ram": 499712, + "id": "d2.2xlarge", + "name": "d2.2xlarge", + "ram": 62464 }, - "g3.4xlarge": { - "bandwidth": 10, - "disk": 0, + "d2.4xlarge": { + "bandwidth": None, + "disk": 24000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "58", + "classicnetworkingsupport": "true", + "clockSpeed": "2.4 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "2000 Mbps", + "ecu": "56", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g3.4xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d2.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "122 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "High", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "12 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g3.4xlarge", - "name": "g3.4xlarge", - "ram": 124928, + "id": "d2.4xlarge", + "name": "d2.4xlarge", + "ram": 124928 }, - "g3.8xlarge": { + "d2.8xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 48000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "97", + "classicnetworkingsupport": "true", + "clockSpeed": "2.4 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "4000 Mbps", + "ecu": "116", "enhancedNetworkingSupported": "Yes", - "gpu": "2", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g3.8xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d2.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -5705,3592 +5877,6294 @@ "memory": "244 GiB", "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "24 x 2000 HDD", + "vcpu": "36", + "vpcnetworkingsupport": "true" }, - "id": "g3.8xlarge", - "name": "g3.8xlarge", - "ram": 249856, + "id": "d2.8xlarge", + "name": "d2.8xlarge", + "ram": 249856 }, - "g3s.xlarge": { - "bandwidth": 10, - "disk": 0, + "d2.xlarge": { + "bandwidth": None, + "disk": 6000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "100 Mbps", - "ecu": "13", + "classicnetworkingsupport": "true", + "clockSpeed": "2.4 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "750 Mbps", + "ecu": "14", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g3s.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "d2.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "30.5 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "Moderate", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "3 x 2000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g3s.xlarge", - "name": "g3s.xlarge", - "ram": 31232, + "id": "d2.xlarge", + "name": "d2.xlarge", + "ram": 31232 }, - "g4ad.16xlarge": { - "bandwidth": 25, - "disk": 2400, + "d3.2xlarge": { + "bandwidth": 15, + "disk": 12000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", + "dedicatedEbsThroughput": "Up to 2800 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4ad.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "d3.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "64 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2400 GB NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "6 x 2000 HDD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "g4ad.16xlarge", - "name": "g4ad.16xlarge", - "ram": 262144, + "id": "d3.2xlarge", + "name": "d3.2xlarge", + "ram": 65536 }, - "g4ad.2xlarge": { - "bandwidth": 10, - "disk": 300, + "d3.4xlarge": { + "bandwidth": 15, + "disk": 24000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3000 Mbps", + "dedicatedEbsThroughput": "2800 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4ad.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "d3.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "19.97394", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "128 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "300 GB NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", - }, - "id": "g4ad.2xlarge", - "name": "g4ad.2xlarge", - "ram": 32768, - }, - "g4ad.4xlarge": { - "bandwidth": 10, - "disk": 600, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpu": "1", - "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4ad.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7R32", - "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "600 GB NVMe SSD", + "storage": "12 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4ad.4xlarge", - "name": "g4ad.4xlarge", - "ram": 65536, + "id": "d3.4xlarge", + "name": "d3.4xlarge", + "ram": 131072 }, - "g4ad.8xlarge": { - "bandwidth": 15, - "disk": 1200, + "d3.8xlarge": { + "bandwidth": 25, + "disk": 48000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3000 Mbps", + "dedicatedEbsThroughput": "5000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "2", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4ad.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "d3.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "15 Gigabit", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7R32", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1200 GB NVMe SSD", + "storage": "24 x 2000 HDD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4ad.8xlarge", - "name": "g4ad.8xlarge", - "ram": 131072, + "id": "d3.8xlarge", + "name": "d3.8xlarge", + "ram": 262144 }, - "g4ad.xlarge": { - "bandwidth": 10, - "disk": 150, + "d3.xlarge": { + "bandwidth": 15, + "disk": 6000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3000 Mbps", + "dedicatedEbsThroughput": "Up to 2800 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4ad.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "d3.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "13.97113", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "32 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-2", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "150 GB NVMe SSD", + "storage": "3 x 2000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4ad.xlarge", - "name": "g4ad.xlarge", - "ram": 16384, + "id": "d3.xlarge", + "name": "d3.xlarge", + "ram": 32768 }, - "g4dn.12xlarge": { - "bandwidth": 50, - "disk": 900, + "d3en.12xlarge": { + "bandwidth": 75, + "disk": 336000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "7000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.12xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "7.437262357", - "physicalProcessor": "Intel Xeon Family", + "networkPerformance": "75 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "900 GB NVMe SSD", + "storage": "24 x 14000 HDD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.12xlarge", - "name": "g4dn.12xlarge", - "ram": 196608, + "id": "d3en.12xlarge", + "name": "d3en.12xlarge", + "ram": 196608 }, - "g4dn.16xlarge": { - "bandwidth": 50, - "disk": 900, + "d3en.2xlarge": { + "bandwidth": 25, + "disk": 56000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "Up to 2800 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.16xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "8.273764259", - "physicalProcessor": "Intel Xeon Family", + "memory": "32 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "900 GB NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "4 x 14000 HDD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.16xlarge", - "name": "g4dn.16xlarge", - "ram": 262144, + "id": "d3en.2xlarge", + "name": "d3en.2xlarge", + "ram": 32768 }, - "g4dn.2xlarge": { + "d3en.4xlarge": { "bandwidth": 25, - "disk": 225, + "disk": 112000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "2800 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.2xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "1.429657795", - "physicalProcessor": "Intel Xeon Family", + "memory": "64 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-south-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "225 GB NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "8 x 14000 HDD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.2xlarge", - "name": "g4dn.2xlarge", - "ram": 32768, + "id": "d3en.4xlarge", + "name": "d3en.4xlarge", + "ram": 65536 }, - "g4dn.4xlarge": { - "bandwidth": 25, - "disk": 225, + "d3en.6xlarge": { + "bandwidth": 40, + "disk": 168000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "4000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.4xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.6xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "2.288973384", - "physicalProcessor": "Intel Xeon Family", + "memory": "96 GiB", + "networkPerformance": "40 Gigabit", + "normalizationSizeFactor": "48", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "225 GB NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "12 x 14000 HDD", + "vcpu": "24", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.4xlarge", - "name": "g4dn.4xlarge", - "ram": 65536, + "id": "d3en.6xlarge", + "name": "d3en.6xlarge", + "ram": 98304 }, - "g4dn.8xlarge": { + "d3en.8xlarge": { "bandwidth": 50, - "disk": 900, + "disk": 224000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "5000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.8xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "4.136882129", - "physicalProcessor": "Intel Xeon Family", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-3", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "900 GB NVMe SSD", + "storage": "16 x 14000 HDD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.8xlarge", - "name": "g4dn.8xlarge", - "ram": 131072, + "id": "d3en.8xlarge", + "name": "d3en.8xlarge", + "ram": 131072 }, - "g4dn.xlarge": { + "d3en.xlarge": { "bandwidth": 25, - "disk": 125, + "disk": 28000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "None", + "dedicatedEbsThroughput": "Up to 2800 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g4dn.xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "d3en.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "1", - "physicalProcessor": "Intel Xeon Family", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "125 GB NVMe SSD", + "storage": "2 x 14000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g4dn.xlarge", - "name": "g4dn.xlarge", - "ram": 16384, + "id": "d3en.xlarge", + "name": "d3en.xlarge", + "ram": 16384 }, - "g5.12xlarge": { - "bandwidth": 40, - "disk": 3800, + "dl1.24xlarge": { + "bandwidth": 400, + "disk": 4000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "16000 Mbps", + "dedicatedEbsThroughput": "19000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpu": "4", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g5.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "dl1.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "40 Gigabit", - "normalizationSizeFactor": "5.638170974", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "768 GiB", + "networkPerformance": "400 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8275L", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "sa-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3800 GB NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "4 x 1000 GB NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "g5.12xlarge", - "name": "g5.12xlarge", - "ram": 196608, + "id": "dl1.24xlarge", + "name": "dl1.24xlarge", + "ram": 786432 }, - "g5.16xlarge": { - "bandwidth": 25, - "disk": 1900, + "dl2q.24xlarge": { + "bandwidth": 100, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "16000 Mbps", + "dedicatedEbsThroughput": "19000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", - "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g5.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "gpuMemory": "128 GiB", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "dl2q.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "4.071570577", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 GB NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "g5.16xlarge", - "name": "g5.16xlarge", - "ram": 262144, + "id": "dl2q.24xlarge", + "name": "dl2q.24xlarge", + "ram": 786432 }, - "g5.24xlarge": { - "bandwidth": 50, - "disk": 3800, + "f1.16xlarge": { + "bandwidth": 25, + "disk": 3760, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g5.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "FPGA Instances", + "instanceType": "f1.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "8.095427435", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "976 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3800 GB NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "4 x 940 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "g5.24xlarge", - "name": "g5.24xlarge", - "ram": 393216, + "id": "f1.16xlarge", + "name": "f1.16xlarge", + "ram": 999424 }, - "g5.2xlarge": { + "f1.2xlarge": { "bandwidth": 10, - "disk": 450, + "disk": 470, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "1700 Mbps", + "ecu": "31", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g5.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "FPGA Instances", + "instanceType": "f1.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", + "memory": "122 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "1.204771372", - "physicalProcessor": "AMD EPYC 7R32", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 450 GB NVMe SSD", + "storage": "1 x 470 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g5.2xlarge", - "name": "g5.2xlarge", - "ram": 32768, + "id": "f1.2xlarge", + "name": "f1.2xlarge", + "ram": 124928 }, - "g5.48xlarge": { - "bandwidth": 100, - "disk": 7600, + "f1.4xlarge": { + "bandwidth": 10, + "disk": 940, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "58", "enhancedNetworkingSupported": "Yes", - "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "g5.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "FPGA Instances", + "instanceType": "f1.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "16.190854871", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 3800 GB NVMe SSD", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "storage": "1 x 940 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "g5.48xlarge", - "name": "g5.48xlarge", - "ram": 786432, + "id": "f1.4xlarge", + "name": "f1.4xlarge", + "ram": 249856 }, - "g5.4xlarge": { - "bandwidth": 25, - "disk": 600, + "g2.2xlarge": { + "bandwidth": None, + "disk": 60, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "8000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "classicnetworkingsupport": "true", + "clockSpeed": "2.6 GHz", + "currentGeneration": "No", + "ecu": "26", + "enhancedNetworkingSupported": "No", "gpu": "1", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5.4xlarge", + "instanceType": "g2.2xlarge", + "instancesku": "YBFPE73HS26KSZV4", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "1.614314115", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "15 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2670 (Sandy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 600 GB NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 60 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "g5.4xlarge", - "name": "g5.4xlarge", - "ram": 65536, + "id": "g2.2xlarge", + "name": "g2.2xlarge", + "ram": 15360 }, - "g5.8xlarge": { - "bandwidth": 25, - "disk": 900, + "g2.8xlarge": { + "bandwidth": None, + "disk": 240, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "16000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpu": "1", + "classicnetworkingsupport": "true", + "clockSpeed": "2.6 GHz", + "currentGeneration": "No", + "ecu": "104", + "enhancedNetworkingSupported": "No", + "gpu": "4", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5.8xlarge", + "instanceType": "g2.8xlarge", + "instancesku": "NK3HFF462QV9V5JF", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "2.433399602", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "60 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2670 (Sandy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 900 GB NVMe SSD", + "storage": "2 x 120 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "g5.8xlarge", - "name": "g5.8xlarge", - "ram": 131072, + "id": "g2.8xlarge", + "name": "g2.8xlarge", + "ram": 61440 }, - "g5.xlarge": { - "bandwidth": 10, - "disk": 250, + "g3.16xlarge": { + "bandwidth": 20, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.8 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", - "ecu": "None", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", - "gpu": "1", + "gpu": "4", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "g3.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "1", - "physicalProcessor": "AMD EPYC 7R32", + "memory": "488 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 250 GB NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "g5.xlarge", - "name": "g5.xlarge", - "ram": 16384, + "id": "g3.16xlarge", + "name": "g3.16xlarge", + "ram": 499712 }, - "g5g.16xlarge": { - "bandwidth": 25, + "g3.4xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "58", "enhancedNetworkingSupported": "Yes", - "gpu": "2", + "gpu": "1", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "g3.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "6.533333333", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "122 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "g5g.16xlarge", - "name": "g5g.16xlarge", - "ram": 131072, + "id": "g3.4xlarge", + "name": "g3.4xlarge", + "ram": 124928 }, - "g5g.2xlarge": { + "g3.8xlarge": { "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", - "gpu": "1", + "gpu": "2", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5g.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "g3.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "1.323809524", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "g5g.2xlarge", - "name": "g5g.2xlarge", - "ram": 16384, + "id": "g3.8xlarge", + "name": "g3.8xlarge", + "ram": 249856 }, - "g5g.4xlarge": { + "g3s.xlarge": { "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4750 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "100 Mbps", + "ecu": "13", "enhancedNetworkingSupported": "Yes", "gpu": "1", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5g.4xlarge", + "instanceType": "g3s.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "1.971428571", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "30.5 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "g5g.4xlarge", - "name": "g5g.4xlarge", - "ram": 32768, + "id": "g3s.xlarge", + "name": "g3s.xlarge", + "ram": 31232 }, - "g5g.8xlarge": { - "bandwidth": 12, - "disk": 0, + "g4ad.16xlarge": { + "bandwidth": 25, + "disk": 2400, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9500 Mbps", + "dedicatedEbsThroughput": "6000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "1", + "gpu": "4", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5g.8xlarge", + "instanceType": "g4ad.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12 Gigabit", - "normalizationSizeFactor": "3.266666667", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "2400 GB NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "g5g.8xlarge", - "name": "g5g.8xlarge", - "ram": 65536, + "id": "g4ad.16xlarge", + "name": "g4ad.16xlarge", + "ram": 262144 }, - "g5g.xlarge": { + "g4ad.2xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 300, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "Up to 3000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpu": "1", "gpuMemory": "NA", "instanceFamily": "GPU instance", - "instanceType": "g5g.xlarge", + "instanceType": "g4ad.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", + "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "1", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "19.97394", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "300 GB NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "g5g.xlarge", - "name": "g5g.xlarge", - "ram": 8192, + "id": "g4ad.2xlarge", + "name": "g4ad.2xlarge", + "ram": 32768 }, - "h1.16xlarge": { - "bandwidth": 25, - "disk": 16000, + "g4ad.4xlarge": { + "bandwidth": 10, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "Up to 3000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "h1.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g4ad.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 2000 HDD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "600 GB NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "h1.16xlarge", - "name": "h1.16xlarge", - "ram": 262144, + "id": "g4ad.4xlarge", + "name": "g4ad.4xlarge", + "ram": 65536 }, - "h1.2xlarge": { - "bandwidth": 10, - "disk": 2000, + "g4ad.8xlarge": { + "bandwidth": 15, + "disk": 1200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1750 Mbps", - "ecu": "31", + "dedicatedEbsThroughput": "3000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "2", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "h1.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g4ad.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "128 GiB", + "networkPerformance": "15 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 2000 HDD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1200 GB NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "h1.2xlarge", - "name": "h1.2xlarge", - "ram": 32768, + "id": "g4ad.8xlarge", + "name": "g4ad.8xlarge", + "ram": 131072 }, - "h1.4xlarge": { + "g4ad.xlarge": { "bandwidth": 10, - "disk": 4000, + "disk": 150, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "58", + "dedicatedEbsThroughput": "Up to 3000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "h1.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g4ad.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", + "memory": "16 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "13.97113", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 2000 HDD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "150 GB NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "h1.4xlarge", - "name": "h1.4xlarge", - "ram": 65536, + "id": "g4ad.xlarge", + "name": "g4ad.xlarge", + "ram": 16384 }, - "h1.8xlarge": { - "bandwidth": 10, - "disk": 8000, + "g4dn.12xlarge": { + "bandwidth": 50, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "97", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "h1.8xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "192 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "7.437262357", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 2000 HDD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "900 GB NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "h1.8xlarge", - "name": "h1.8xlarge", - "ram": 131072, + "id": "g4dn.12xlarge", + "name": "g4dn.12xlarge", + "ram": 196608 }, - "hpc6a.48xlarge": { - "bandwidth": 100, - "disk": 0, + "g4dn.16xlarge": { + "bandwidth": 50, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2085 Mbps", + "dedicatedEbsThroughput": "7000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Compute optimized", - "instanceType": "hpc6a.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "384", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "256 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "8.273764259", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-north-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "900 GB NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "hpc6a.48xlarge", - "name": "hpc6a.48xlarge", - "ram": 393216, + "id": "g4dn.16xlarge", + "name": "g4dn.16xlarge", + "ram": 262144 }, - "hpc6id.32xlarge": { - "bandwidth": 200, - "disk": 15200, + "g4dn.2xlarge": { + "bandwidth": 25, + "disk": 225, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2085 Mbps", + "dedicatedEbsThroughput": "3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Compute optimized", - "instanceType": "hpc6id.32xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "1024 GiB", - "networkPerformance": "200 Gigabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon Scalable (Icelake)", + "memory": "32 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "1.429657795", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "eu-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 3800 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "225 GB NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "hpc6id.32xlarge", - "name": "hpc6id.32xlarge", - "ram": 1048576, - }, - "hpc7g.16xlarge": { - "bandwidth": 200, - "disk": 0, + "id": "g4dn.2xlarge", + "name": "g4dn.2xlarge", + "ram": 32768 + }, + "g4dn.4xlarge": { + "bandwidth": 25, + "disk": 225, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "87 Mbps", + "dedicatedEbsThroughput": "3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Compute optimized", - "instanceType": "hpc7g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "200 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "2.288973384", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "225 GB NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "hpc7g.16xlarge", - "name": "hpc7g.16xlarge", - "ram": 131072, + "id": "g4dn.4xlarge", + "name": "g4dn.4xlarge", + "ram": 65536 }, - "hpc7g.4xlarge": { - "bandwidth": 200, - "disk": 0, + "g4dn.8xlarge": { + "bandwidth": 50, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "87 Mbps", + "dedicatedEbsThroughput": "7000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Compute optimized", - "instanceType": "hpc7g.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "200 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "4.136882129", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "900 GB NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "hpc7g.4xlarge", - "name": "hpc7g.4xlarge", - "ram": 131072, + "id": "g4dn.8xlarge", + "name": "g4dn.8xlarge", + "ram": 131072 }, - "hpc7g.8xlarge": { - "bandwidth": 200, - "disk": 0, + "g4dn.xlarge": { + "bandwidth": 25, + "disk": 125, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.6 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "87 Mbps", + "dedicatedEbsThroughput": "3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Compute optimized", - "instanceType": "hpc7g.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "g4dn.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "200 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "16 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "1", + "physicalProcessor": "Intel Xeon Family", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "125 GB NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "hpc7g.8xlarge", - "name": "hpc7g.8xlarge", - "ram": 131072, + "id": "g4dn.xlarge", + "name": "g4dn.xlarge", + "ram": 16384 }, - "hs1.8xlarge": { - "bandwidth": 10, - "disk": 48000, + "g5.12xlarge": { + "bandwidth": 40, + "disk": 3800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2 GHz", - "currentGeneration": "No", - "ecu": "35", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "16000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "hs1.8xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g5.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "117 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2650", + "memory": "192 GiB", + "networkPerformance": "40 Gigabit", + "normalizationSizeFactor": "5.638170974", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "24 x 2000 HDD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 3800 GB NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "hs1.8xlarge", - "name": "hs1.8xlarge", - "ram": 119808, + "id": "g5.12xlarge", + "name": "g5.12xlarge", + "ram": 196608 }, - "i2.2xlarge": { - "bandwidth": None, - "disk": 1600, + "g5.16xlarge": { + "bandwidth": 25, + "disk": 1900, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "1500 Mbps", - "ecu": "27", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "16000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i2.2xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g5.16xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "61 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "4.071570577", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 800 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 GB NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "i2.2xlarge", - "name": "i2.2xlarge", - "ram": 62464, + "id": "g5.16xlarge", + "name": "g5.16xlarge", + "ram": 262144 }, - "i2.4xlarge": { - "bandwidth": None, - "disk": 3200, + "g5.24xlarge": { + "bandwidth": 50, + "disk": 3800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "1500 Mbps", - "ecu": "53", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i2.4xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g5.24xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "122 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "384 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "8.095427435", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 800 SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 3800 GB NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "i2.4xlarge", - "name": "i2.4xlarge", - "ram": 124928, + "id": "g5.24xlarge", + "name": "g5.24xlarge", + "ram": 393216 }, - "i2.8xlarge": { + "g5.2xlarge": { "bandwidth": 10, - "disk": 6400, + "disk": 450, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "1500 Mbps", - "ecu": "104", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i2.8xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g5.2xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "1.204771372", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 800 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "1 x 450 GB NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "i2.8xlarge", - "name": "i2.8xlarge", - "ram": 249856, + "id": "g5.2xlarge", + "name": "g5.2xlarge", + "ram": 32768 }, - "i2.large": { - "bandwidth": None, - "disk": 800, + "g5.48xlarge": { + "bandwidth": 100, + "disk": 7600, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "7", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i2.large", - "instancesku": "K2PQBPTWRQFNBMT4", + "instanceFamily": "GPU instance", + "instanceType": "g5.48xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "16.190854871", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-south-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 800 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "2 x 3800 GB NVMe SSD", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "i2.large", - "name": "i2.large", - "ram": 15360, + "id": "g5.48xlarge", + "name": "g5.48xlarge", + "ram": 786432 }, - "i2.xlarge": { - "bandwidth": None, - "disk": 800, + "g5.4xlarge": { + "bandwidth": 25, + "disk": 600, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "750 Mbps", - "ecu": "14", + "classicnetworkingsupport": "false", + "clockSpeed": "2.8 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "8000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i2.xlarge", + "instanceFamily": "GPU instance", + "instanceType": "g5.4xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "30.5 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "64 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "1.614314115", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 800 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 600 GB NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "i2.xlarge", - "name": "i2.xlarge", - "ram": 31232, + "id": "g5.4xlarge", + "name": "g5.4xlarge", + "ram": 65536 }, - "i3.16xlarge": { - "bandwidth": 20, - "disk": 15200, + "g5.8xlarge": { + "bandwidth": 25, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "16000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "488 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "128 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "2.433399602", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-north-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 1900 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "1 x 900 GB NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "i3.16xlarge", - "name": "i3.16xlarge", - "ram": 499712, + "id": "g5.8xlarge", + "name": "g5.8xlarge", + "ram": 131072 }, - "i3.2xlarge": { + "g5.xlarge": { "bandwidth": 10, - "disk": 1900, + "disk": 250, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.8 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1750 Mbps", - "ecu": "31", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "61 GiB", + "memory": "16 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "1", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 250 GB NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "i3.2xlarge", - "name": "i3.2xlarge", - "ram": 62464, + "id": "g5.xlarge", + "name": "g5.xlarge", + "ram": 16384 }, - "i3.4xlarge": { - "bandwidth": 10, - "disk": 3800, + "g5g.16xlarge": { + "bandwidth": 25, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "58", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "2", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5g.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "122 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "128 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "6.533333333", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "i3.4xlarge", - "name": "i3.4xlarge", - "ram": 124928, + "id": "g5g.16xlarge", + "name": "g5g.16xlarge", + "ram": 131072 }, - "i3.8xlarge": { + "g5g.2xlarge": { "bandwidth": 10, - "disk": 7600, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "97", + "dedicatedEbsThroughput": "Up to 4500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5g.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "1.323809524", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "i3.8xlarge", - "name": "i3.8xlarge", - "ram": 249856, + "id": "g5g.2xlarge", + "name": "g5g.2xlarge", + "ram": 16384 }, - "i3.large": { + "g5g.4xlarge": { "bandwidth": 10, - "disk": 475, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "425 Mbps", - "ecu": "8", + "dedicatedEbsThroughput": "4750 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5g.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15.25 GiB", + "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "1.971428571", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "i3.large", - "name": "i3.large", - "ram": 15616, + "id": "g5g.4xlarge", + "name": "g5g.4xlarge", + "ram": 32768 }, - "i3.xlarge": { - "bandwidth": 10, - "disk": 950, + "g5g.8xlarge": { + "bandwidth": 12, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "850 Mbps", - "ecu": "16", + "dedicatedEbsThroughput": "9500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5g.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "30.5 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "64 GiB", + "networkPerformance": "Up to 12 Gigabit", + "normalizationSizeFactor": "3.266666667", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "i3.xlarge", - "name": "i3.xlarge", - "ram": 31232, + "id": "g5g.8xlarge", + "name": "g5g.8xlarge", + "ram": 65536 }, - "i3en.12xlarge": { - "bandwidth": 50, - "disk": 30000, + "g5g.xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "168", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "GPU instance", + "instanceType": "g5g.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "1", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 7500 NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "i3en.12xlarge", - "name": "i3en.12xlarge", - "ram": 393216, + "id": "g5g.xlarge", + "name": "g5g.xlarge", + "ram": 8192 }, - "i3en.24xlarge": { - "bandwidth": 100, - "disk": 60000, + "g6.12xlarge": { + "bandwidth": 40, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "337", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "4", + "gpuMemory": "96 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "192 GiB", + "networkPerformance": "40 Gigabit", + "normalizationSizeFactor": "5.717693837", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 7500 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "4 X 940 GB NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "i3en.24xlarge", - "name": "i3en.24xlarge", - "ram": 786432, + "id": "g6.12xlarge", + "name": "g6.12xlarge", + "ram": 196608 }, - "i3en.2xlarge": { + "g6.16xlarge": { "bandwidth": 25, - "disk": 5000, + "disk": 1880, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", - "ecu": "37", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "4.220675944", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 2500 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "2 x 940 GB NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "i3en.2xlarge", - "name": "i3en.2xlarge", - "ram": 65536, + "id": "g6.16xlarge", + "name": "g6.16xlarge", + "ram": 262144 }, - "i3en.3xlarge": { - "bandwidth": 25, - "disk": 7500, + "g6.24xlarge": { + "bandwidth": 50, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.3xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "4", + "gpuMemory": "96 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "96 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "24", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "384 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "8.294234592", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "sa-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 7500 NVMe SSD", - "vcpu": "12", - "vpcnetworkingsupport": "true", + "storage": "4 X 940 GB NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "i3en.3xlarge", - "name": "i3en.3xlarge", - "ram": 98304, + "id": "g6.24xlarge", + "name": "g6.24xlarge", + "ram": 393216 }, - "i3en.6xlarge": { - "bandwidth": 25, - "disk": 15000, + "g6.2xlarge": { + "bandwidth": 10, + "disk": 450, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "Up to 5000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.6xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "48", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "1.21471173", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "sa-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 7500 NVMe SSD", - "vcpu": "24", - "vpcnetworkingsupport": "true", + "storage": "1 x 450 GB NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "i3en.6xlarge", - "name": "i3en.6xlarge", - "ram": 196608, + "id": "g6.2xlarge", + "name": "g6.2xlarge", + "ram": 32768 }, - "i3en.large": { - "bandwidth": 25, - "disk": 1250, + "g6.48xlarge": { + "bandwidth": 100, + "disk": 7520, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", - "ecu": "10", + "dedicatedEbsThroughput": "60000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "8", + "gpuMemory": "192 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "16.58846918", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1250 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "8 x 940 NVMe SSD", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "i3en.large", - "name": "i3en.large", - "ram": 16384, + "id": "g6.48xlarge", + "name": "g6.48xlarge", + "ram": 786432 }, - "i3en.xlarge": { + "g6.4xlarge": { "bandwidth": 25, - "disk": 2500, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "8000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i3en.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", + "memory": "64 GiB", "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8175", + "normalizationSizeFactor": "1.644135189", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 2500 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 600 GB NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "i3en.xlarge", - "name": "i3en.xlarge", - "ram": 32768, + "id": "g6.4xlarge", + "name": "g6.4xlarge", + "ram": 65536 }, - "i4g.16xlarge": { - "bandwidth": 37500, - "disk": 15000, + "g6.8xlarge": { + "bandwidth": 25, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "16000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4g.16xlarge", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "37500 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "128 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "2.502982107", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 3750 SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "2 x 450 GB NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "i4g.16xlarge", - "name": "i4g.16xlarge", - "ram": 524288, + "id": "g6.8xlarge", + "name": "g6.8xlarge", + "ram": 131072 }, - "i4g.2xlarge": { - "bandwidth": 12, - "disk": 1875, + "g6.xlarge": { + "bandwidth": 10, + "disk": 250, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 5000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4g.2xlarge", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "g6.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "1", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1875 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 250 GB NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "i4g.2xlarge", - "name": "i4g.2xlarge", - "ram": 65536, + "id": "g6.xlarge", + "name": "g6.xlarge", + "ram": 16384 }, - "i4g.4xlarge": { + "gr6.4xlarge": { "bandwidth": 25, - "disk": 3750, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "8000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4g.4xlarge", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "gr6.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "1", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3750 SSD", + "storage": "1 x 600 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "i4g.4xlarge", - "name": "i4g.4xlarge", - "ram": 131072, + "id": "gr6.4xlarge", + "name": "gr6.4xlarge", + "ram": 131072 }, - "i4g.8xlarge": { - "bandwidth": 18750, - "disk": 7500, + "gr6.8xlarge": { + "bandwidth": 25, + "disk": 900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "16000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4g.8xlarge", + "gpu": "1", + "gpuMemory": "24 GB", + "instanceFamily": "GPU instance", + "instanceType": "gr6.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "18750 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "1.589397089", + "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 3750 SSD", + "storage": "2 x 450 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "i4g.8xlarge", - "name": "i4g.8xlarge", - "ram": 262144, + "id": "gr6.8xlarge", + "name": "gr6.8xlarge", + "ram": 262144 }, - "i4g.large": { - "bandwidth": 10, - "disk": 468, + "h1.16xlarge": { + "bandwidth": 25, + "disk": 16000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "i4g.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "h1.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 468 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "8 x 2000 HDD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "i4g.large", - "name": "i4g.large", - "ram": 16384, + "id": "h1.16xlarge", + "name": "h1.16xlarge", + "ram": 262144 }, - "i4g.xlarge": { + "h1.2xlarge": { "bandwidth": 10, - "disk": 937, + "disk": 2000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "1750 Mbps", + "ecu": "31", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "i4g.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "h1.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 937 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 2000 HDD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "i4g.xlarge", - "name": "i4g.xlarge", - "ram": 32768, + "id": "h1.2xlarge", + "name": "h1.2xlarge", + "ram": 32768 }, - "i4i.16xlarge": { - "bandwidth": 35000, - "disk": 15000, + "h1.4xlarge": { + "bandwidth": 10, + "disk": 4000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "58", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "i4i.16xlarge", + "instanceType": "h1.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "35000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 3750 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "2 x 2000 HDD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "i4i.16xlarge", - "name": "i4i.16xlarge", - "ram": 524288, + "id": "h1.4xlarge", + "name": "h1.4xlarge", + "ram": 65536 }, - "i4i.2xlarge": { - "bandwidth": 12, - "disk": 1875, + "h1.8xlarge": { + "bandwidth": 10, + "disk": 8000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "i4i.2xlarge", + "instanceType": "h1.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "128 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1875 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "4 x 2000 HDD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "i4i.2xlarge", - "name": "i4i.2xlarge", - "ram": 65536, + "id": "h1.8xlarge", + "name": "h1.8xlarge", + "ram": 131072 }, - "i4i.32xlarge": { - "bandwidth": 75000, - "disk": 30000, + "hpc6a.48xlarge": { + "bandwidth": 100, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.95 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "Up to 2085 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4i.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "hpc6a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "1024 GiB", - "networkPerformance": "75000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "384 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 3750 SSD", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "i4i.32xlarge", - "name": "i4i.32xlarge", - "ram": 1048576, + "id": "hpc6a.48xlarge", + "name": "hpc6a.48xlarge", + "ram": 393216 }, - "i4i.4xlarge": { - "bandwidth": 25, - "disk": 3750, + "hpc6id.32xlarge": { + "bandwidth": 200, + "disk": 15200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 2085 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4i.4xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "hpc6id.32xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "1024 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon Scalable (Icelake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3750 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "4 x 3800 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "i4i.4xlarge", - "name": "i4i.4xlarge", - "ram": 131072, + "id": "hpc6id.32xlarge", + "name": "hpc6id.32xlarge", + "ram": 1048576 }, - "i4i.8xlarge": { - "bandwidth": 18750, - "disk": 7500, + "hpc7a.12xlarge": { + "bandwidth": 300, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4i.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "18750 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "768 GiB", + "networkPerformance": "300 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 3750 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "24", + "vpcnetworkingsupport": "true" }, - "id": "i4i.8xlarge", - "name": "i4i.8xlarge", - "ram": 262144, + "id": "hpc7a.12xlarge", + "name": "hpc7a.12xlarge", + "ram": 786432 }, - "i4i.large": { - "bandwidth": 10, - "disk": 468, + "hpc7a.24xlarge": { + "bandwidth": 300, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4i.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "768 GiB", + "networkPerformance": "300 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 468 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "i4i.large", - "name": "i4i.large", - "ram": 16384, + "id": "hpc7a.24xlarge", + "name": "hpc7a.24xlarge", + "ram": 786432 }, - "i4i.xlarge": { - "bandwidth": 10, - "disk": 937, + "hpc7a.48xlarge": { + "bandwidth": 300, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "i4i.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "768 GiB", + "networkPerformance": "300 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 937 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "i4i.xlarge", - "name": "i4i.xlarge", - "ram": 32768, + "id": "hpc7a.48xlarge", + "name": "hpc7a.48xlarge", + "ram": 786432 }, - "im4gn.16xlarge": { - "bandwidth": 100, - "disk": 30000, + "hpc7a.96xlarge": { + "bandwidth": 300, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "38000 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "im4gn.16xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7a.96xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "768 GiB", + "networkPerformance": "300 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 7500 SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.16xlarge", - "name": "im4gn.16xlarge", - "ram": 262144, + "id": "hpc7a.96xlarge", + "name": "hpc7a.96xlarge", + "ram": 786432 }, - "im4gn.2xlarge": { - "bandwidth": 25, - "disk": 3750, + "hpc7g.16xlarge": { + "bandwidth": 200, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "im4gn.2xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7g.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "128 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3750 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.2xlarge", - "name": "im4gn.2xlarge", - "ram": 32768, + "id": "hpc7g.16xlarge", + "name": "hpc7g.16xlarge", + "ram": 131072 }, - "im4gn.4xlarge": { - "bandwidth": 25, - "disk": 7500, + "hpc7g.4xlarge": { + "bandwidth": 200, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9500 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "im4gn.4xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7g.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "128 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 7500 SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.4xlarge", - "name": "im4gn.4xlarge", - "ram": 65536, + "id": "hpc7g.4xlarge", + "name": "hpc7g.4xlarge", + "ram": 131072 }, - "im4gn.8xlarge": { - "bandwidth": 50, - "disk": 15000, + "hpc7g.8xlarge": { + "bandwidth": 200, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", + "dedicatedEbsThroughput": "87 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Storage optimized", - "instanceType": "im4gn.8xlarge", + "instanceFamily": "Compute optimized", + "instanceType": "hpc7g.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 7500 SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.8xlarge", - "name": "im4gn.8xlarge", - "ram": 131072, + "id": "hpc7g.8xlarge", + "name": "hpc7g.8xlarge", + "ram": 131072 }, - "im4gn.large": { - "bandwidth": 25, - "disk": 937, + "hs1.8xlarge": { + "bandwidth": 10, + "disk": 48000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "classicnetworkingsupport": "true", + "clockSpeed": "2 GHz", + "currentGeneration": "No", + "ecu": "35", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "im4gn.large", + "instanceType": "hs1.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "117 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2650", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 937 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "24 x 2000 HDD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.large", - "name": "im4gn.large", - "ram": 8192, + "id": "hs1.8xlarge", + "name": "hs1.8xlarge", + "ram": 119808 }, - "im4gn.xlarge": { - "bandwidth": 25, - "disk": 1875, + "i2.2xlarge": { + "bandwidth": None, + "disk": 1600, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", + "classicnetworkingsupport": "true", "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", - "ecu": "NA", + "currentGeneration": "No", + "dedicatedEbsThroughput": "1500 Mbps", + "ecu": "27", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "im4gn.xlarge", + "instanceType": "i2.2xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "61 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1875 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "2 x 800 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "im4gn.xlarge", - "name": "im4gn.xlarge", - "ram": 16384, + "id": "i2.2xlarge", + "name": "i2.2xlarge", + "ram": 62464 }, - "inf1.24xlarge": { - "bandwidth": 100, - "disk": 0, + "i2.4xlarge": { + "bandwidth": None, + "disk": 3200, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "1500 Mbps", + "ecu": "53", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf1.24xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i2.4xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "NA", - "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "memory": "122 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "4 x 800 SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "inf1.24xlarge", - "name": "inf1.24xlarge", - "ram": 196608, + "id": "i2.4xlarge", + "name": "i2.4xlarge", + "ram": 124928 }, - "inf1.2xlarge": { - "bandwidth": 25, - "disk": 0, + "i2.8xlarge": { + "bandwidth": 10, + "disk": 6400, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "875 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "1500 Mbps", + "ecu": "104", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf1.2xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i2.8xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "NA", - "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel Turbo", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "8 x 800 SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "inf1.2xlarge", - "name": "inf1.2xlarge", - "ram": 16384, + "id": "i2.8xlarge", + "name": "i2.8xlarge", + "ram": 249856 }, - "inf1.6xlarge": { - "bandwidth": 25, - "disk": 0, + "i2.large": { + "bandwidth": None, + "disk": 800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "7", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf1.6xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i2.large", + "instancesku": "5X8AMM6CFGNDPE7S", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "48 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "NA", - "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "memory": "15 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "regionCode": "sa-east-1", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "24", - "vpcnetworkingsupport": "true", + "storage": "1 x 800 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "inf1.6xlarge", - "name": "inf1.6xlarge", - "ram": 49152, + "id": "i2.large", + "name": "i2.large", + "ram": 15360 }, - "inf1.xlarge": { - "bandwidth": 25, - "disk": 0, + "i2.xlarge": { + "bandwidth": None, + "disk": 800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "875 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "750 Mbps", + "ecu": "14", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf1.xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i2.xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "NA", - "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "memory": "30.5 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 800 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "inf1.xlarge", - "name": "inf1.xlarge", - "ram": 8192, + "id": "i2.xlarge", + "name": "i2.xlarge", + "ram": 31232 }, - "inf2.24xlarge": { - "bandwidth": 50, - "disk": 0, + "i3.16xlarge": { + "bandwidth": 20, + "disk": 15200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30 Gbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "192 GB", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf2.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i3.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "8.560582329", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "488 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "8 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "inf2.24xlarge", - "name": "inf2.24xlarge", - "ram": 393216, + "id": "i3.16xlarge", + "name": "i3.16xlarge", + "ram": 499712 }, - "inf2.48xlarge": { - "bandwidth": 100, - "disk": 0, + "i3.2xlarge": { + "bandwidth": 10, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60 Gbps", - "ecu": "NA", + "dedicatedEbsThroughput": "1750 Mbps", + "ecu": "31", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "384 GB", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf2.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i3.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "17.12116466", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "61 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "inf2.48xlarge", - "name": "inf2.48xlarge", - "ram": 786432, + "id": "i3.2xlarge", + "name": "i3.2xlarge", + "ram": 62464 }, - "inf2.8xlarge": { - "bandwidth": 25, - "disk": 0, + "i3.4xlarge": { + "bandwidth": 10, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10 Gbps", - "ecu": "NA", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "58", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "32 GB", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf2.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i3.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "2.595436335", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "122 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "inf2.8xlarge", - "name": "inf2.8xlarge", - "ram": 131072, + "id": "i3.4xlarge", + "name": "i3.4xlarge", + "ram": 124928 }, - "inf2.xlarge": { - "bandwidth": 15, - "disk": 0, + "i3.8xlarge": { + "bandwidth": 10, + "disk": 7600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10 Gbps", - "ecu": "NA", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "32 GB", - "instanceFamily": "Machine Learning ASIC Instances", - "instanceType": "inf2.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i3.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "1", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "4 x 1900 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "inf2.xlarge", - "name": "inf2.xlarge", - "ram": 16384, + "id": "i3.8xlarge", + "name": "i3.8xlarge", + "ram": 249856 }, - "is4gen.2xlarge": { - "bandwidth": 25, - "disk": 7500, + "i3.large": { + "bandwidth": 10, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "425 Mbps", + "ecu": "8", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "48 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "15.25 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 7500 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 475 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.2xlarge", - "name": "is4gen.2xlarge", - "ram": 49152, + "id": "i3.large", + "name": "i3.large", + "ram": 15616 }, - "is4gen.4xlarge": { - "bandwidth": 25, - "disk": 15000, + "i3.xlarge": { + "bandwidth": 10, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "850 Mbps", + "ecu": "16", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "96 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "30.5 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 7500 SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 950 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.4xlarge", - "name": "is4gen.4xlarge", - "ram": 98304, + "id": "i3.xlarge", + "name": "i3.xlarge", + "ram": 31232 }, - "is4gen.8xlarge": { + "i3en.12xlarge": { "bandwidth": 50, "disk": 30000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "168", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3en.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", + "memory": "384 GiB", "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 7500 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "4 x 7500 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.8xlarge", - "name": "is4gen.8xlarge", - "ram": 196608, + "id": "i3en.12xlarge", + "name": "i3en.12xlarge", + "ram": 393216 }, - "is4gen.large": { - "bandwidth": 25, - "disk": 1875, + "i3en.24xlarge": { + "bandwidth": 100, + "disk": 60000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "337", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3en.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "12 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1875 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "8 x 7500 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.large", - "name": "is4gen.large", - "ram": 12288, + "id": "i3en.24xlarge", + "name": "i3en.24xlarge", + "ram": 786432 }, - "is4gen.medium": { + "i3en.2xlarge": { "bandwidth": 25, - "disk": 937, + "disk": 5000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "37", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3en.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "6 GiB", + "memory": "64 GiB", "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 937 SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "2 x 2500 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.medium", - "name": "is4gen.medium", - "ram": 6144, + "id": "i3en.2xlarge", + "name": "i3en.2xlarge", + "ram": 65536 }, - "is4gen.xlarge": { + "i3en.3xlarge": { "bandwidth": 25, - "disk": 3750, + "disk": 7500, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 9500 Mbps", + "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Storage optimized", - "instanceType": "is4gen.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "i3en.3xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "24 GiB", + "memory": "96 GiB", "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "normalizationSizeFactor": "24", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 3750 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 7500 NVMe SSD", + "vcpu": "12", + "vpcnetworkingsupport": "true" }, - "id": "is4gen.xlarge", - "name": "is4gen.xlarge", - "ram": 24576, + "id": "i3en.3xlarge", + "name": "i3en.3xlarge", + "ram": 98304 }, - "m1.large": { - "bandwidth": None, - "disk": 840, + "i3en.6xlarge": { + "bandwidth": 25, + "disk": 15000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "4", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m1.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "i3en.6xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "7.5 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Family", + "memory": "192 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "48", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 420 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "2 x 7500 NVMe SSD", + "vcpu": "24", + "vpcnetworkingsupport": "true" }, - "id": "m1.large", - "name": "m1.large", - "ram": 7680, + "id": "i3en.6xlarge", + "name": "i3en.6xlarge", + "ram": 196608 }, - "m1.medium": { - "bandwidth": None, - "disk": 410, + "i3en.large": { + "bandwidth": 25, + "disk": 1250, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "2", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "10", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m1.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "i3en.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "3.75 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "2", - "physicalProcessor": "Intel Xeon Family", - "processorArchitecture": "32-bit or 64-bit", + "memory": "16 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 410 SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "1 x 1250 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m1.medium", - "name": "m1.medium", - "ram": 3840, + "id": "i3en.large", + "name": "i3en.large", + "ram": 16384 }, - "m1.small": { - "bandwidth": None, - "disk": 160, + "i3en.xlarge": { + "bandwidth": 25, + "disk": 2500, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "1", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m1.small", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Storage optimized", + "instanceType": "i3en.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "1.7 GiB", - "networkPerformance": "Low", - "normalizationSizeFactor": "1", - "physicalProcessor": "Intel Xeon Family", - "processorArchitecture": "32-bit or 64-bit", - "regionCode": "us-west-2", + "memory": "32 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 160 SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "1 x 2500 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m1.small", - "name": "m1.small", - "ram": 1740, + "id": "i3en.xlarge", + "name": "i3en.xlarge", + "ram": 32768 }, - "m1.xlarge": { - "bandwidth": None, - "disk": 1680, + "i4g.16xlarge": { + "bandwidth": 37500, + "disk": 15000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "8", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m1.xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Family", + "memory": "512 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 420 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "4 x 3750 SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m1.xlarge", - "name": "m1.xlarge", - "ram": 15360, + "id": "i4g.16xlarge", + "name": "i4g.16xlarge", + "ram": 524288 }, - "m2.2xlarge": { - "bandwidth": None, - "disk": 850, + "i4g.2xlarge": { + "bandwidth": 12, + "disk": 1875, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "13", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "m2.2xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "34.2 GiB", - "networkPerformance": "Moderate", + "memory": "64 GiB", + "networkPerformance": "Up to 12 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Family", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 850 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 1875 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m2.2xlarge", - "name": "m2.2xlarge", - "ram": 35020, + "id": "i4g.2xlarge", + "name": "i4g.2xlarge", + "ram": 65536 }, - "m2.4xlarge": { - "bandwidth": None, - "disk": 1680, + "i4g.4xlarge": { + "bandwidth": 25, + "disk": 3750, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "26", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "m2.4xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "68.4 GiB", - "networkPerformance": "High", + "memory": "128 GiB", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Family", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 840 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 3750 SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m2.4xlarge", - "name": "m2.4xlarge", - "ram": 70041, + "id": "i4g.4xlarge", + "name": "i4g.4xlarge", + "ram": 131072 }, - "m2.xlarge": { - "bandwidth": None, - "disk": 420, + "i4g.8xlarge": { + "bandwidth": 18750, + "disk": 7500, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "currentGeneration": "No", - "ecu": "6.5", - "enhancedNetworkingSupported": "No", - "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "m2.xlarge", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "17.1 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Family", + "memory": "256 GiB", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 420 SSD", + "storage": "2 x 3750 SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "i4g.8xlarge", + "name": "i4g.8xlarge", + "ram": 262144 + }, + "i4g.large": { + "bandwidth": 10, + "disk": 468, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 468 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m2.xlarge", - "name": "m2.xlarge", - "ram": 17510, + "id": "i4g.large", + "name": "i4g.large", + "ram": 16384 }, - "m3.2xlarge": { - "bandwidth": None, - "disk": 160, + "i4g.xlarge": { + "bandwidth": 10, + "disk": 937, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "1000 Mbps", - "ecu": "26", - "enhancedNetworkingSupported": "No", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m3.2xlarge", + "instanceFamily": "Storage optimized", + "instanceType": "i4g.xlarge", "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 937 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "i4g.xlarge", + "name": "i4g.xlarge", + "ram": 32768 + }, + "i4i.12xlarge": { + "bandwidth": 28125, + "disk": 11250, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "15000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.12xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "30 GiB", - "networkPerformance": "High", + "memory": "384 GiB", + "networkPerformance": "28125 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "3 x 3750 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.12xlarge", + "name": "i4i.12xlarge", + "ram": 393216 + }, + "i4i.16xlarge": { + "bandwidth": 35000, + "disk": 15000, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "512 GiB", + "networkPerformance": "35000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-south-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 3750 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.16xlarge", + "name": "i4i.16xlarge", + "ram": 524288 + }, + "i4i.24xlarge": { + "bandwidth": 56250, + "disk": 22500, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "56250 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "6 x 3750 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.24xlarge", + "name": "i4i.24xlarge", + "ram": 786432 + }, + "i4i.2xlarge": { + "bandwidth": 12, + "disk": 1875, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 12 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 80 SSD", + "storage": "1 x 1875 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m3.2xlarge", - "name": "m3.2xlarge", - "ram": 30720, + "id": "i4i.2xlarge", + "name": "i4i.2xlarge", + "ram": 65536 }, - "m3.large": { - "bandwidth": None, - "disk": 32, + "i4i.32xlarge": { + "bandwidth": 75000, + "disk": 30000, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "6.5", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m3.large", - "intelAvx2Available": "No", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.32xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "7.5 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "memory": "1024 GiB", + "networkPerformance": "75000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 32 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "8 x 3750 SSD", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "m3.large", - "name": "m3.large", - "ram": 7680, + "id": "i4i.32xlarge", + "name": "i4i.32xlarge", + "ram": 1048576 }, - "m3.medium": { - "bandwidth": None, - "disk": 4, + "i4i.4xlarge": { + "bandwidth": 25, + "disk": 3750, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 3750 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.4xlarge", + "name": "i4i.4xlarge", + "ram": 131072 + }, + "i4i.8xlarge": { + "bandwidth": 18750, + "disk": 7500, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 3750 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.8xlarge", + "name": "i4i.8xlarge", + "ram": 262144 + }, + "i4i.large": { + "bandwidth": 10, + "disk": 468, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 468 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.large", + "name": "i4i.large", + "ram": 16384 + }, + "i4i.xlarge": { + "bandwidth": 10, + "disk": 937, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "i4i.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 937 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "i4i.xlarge", + "name": "i4i.xlarge", + "ram": 32768 + }, + "im4gn.16xlarge": { + "bandwidth": 100, + "disk": 30000, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "38000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 7500 SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.16xlarge", + "name": "im4gn.16xlarge", + "ram": 262144 + }, + "im4gn.2xlarge": { + "bandwidth": 25, + "disk": 3750, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 3750 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.2xlarge", + "name": "im4gn.2xlarge", + "ram": 32768 + }, + "im4gn.4xlarge": { + "bandwidth": 25, + "disk": 7500, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 7500 SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.4xlarge", + "name": "im4gn.4xlarge", + "ram": 65536 + }, + "im4gn.8xlarge": { + "bandwidth": 50, + "disk": 15000, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 7500 SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.8xlarge", + "name": "im4gn.8xlarge", + "ram": 131072 + }, + "im4gn.large": { + "bandwidth": 25, + "disk": 937, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 937 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.large", + "name": "im4gn.large", + "ram": 8192 + }, + "im4gn.xlarge": { + "bandwidth": 25, + "disk": 1875, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "im4gn.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 1875 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "im4gn.xlarge", + "name": "im4gn.xlarge", + "ram": 16384 + }, + "inf1.24xlarge": { + "bandwidth": 100, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf1.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "NA", + "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "processorArchitecture": "64-bit", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "inf1.24xlarge", + "name": "inf1.24xlarge", + "ram": 196608 + }, + "inf1.2xlarge": { + "bandwidth": 25, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "875 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf1.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "NA", + "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "processorArchitecture": "64-bit", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "inf1.2xlarge", + "name": "inf1.2xlarge", + "ram": 16384 + }, + "inf1.6xlarge": { + "bandwidth": 25, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf1.6xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "48 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "NA", + "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "processorArchitecture": "64-bit", + "regionCode": "sa-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "24", + "vpcnetworkingsupport": "true" + }, + "id": "inf1.6xlarge", + "name": "inf1.6xlarge", + "ram": 49152 + }, + "inf1.xlarge": { + "bandwidth": 25, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "875 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf1.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "NA", + "physicalProcessor": "Intel Xeon Platinum 8275CL (Cascade Lake)", + "processorArchitecture": "64-bit", + "regionCode": "ap-northeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "inf1.xlarge", + "name": "inf1.xlarge", + "ram": 8192 + }, + "inf2.24xlarge": { + "bandwidth": 50, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.95 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "192 GB", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf2.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "8.560582329", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "inf2.24xlarge", + "name": "inf2.24xlarge", + "ram": 393216 + }, + "inf2.48xlarge": { + "bandwidth": 100, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.95 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "60 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "384 GB", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf2.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "17.12116466", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-north-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" + }, + "id": "inf2.48xlarge", + "name": "inf2.48xlarge", + "ram": 786432 + }, + "inf2.8xlarge": { + "bandwidth": 25, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.95 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "32 GB", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf2.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "2.595436335", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "inf2.8xlarge", + "name": "inf2.8xlarge", + "ram": 131072 + }, + "inf2.xlarge": { + "bandwidth": 15, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.95 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "32 GB", + "instanceFamily": "Machine Learning ASIC Instances", + "instanceType": "inf2.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "1", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "inf2.xlarge", + "name": "inf2.xlarge", + "ram": 16384 + }, + "is4gen.2xlarge": { + "bandwidth": 25, + "disk": 7500, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "48 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 7500 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.2xlarge", + "name": "is4gen.2xlarge", + "ram": 49152 + }, + "is4gen.4xlarge": { + "bandwidth": 25, + "disk": 15000, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "96 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 7500 SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.4xlarge", + "name": "is4gen.4xlarge", + "ram": 98304 + }, + "is4gen.8xlarge": { + "bandwidth": 50, + "disk": 30000, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 7500 SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.8xlarge", + "name": "is4gen.8xlarge", + "ram": 196608 + }, + "is4gen.large": { + "bandwidth": 25, + "disk": 1875, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "12 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 1875 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.large", + "name": "is4gen.large", + "ram": 12288 + }, + "is4gen.medium": { + "bandwidth": 25, + "disk": 937, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "6 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 937 SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.medium", + "name": "is4gen.medium", + "ram": 6144 + }, + "is4gen.xlarge": { + "bandwidth": 25, + "disk": 3750, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 9500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Storage optimized", + "instanceType": "is4gen.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "24 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", + "processorArchitecture": "64-bit", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 3750 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "is4gen.xlarge", + "name": "is4gen.xlarge", + "ram": 24576 + }, + "m1.large": { + "bandwidth": None, + "disk": 840, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "4", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m1.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "7.5 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 420 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m1.large", + "name": "m1.large", + "ram": 7680 + }, + "m1.medium": { + "bandwidth": None, + "disk": 410, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "2", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m1.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "3.75 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "2", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "32-bit or 64-bit", + "regionCode": "us-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 410 SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" + }, + "id": "m1.medium", + "name": "m1.medium", + "ram": 3840 + }, + "m1.small": { + "bandwidth": None, + "disk": 160, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "1", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m1.small", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "1.7 GiB", + "networkPerformance": "Low", + "normalizationSizeFactor": "1", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "32-bit or 64-bit", + "regionCode": "us-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 160 SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" + }, + "id": "m1.small", + "name": "m1.small", + "ram": 1740 + }, + "m1.xlarge": { + "bandwidth": None, + "disk": 1680, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "8", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m1.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "15 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "64-bit", + "regionCode": "us-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 420 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m1.xlarge", + "name": "m1.xlarge", + "ram": 15360 + }, + "m2.2xlarge": { + "bandwidth": None, + "disk": 850, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "13", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "m2.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "34.2 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 850 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m2.2xlarge", + "name": "m2.2xlarge", + "ram": 35020 + }, + "m2.4xlarge": { + "bandwidth": None, + "disk": 1680, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "26", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "m2.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "68.4 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "64-bit", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 840 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m2.4xlarge", + "name": "m2.4xlarge", + "ram": 70041 + }, + "m2.xlarge": { + "bandwidth": None, + "disk": 420, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "currentGeneration": "No", + "ecu": "6.5", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "m2.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "17.1 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Family", + "processorArchitecture": "64-bit", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 420 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m2.xlarge", + "name": "m2.xlarge", + "ram": 17510 + }, + "m3.2xlarge": { + "bandwidth": None, + "disk": 160, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "1000 Mbps", + "ecu": "26", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m3.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "30 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-southeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 80 SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m3.2xlarge", + "name": "m3.2xlarge", + "ram": 30720 + }, + "m3.large": { + "bandwidth": None, + "disk": 32, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "6.5", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m3.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "7.5 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 32 SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m3.large", + "name": "m3.large", + "ram": 7680 + }, + "m3.medium": { + "bandwidth": None, + "disk": 4, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "3", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m3.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "3.75 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "2", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 4 SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" + }, + "id": "m3.medium", + "name": "m3.medium", + "ram": 3840 + }, + "m3.xlarge": { + "bandwidth": None, + "disk": 80, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "500 Mbps", + "ecu": "13", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m3.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "15 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 40 SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m3.xlarge", + "name": "m3.xlarge", + "ram": 15360 + }, + "m4.10xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "4000 Mbps", + "ecu": "124.5", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.10xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "160 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "80", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "40", + "vpcnetworkingsupport": "true" + }, + "id": "m4.10xlarge", + "name": "m4.10xlarge", + "ram": 163840 + }, + "m4.16xlarge": { + "bandwidth": 20, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "188", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "sa-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "m4.16xlarge", + "name": "m4.16xlarge", + "ram": 262144 + }, + "m4.2xlarge": { + "bandwidth": None, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "1000 Mbps", + "ecu": "26", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m4.2xlarge", + "name": "m4.2xlarge", + "ram": 32768 + }, + "m4.4xlarge": { + "bandwidth": None, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "2000 Mbps", + "ecu": "53.5", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m4.4xlarge", + "name": "m4.4xlarge", + "ram": 65536 + }, + "m4.large": { + "bandwidth": None, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "450 Mbps", + "ecu": "6.5", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Moderate", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m4.large", + "name": "m4.large", + "ram": 8192 + }, + "m4.xlarge": { + "bandwidth": None, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.4 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "750 Mbps", + "ecu": "13", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m4.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m4.xlarge", + "name": "m4.xlarge", + "ram": 16384 + }, + "m5.12xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "168", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "m5.12xlarge", + "name": "m5.12xlarge", + "ram": 196608 + }, + "m5.16xlarge": { + "bandwidth": 20, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "256", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "m5.16xlarge", + "name": "m5.16xlarge", + "ram": 262144 + }, + "m5.24xlarge": { + "bandwidth": 25, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "12000 Mbps", + "ecu": "337", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m5.24xlarge", + "name": "m5.24xlarge", + "ram": 393216 + }, + "m5.2xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "37", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m5.2xlarge", + "name": "m5.2xlarge", + "ram": 32768 + }, + "m5.4xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "2120 Mbps", + "ecu": "70", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "sa-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m5.4xlarge", + "name": "m5.4xlarge", + "ram": 65536 + }, + "m5.8xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "128", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "sa-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "m5.8xlarge", + "name": "m5.8xlarge", + "ram": 131072 + }, + "m5.large": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "10", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m5.large", + "name": "m5.large", + "ram": 8192 + }, + "m5.xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "16", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m5.xlarge", + "name": "m5.xlarge", + "ram": 16384 + }, + "m5a.12xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.12xlarge", + "name": "m5a.12xlarge", + "ram": 196608 + }, + "m5a.16xlarge": { + "bandwidth": 12, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.16xlarge", + "name": "m5a.16xlarge", + "ram": 262144 + }, + "m5a.24xlarge": { + "bandwidth": 20, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.24xlarge", + "name": "m5a.24xlarge", + "ram": 393216 + }, + "m5a.2xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.2xlarge", + "name": "m5a.2xlarge", + "ram": 32768 + }, + "m5a.4xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-northeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.4xlarge", + "name": "m5a.4xlarge", + "ram": 65536 + }, + "m5a.8xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.8xlarge", + "name": "m5a.8xlarge", + "ram": 131072 + }, + "m5a.large": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-southeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.large", + "name": "m5a.large", + "ram": 8192 + }, + "m5a.xlarge": { + "bandwidth": 10, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5a.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m5a.xlarge", + "name": "m5a.xlarge", + "ram": 16384 + }, + "m5ad.12xlarge": { + "bandwidth": 10, + "disk": 1800, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-south-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 900 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.12xlarge", + "name": "m5ad.12xlarge", + "ram": 196608 + }, + "m5ad.16xlarge": { + "bandwidth": 12, + "disk": 2400, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 600 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.16xlarge", + "name": "m5ad.16xlarge", + "ram": 262144 + }, + "m5ad.24xlarge": { + "bandwidth": 20, + "disk": 3600, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 900 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.24xlarge", + "name": "m5ad.24xlarge", + "ram": 393216 + }, + "m5ad.2xlarge": { + "bandwidth": 10, + "disk": 300, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 300 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.2xlarge", + "name": "m5ad.2xlarge", + "ram": 32768 + }, + "m5ad.4xlarge": { + "bandwidth": 10, + "disk": 600, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 300 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.4xlarge", + "name": "m5ad.4xlarge", + "ram": 65536 + }, + "m5ad.8xlarge": { + "bandwidth": 10, + "disk": 1200, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 600 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.8xlarge", + "name": "m5ad.8xlarge", + "ram": 131072 + }, + "m5ad.large": { + "bandwidth": 10, + "disk": 75, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-northeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 75 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.large", + "name": "m5ad.large", + "ram": 8192 + }, + "m5ad.xlarge": { + "bandwidth": 10, + "disk": 150, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5ad.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-northeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 150 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m5ad.xlarge", + "name": "m5ad.xlarge", + "ram": 16384 + }, + "m5d.12xlarge": { + "bandwidth": 10, + "disk": 1800, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "6000 Mbps", + "ecu": "168", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "192 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 900 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.12xlarge", + "name": "m5d.12xlarge", + "ram": 196608 + }, + "m5d.16xlarge": { + "bandwidth": 20, + "disk": 2400, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "256", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "256 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 600 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.16xlarge", + "name": "m5d.16xlarge", + "ram": 262144 + }, + "m5d.24xlarge": { + "bandwidth": 25, + "disk": 3600, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "12000 Mbps", + "ecu": "337", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 900 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.24xlarge", + "name": "m5d.24xlarge", + "ram": 393216 + }, + "m5d.2xlarge": { + "bandwidth": 10, + "disk": 300, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "37", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 300 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.2xlarge", + "name": "m5d.2xlarge", + "ram": 32768 + }, + "m5d.4xlarge": { + "bandwidth": 10, + "disk": 600, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "2120 Mbps", + "ecu": "70", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 300 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.4xlarge", + "name": "m5d.4xlarge", + "ram": 65536 + }, + "m5d.8xlarge": { + "bandwidth": 10, + "disk": 1200, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "128", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 600 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.8xlarge", + "name": "m5d.8xlarge", + "ram": 131072 + }, + "m5d.large": { + "bandwidth": 10, + "disk": 75, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "10", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5d.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Platinum 8175", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "1 x 75 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" + }, + "id": "m5d.large", + "name": "m5d.large", + "ram": 8192 + }, + "m5d.xlarge": { + "bandwidth": 10, + "disk": 150, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "3", - "enhancedNetworkingSupported": "No", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "16", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m3.medium", - "intelAvx2Available": "No", + "instanceType": "m5d.xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "3.75 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "2", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 4 SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "1 x 150 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m3.medium", - "name": "m3.medium", - "ram": 3840, + "id": "m5d.xlarge", + "name": "m5d.xlarge", + "ram": 16384 }, - "m3.xlarge": { - "bandwidth": None, - "disk": 80, + "m5dn.12xlarge": { + "bandwidth": 50, + "disk": 1800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", - "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "dedicatedEbsThroughput": "500 Mbps", - "ecu": "13", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m3.xlarge", + "instanceType": "m5dn.12xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge/Sandy Bridge)", + "memory": "192 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 40 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "2 x 900 GB NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m3.xlarge", - "name": "m3.xlarge", - "ram": 15360, + "id": "m5dn.12xlarge", + "name": "m5dn.12xlarge", + "ram": 196608 }, - "m4.10xlarge": { - "bandwidth": 10, - "disk": 0, + "m5dn.16xlarge": { + "bandwidth": 75, + "disk": 2400, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4000 Mbps", - "ecu": "124.5", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.10xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "160 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "80", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "memory": "256 GiB", + "networkPerformance": "75 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "40", - "vpcnetworkingsupport": "true", + "storage": "4 x 600 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m4.10xlarge", - "name": "m4.10xlarge", - "ram": 163840, + "id": "m5dn.16xlarge", + "name": "m5dn.16xlarge", + "ram": 262144 }, - "m4.16xlarge": { - "bandwidth": 20, - "disk": 0, + "m5dn.24xlarge": { + "bandwidth": 100, + "disk": 3600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "188", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "384 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "sa-east-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "4 x 900 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m4.16xlarge", - "name": "m4.16xlarge", - "ram": 262144, + "id": "m5dn.24xlarge", + "name": "m5dn.24xlarge", + "ram": 393216 }, - "m4.2xlarge": { - "bandwidth": None, - "disk": 0, + "m5dn.2xlarge": { + "bandwidth": 25, + "disk": 300, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1000 Mbps", - "ecu": "26", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "High", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ca-central-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m4.2xlarge", - "name": "m4.2xlarge", - "ram": 32768, + "id": "m5dn.2xlarge", + "name": "m5dn.2xlarge", + "ram": 32768 }, - "m4.4xlarge": { - "bandwidth": None, - "disk": 0, + "m5dn.4xlarge": { + "bandwidth": 25, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2000 Mbps", - "ecu": "53.5", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "High", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-northeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 300 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" + }, + "id": "m5dn.4xlarge", + "name": "m5dn.4xlarge", + "ram": 65536 + }, + "m5dn.8xlarge": { + "bandwidth": 25, + "disk": 1200, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.1 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m5dn.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "128 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "processorArchitecture": "64-bit", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "2 x 600 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m4.4xlarge", - "name": "m4.4xlarge", - "ram": 65536, + "id": "m5dn.8xlarge", + "name": "m5dn.8xlarge", + "ram": 131072 }, - "m4.large": { - "bandwidth": None, - "disk": 0, + "m5dn.large": { + "bandwidth": 25, + "disk": 75, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "450 Mbps", - "ecu": "6.5", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "8 GiB", - "networkPerformance": "Moderate", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m4.large", - "name": "m4.large", - "ram": 8192, + "id": "m5dn.large", + "name": "m5dn.large", + "ram": 8192 }, - "m4.xlarge": { - "bandwidth": None, - "disk": 0, + "m5dn.xlarge": { + "bandwidth": 25, + "disk": 150, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.4 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "750 Mbps", - "ecu": "13", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m4.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5dn.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "High", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2676 v3 (Haswell)", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m4.xlarge", - "name": "m4.xlarge", - "ram": 16384, + "id": "m5dn.xlarge", + "name": "m5dn.xlarge", + "ram": 16384 }, - "m5.12xlarge": { - "bandwidth": 10, + "m5n.12xlarge": { + "bandwidth": 50, "disk": 0, "extra": { "availabilityzone": "NA", @@ -9298,34 +12172,33 @@ "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "168", - "enhancedNetworkingSupported": "Yes", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "50 Gigabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5.12xlarge", - "name": "m5.12xlarge", - "ram": 196608, + "id": "m5n.12xlarge", + "name": "m5n.12xlarge", + "ram": 196608 }, - "m5.16xlarge": { - "bandwidth": 20, + "m5n.16xlarge": { + "bandwidth": 75, "disk": 0, "extra": { "availabilityzone": "NA", @@ -9333,5757 +12206,5591 @@ "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "256", - "enhancedNetworkingSupported": "Yes", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "75 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5.16xlarge", - "name": "m5.16xlarge", - "ram": 262144, + "id": "m5n.16xlarge", + "name": "m5n.16xlarge", + "ram": 262144 }, - "m5.24xlarge": { - "bandwidth": 25, + "m5n.24xlarge": { + "bandwidth": 100, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", - "ecu": "337", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "100 Gigabit", "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5.24xlarge", - "name": "m5.24xlarge", - "ram": 393216, + "id": "m5n.24xlarge", + "name": "m5n.24xlarge", + "ram": 393216 }, - "m5.2xlarge": { - "bandwidth": 10, + "m5n.2xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "37", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "Up to 3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", - }, - "id": "m5.2xlarge", - "name": "m5.2xlarge", - "ram": 32768, - }, - "m5.4xlarge": { - "bandwidth": 10, - "disk": 0, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", - "ecu": "70", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m5.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8175", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "sa-east-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", - }, - "id": "m5.4xlarge", - "name": "m5.4xlarge", - "ram": 65536, - }, - "m5.8xlarge": { - "bandwidth": 10, - "disk": 0, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", - "ecu": "128", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m5.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8175", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "sa-east-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5.8xlarge", - "name": "m5.8xlarge", - "ram": 131072, + "id": "m5n.2xlarge", + "name": "m5n.2xlarge", + "ram": 32768 }, - "m5.large": { - "bandwidth": 10, + "m5n.4xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "10", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "64 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m5.large", - "name": "m5.large", - "ram": 8192, + "id": "m5n.4xlarge", + "name": "m5n.4xlarge", + "ram": 65536 }, - "m5.xlarge": { - "bandwidth": 10, + "m5n.8xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "16", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m5n.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "128 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-3", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m5.xlarge", - "name": "m5.xlarge", - "ram": 16384, + "id": "m5n.8xlarge", + "name": "m5n.8xlarge", + "ram": 131072 }, - "m5a.12xlarge": { - "bandwidth": 10, + "m5n.large": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.12xlarge", + "instanceType": "m5n.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7571", + "memory": "8 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ca-central-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m5a.12xlarge", - "name": "m5a.12xlarge", - "ram": 196608, + "id": "m5n.large", + "name": "m5n.large", + "ram": 8192 }, - "m5a.16xlarge": { - "bandwidth": 12, + "m5n.xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "Up to 3500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.16xlarge", + "instanceType": "m5n.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "12 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7571", + "memory": "16 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-west-2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m5a.16xlarge", - "name": "m5a.16xlarge", - "ram": 262144, + "id": "m5n.xlarge", + "name": "m5n.xlarge", + "ram": 16384 }, - "m5a.24xlarge": { - "bandwidth": 20, + "m5zn.12xlarge": { + "bandwidth": 100, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "19000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7571", + "memory": "192 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m5a.24xlarge", - "name": "m5a.24xlarge", - "ram": 393216, + "id": "m5zn.12xlarge", + "name": "m5zn.12xlarge", + "ram": 196608 }, - "m5a.2xlarge": { - "bandwidth": 10, + "m5zn.2xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "3170 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5a.2xlarge", - "name": "m5a.2xlarge", - "ram": 32768, + "id": "m5zn.2xlarge", + "name": "m5zn.2xlarge", + "ram": 32768 }, - "m5a.4xlarge": { - "bandwidth": 10, + "m5zn.3xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", + "dedicatedEbsThroughput": "4750 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.3xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7571", + "memory": "48 GiB", + "networkPerformance": "Up to 25 Gigabit", + "normalizationSizeFactor": "24", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-northeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "vcpu": "12", + "vpcnetworkingsupport": "true" }, - "id": "m5a.4xlarge", - "name": "m5a.4xlarge", - "ram": 65536, + "id": "m5zn.3xlarge", + "name": "m5zn.3xlarge", + "ram": 49152 }, - "m5a.8xlarge": { - "bandwidth": 10, + "m5zn.6xlarge": { + "bandwidth": 50, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "9500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.6xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7571", + "memory": "96 GiB", + "networkPerformance": "50 Gigabit", + "normalizationSizeFactor": "48", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "24", + "vpcnetworkingsupport": "true" }, - "id": "m5a.8xlarge", - "name": "m5a.8xlarge", - "ram": 131072, + "id": "m5zn.6xlarge", + "name": "m5zn.6xlarge", + "ram": 98304 }, - "m5a.large": { - "bandwidth": 10, + "m5zn.large": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5a.large", - "name": "m5a.large", - "ram": 8192, + "id": "m5zn.large", + "name": "m5zn.large", + "ram": 8192 }, - "m5a.xlarge": { - "bandwidth": 10, + "m5zn.xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "4.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 3170 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5a.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m5zn.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8252", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5a.xlarge", - "name": "m5a.xlarge", - "ram": 16384, + "id": "m5zn.xlarge", + "name": "m5zn.xlarge", + "ram": 16384 }, - "m5ad.12xlarge": { - "bandwidth": 10, - "disk": 1800, + "m6a.12xlarge": { + "bandwidth": 18750, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5ad.12xlarge", + "instanceType": "m6a.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-south-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 NVMe SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5ad.12xlarge", - "name": "m5ad.12xlarge", - "ram": 196608, + "id": "m6a.12xlarge", + "name": "m6a.12xlarge", + "ram": 196608 }, - "m5ad.16xlarge": { - "bandwidth": 12, - "disk": 2400, + "m6a.16xlarge": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "13333 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5ad.16xlarge", + "instanceType": "m6a.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "12 Gigabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 600 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5ad.16xlarge", - "name": "m5ad.16xlarge", - "ram": 262144, + "id": "m6a.16xlarge", + "name": "m6a.16xlarge", + "ram": 262144 }, - "m5ad.24xlarge": { - "bandwidth": 20, - "disk": 3600, + "m6a.24xlarge": { + "bandwidth": 37500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5ad.24xlarge", + "instanceType": "m6a.24xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "37500 Megabit", "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 900 NVMe SSD", + "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5ad.24xlarge", - "name": "m5ad.24xlarge", - "ram": 393216, + "id": "m6a.24xlarge", + "name": "m6a.24xlarge", + "ram": 393216 }, - "m5ad.2xlarge": { - "bandwidth": 10, - "disk": 300, + "m6a.2xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 6667 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5ad.2xlarge", + "instanceType": "m6a.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", + "processorFeatures": "AMD Turbo; AVX; AVX2", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 300 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", - }, - "id": "m5ad.2xlarge", - "name": "m5ad.2xlarge", - "ram": 32768, - }, - "m5ad.4xlarge": { - "bandwidth": 10, - "disk": 600, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m5ad.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7571", - "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 300 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", - }, - "id": "m5ad.4xlarge", - "name": "m5ad.4xlarge", - "ram": 65536, - }, - "m5ad.8xlarge": { - "bandwidth": 10, - "disk": 1200, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m5ad.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7571", - "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ca-central-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 600 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", - }, - "id": "m5ad.8xlarge", - "name": "m5ad.8xlarge", - "ram": 131072, - }, - "m5ad.large": { - "bandwidth": 10, - "disk": 75, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m5ad.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7571", - "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-northeast-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 75 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5ad.large", - "name": "m5ad.large", - "ram": 8192, - }, - "m5ad.xlarge": { - "bandwidth": 10, - "disk": 150, + "id": "m6a.2xlarge", + "name": "m6a.2xlarge", + "ram": 32768 + }, + "m6a.32xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "26667 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5ad.xlarge", + "instanceType": "m6a.32xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7571", + "memory": "512 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-northeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 150 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "m5ad.xlarge", - "name": "m5ad.xlarge", - "ram": 16384, + "id": "m6a.32xlarge", + "name": "m6a.32xlarge", + "ram": 524288 }, - "m5d.12xlarge": { - "bandwidth": 10, - "disk": 1800, + "m6a.48xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", - "ecu": "168", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "768 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "m5d.12xlarge", - "name": "m5d.12xlarge", - "ram": 196608, + "id": "m6a.48xlarge", + "name": "m6a.48xlarge", + "ram": 786432 }, - "m5d.16xlarge": { - "bandwidth": 20, - "disk": 2400, + "m6a.4xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "256", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6a.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 600 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m5d.16xlarge", - "name": "m5d.16xlarge", - "ram": 262144, + "id": "m6a.4xlarge", + "name": "m6a.4xlarge", + "ram": 65536 }, - "m5d.24xlarge": { - "bandwidth": 25, - "disk": 3600, + "m6a.8xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", - "ecu": "337", + "dedicatedEbsThroughput": "6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6a.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "128 GiB", + "networkPerformance": "12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "processorFeatures": "AMD Turbo; AVX; AVX2", "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 900 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m5d.24xlarge", - "name": "m5d.24xlarge", - "ram": 393216, + "id": "m6a.8xlarge", + "name": "m6a.8xlarge", + "ram": 131072 }, - "m5d.2xlarge": { - "bandwidth": 10, - "disk": 300, + "m6a.large": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "37", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6a.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 300 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m5d.2xlarge", - "name": "m5d.2xlarge", - "ram": 32768, + "id": "m6a.large", + "name": "m6a.large", + "ram": 8192 }, - "m5d.4xlarge": { - "bandwidth": 10, - "disk": 600, + "m6a.xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", - "ecu": "70", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6a.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-2", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 300 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m5d.4xlarge", - "name": "m5d.4xlarge", - "ram": 65536, + "id": "m6a.xlarge", + "name": "m6a.xlarge", + "ram": 16384 }, - "m5d.8xlarge": { - "bandwidth": 10, - "disk": 1200, + "m6g.12xlarge": { + "bandwidth": 20, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", - "ecu": "128", + "dedicatedEbsThroughput": "13500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6g.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "192 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 600 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m5d.8xlarge", - "name": "m5d.8xlarge", - "ram": 131072, + "id": "m6g.12xlarge", + "name": "m6g.12xlarge", + "ram": 196608 }, - "m5d.large": { - "bandwidth": 10, - "disk": 75, + "m6g.16xlarge": { + "bandwidth": 25, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "10", + "dedicatedEbsThroughput": "18000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6g.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-2", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 75 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m5d.large", - "name": "m5d.large", - "ram": 8192, + "id": "m6g.16xlarge", + "name": "m6g.16xlarge", + "ram": 262144 }, - "m5d.xlarge": { + "m6g.2xlarge": { "bandwidth": 10, - "disk": 150, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "16", + "dedicatedEbsThroughput": "2250 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5d.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m6g.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", + "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8175", + "normalizationSizeFactor": "16", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 150 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m5d.xlarge", - "name": "m5d.xlarge", - "ram": 16384, + "id": "m6g.2xlarge", + "name": "m6g.2xlarge", + "ram": 32768 }, - "m5dn.12xlarge": { - "bandwidth": 50, - "disk": 1800, + "m6g.4xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.12xlarge", + "instanceType": "m6g.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 GB NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.12xlarge", - "name": "m5dn.12xlarge", - "ram": 196608, + "id": "m6g.4xlarge", + "name": "m6g.4xlarge", + "ram": 65536 }, - "m5dn.16xlarge": { - "bandwidth": 75, - "disk": 2400, + "m6g.8xlarge": { + "bandwidth": 12, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "9000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.16xlarge", + "instanceType": "m6g.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "75 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "128 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 600 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.16xlarge", - "name": "m5dn.16xlarge", - "ram": 262144, + "id": "m6g.8xlarge", + "name": "m6g.8xlarge", + "ram": 131072 }, - "m5dn.24xlarge": { - "bandwidth": 100, - "disk": 3600, + "m6g.large": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", + "dedicatedEbsThroughput": "600 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.24xlarge", + "instanceType": "m6g.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 900 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.24xlarge", - "name": "m5dn.24xlarge", - "ram": 393216, + "id": "m6g.large", + "name": "m6g.large", + "ram": 8192 }, - "m5dn.2xlarge": { - "bandwidth": 25, - "disk": 300, + "m6g.medium": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "300 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.2xlarge", + "instanceType": "m6g.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "4 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 300 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.2xlarge", - "name": "m5dn.2xlarge", - "ram": 32768, + "id": "m6g.medium", + "name": "m6g.medium", + "ram": 4096 }, - "m5dn.4xlarge": { - "bandwidth": 25, - "disk": 600, + "m6g.xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "1125 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.4xlarge", + "instanceType": "m6g.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 300 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.4xlarge", - "name": "m5dn.4xlarge", - "ram": 65536, + "id": "m6g.xlarge", + "name": "m6g.xlarge", + "ram": 16384 }, - "m5dn.8xlarge": { - "bandwidth": 25, - "disk": 1200, + "m6gd.12xlarge": { + "bandwidth": 20, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "13500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.8xlarge", + "instanceType": "m6gd.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "192 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 600 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "2 x 1425 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.8xlarge", - "name": "m5dn.8xlarge", - "ram": 131072, + "id": "m6gd.12xlarge", + "name": "m6gd.12xlarge", + "ram": 196608 }, - "m5dn.large": { + "m6gd.16xlarge": { "bandwidth": 25, - "disk": 75, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "18000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.large", + "instanceType": "m6gd.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "256 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 75 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.large", - "name": "m5dn.large", - "ram": 8192, + "id": "m6gd.16xlarge", + "name": "m6gd.16xlarge", + "ram": 262144 }, - "m5dn.xlarge": { - "bandwidth": 25, - "disk": 150, + "m6gd.2xlarge": { + "bandwidth": 10, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5dn.xlarge", + "instanceType": "m6gd.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 150 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 475 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m5dn.xlarge", - "name": "m5dn.xlarge", - "ram": 16384, + "id": "m6gd.2xlarge", + "name": "m6gd.2xlarge", + "ram": 32768 }, - "m5n.12xlarge": { - "bandwidth": 50, - "disk": 0, + "m6gd.4xlarge": { + "bandwidth": 10, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.12xlarge", + "instanceType": "m6gd.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "1 x 950 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m5n.12xlarge", - "name": "m5n.12xlarge", - "ram": 196608, + "id": "m6gd.4xlarge", + "name": "m6gd.4xlarge", + "ram": 65536 }, - "m5n.16xlarge": { - "bandwidth": 75, - "disk": 0, + "m6gd.8xlarge": { + "bandwidth": 12, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "9000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.16xlarge", + "instanceType": "m6gd.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "75 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "128 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m5n.16xlarge", - "name": "m5n.16xlarge", - "ram": 262144, + "id": "m6gd.8xlarge", + "name": "m6gd.8xlarge", + "ram": 131072 }, - "m5n.24xlarge": { - "bandwidth": 100, - "disk": 0, + "m6gd.large": { + "bandwidth": 10, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.24xlarge", + "instanceType": "m6gd.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "1 x 118 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m5n.24xlarge", - "name": "m5n.24xlarge", - "ram": 393216, + "id": "m6gd.large", + "name": "m6gd.large", + "ram": 8192 }, - "m5n.2xlarge": { - "bandwidth": 25, - "disk": 0, + "m6gd.medium": { + "bandwidth": 10, + "disk": 59, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.2xlarge", + "instanceType": "m6gd.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "4 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "1 x 59 NVMe SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "m5n.2xlarge", - "name": "m5n.2xlarge", - "ram": 32768, + "id": "m6gd.medium", + "name": "m6gd.medium", + "ram": 4096 }, - "m5n.4xlarge": { - "bandwidth": 25, - "disk": 0, + "m6gd.xlarge": { + "bandwidth": 10, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.4xlarge", + "instanceType": "m6gd.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 237 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m5n.4xlarge", - "name": "m5n.4xlarge", - "ram": 65536, + "id": "m6gd.xlarge", + "name": "m6gd.xlarge", + "ram": 16384 }, - "m5n.8xlarge": { - "bandwidth": 25, + "m6i.12xlarge": { + "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6i.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "192 GiB", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m5n.8xlarge", - "name": "m5n.8xlarge", - "ram": 131072, + "id": "m6i.12xlarge", + "name": "m6i.12xlarge", + "ram": 196608 }, - "m5n.large": { - "bandwidth": 25, + "m6i.16xlarge": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6i.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "256 GiB", + "networkPerformance": "25000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m5n.large", - "name": "m5n.large", - "ram": 8192, + "id": "m6i.16xlarge", + "name": "m6i.16xlarge", + "ram": 262144 }, - "m5n.xlarge": { - "bandwidth": 25, + "m6i.24xlarge": { + "bandwidth": 37500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3500 Mbps", + "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5n.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "384 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m5n.xlarge", - "name": "m5n.xlarge", - "ram": 16384, + "id": "m6i.24xlarge", + "name": "m6i.24xlarge", + "ram": 393216 }, - "m5zn.12xlarge": { - "bandwidth": 100, + "m6i.2xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.12xlarge", + "instanceType": "m6i.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8252", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.12xlarge", - "name": "m5zn.12xlarge", - "ram": 196608, + "id": "m6i.2xlarge", + "name": "m6i.2xlarge", + "ram": 32768 }, - "m5zn.2xlarge": { - "bandwidth": 25, + "m6i.32xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3170 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.2xlarge", + "instanceType": "m6i.32xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8252", + "memory": "512 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "eu-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.2xlarge", - "name": "m5zn.2xlarge", - "ram": 32768, + "id": "m6i.32xlarge", + "name": "m6i.32xlarge", + "ram": 524288 }, - "m5zn.3xlarge": { - "bandwidth": 25, + "m6i.4xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4750 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.3xlarge", + "instanceType": "m6i.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "48 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "24", - "physicalProcessor": "Intel Xeon Platinum 8252", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "12", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.3xlarge", - "name": "m5zn.3xlarge", - "ram": 49152, + "id": "m6i.4xlarge", + "name": "m6i.4xlarge", + "ram": 65536 }, - "m5zn.6xlarge": { - "bandwidth": 50, + "m6i.8xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9500 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.6xlarge", + "instanceType": "m6i.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "96 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "48", - "physicalProcessor": "Intel Xeon Platinum 8252", + "memory": "128 GiB", + "networkPerformance": "12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-2", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "24", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.6xlarge", - "name": "m5zn.6xlarge", - "ram": 98304, + "id": "m6i.8xlarge", + "name": "m6i.8xlarge", + "ram": 131072 }, - "m5zn.large": { - "bandwidth": 25, + "m6i.large": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3170 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.large", + "instanceType": "m6i.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "8 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8252", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.large", - "name": "m5zn.large", - "ram": 8192, + "id": "m6i.large", + "name": "m6i.large", + "ram": 8192 }, - "m5zn.xlarge": { - "bandwidth": 25, + "m6i.xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "4.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 3170 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m5zn.xlarge", + "instanceType": "m6i.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8252", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m5zn.xlarge", - "name": "m5zn.xlarge", - "ram": 16384, + "id": "m6i.xlarge", + "name": "m6i.xlarge", + "ram": 16384 }, - "m6a.12xlarge": { + "m6id.12xlarge": { "bandwidth": 18750, - "disk": 0, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "192 GiB", "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.12xlarge", - "name": "m6a.12xlarge", - "ram": 196608, + "id": "m6id.12xlarge", + "name": "m6id.12xlarge", + "ram": 196608 }, - "m6a.16xlarge": { + "m6id.16xlarge": { "bandwidth": 25000, - "disk": 0, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13333 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.16xlarge", - "name": "m6a.16xlarge", - "ram": 262144, + "id": "m6id.16xlarge", + "name": "m6id.16xlarge", + "ram": 262144 }, - "m6a.24xlarge": { + "m6id.24xlarge": { "bandwidth": 37500, - "disk": 0, + "disk": 5700, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", "networkPerformance": "37500 Megabit", "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.24xlarge", - "name": "m6a.24xlarge", - "ram": 393216, + "id": "m6id.24xlarge", + "name": "m6id.24xlarge", + "ram": 393216 }, - "m6a.2xlarge": { + "m6id.2xlarge": { "bandwidth": 12500, - "disk": 0, + "disk": 474, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.2xlarge", - "name": "m6a.2xlarge", - "ram": 32768, + "id": "m6id.2xlarge", + "name": "m6id.2xlarge", + "ram": 32768 }, - "m6a.32xlarge": { + "m6id.32xlarge": { "bandwidth": 50000, - "disk": 0, + "disk": 7600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "26667 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.32xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", "networkPerformance": "50000 Megabit", "normalizationSizeFactor": "256", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", - }, - "id": "m6a.32xlarge", - "name": "m6a.32xlarge", - "ram": 524288, - }, - "m6a.48xlarge": { - "bandwidth": 50000, - "disk": 0, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m6a.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "384", - "physicalProcessor": "AMD EPYC 7R13 Processor", - "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.48xlarge", - "name": "m6a.48xlarge", - "ram": 786432, + "id": "m6id.32xlarge", + "name": "m6id.32xlarge", + "ram": 524288 }, - "m6a.4xlarge": { + "m6id.4xlarge": { "bandwidth": 12500, - "disk": 0, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.4xlarge", - "name": "m6a.4xlarge", - "ram": 65536, + "id": "m6id.4xlarge", + "name": "m6id.4xlarge", + "ram": 65536 }, - "m6a.8xlarge": { + "m6id.8xlarge": { "bandwidth": 12500, - "disk": 0, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6667 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.8xlarge", - "name": "m6a.8xlarge", - "ram": 131072, + "id": "m6id.8xlarge", + "name": "m6id.8xlarge", + "ram": 131072 }, - "m6a.large": { + "m6id.large": { "bandwidth": 12500, - "disk": 0, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "8 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.large", - "name": "m6a.large", - "ram": 8192, + "id": "m6id.large", + "name": "m6id.large", + "ram": 8192 }, - "m6a.xlarge": { + "m6id.xlarge": { "bandwidth": 12500, - "disk": 0, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6a.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6id.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6a.xlarge", - "name": "m6a.xlarge", - "ram": 16384, + "id": "m6id.xlarge", + "name": "m6id.xlarge", + "ram": 16384 }, - "m6g.12xlarge": { - "bandwidth": 20, - "disk": 0, + "m6idn.12xlarge": { + "bandwidth": 75000, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13500 Mbps", + "dedicatedEbsThroughput": "37500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "75000 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6g.12xlarge", - "name": "m6g.12xlarge", - "ram": 196608, + "id": "m6idn.12xlarge", + "name": "m6idn.12xlarge", + "ram": 196608 }, - "m6g.16xlarge": { - "bandwidth": 25, - "disk": 0, + "m6idn.16xlarge": { + "bandwidth": 100000, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "18000 Mbps", + "dedicatedEbsThroughput": "50000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "100000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-north-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6g.16xlarge", - "name": "m6g.16xlarge", - "ram": 262144, + "id": "m6idn.16xlarge", + "name": "m6idn.16xlarge", + "ram": 262144 }, - "m6g.2xlarge": { - "bandwidth": 10, - "disk": 0, + "m6idn.24xlarge": { + "bandwidth": 150000, + "disk": 5700, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2250 Mbps", + "dedicatedEbsThroughput": "75000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "150000 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "4 x 1425 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m6idn.24xlarge", + "name": "m6idn.24xlarge", + "ram": 393216 + }, + "m6idn.2xlarge": { + "bandwidth": 40000, + "disk": 474, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 25000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m6idn.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 40000 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6g.2xlarge", - "name": "m6g.2xlarge", - "ram": 32768, + "id": "m6idn.2xlarge", + "name": "m6idn.2xlarge", + "ram": 32768 }, - "m6g.4xlarge": { - "bandwidth": 10, - "disk": 0, + "m6idn.32xlarge": { + "bandwidth": 200000, + "disk": 7600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4500 Mbps", + "dedicatedEbsThroughput": "100000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "512 GiB", + "networkPerformance": "200000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "4 x 1900 NVMe SSD", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "m6g.4xlarge", - "name": "m6g.4xlarge", - "ram": 65536, + "id": "m6idn.32xlarge", + "name": "m6idn.32xlarge", + "ram": 524288 }, - "m6g.8xlarge": { - "bandwidth": 12, - "disk": 0, + "m6idn.4xlarge": { + "bandwidth": 50000, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "12 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 50000 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "sa-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "1 x 950 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m6g.8xlarge", - "name": "m6g.8xlarge", - "ram": 131072, + "id": "m6idn.4xlarge", + "name": "m6idn.4xlarge", + "ram": 65536 }, - "m6g.large": { - "bandwidth": 10, - "disk": 0, + "m6idn.8xlarge": { + "bandwidth": 50000, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "600 Mbps", + "dedicatedEbsThroughput": "25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "128 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m6g.large", - "name": "m6g.large", - "ram": 8192, + "id": "m6idn.8xlarge", + "name": "m6idn.8xlarge", + "ram": 131072 }, - "m6g.medium": { - "bandwidth": 10, - "disk": 0, + "m6idn.large": { + "bandwidth": 25000, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "300 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "4 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "8 GiB", + "networkPerformance": "Up to 25000 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "1 x 118 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m6g.medium", - "name": "m6g.medium", - "ram": 4096, - }, - "m6g.xlarge": { - "bandwidth": 10, - "disk": 0, + "id": "m6idn.large", + "name": "m6idn.large", + "ram": 8192 + }, + "m6idn.xlarge": { + "bandwidth": 30000, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1125 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6g.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6idn.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 30000 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6g.xlarge", - "name": "m6g.xlarge", - "ram": 16384, + "id": "m6idn.xlarge", + "name": "m6idn.xlarge", + "ram": 16384 }, - "m6gd.12xlarge": { - "bandwidth": 20, - "disk": 2850, + "m6in.12xlarge": { + "bandwidth": 75000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13500 Mbps", + "dedicatedEbsThroughput": "37500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "75000 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 NVMe SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.12xlarge", - "name": "m6gd.12xlarge", - "ram": 196608, + "id": "m6in.12xlarge", + "name": "m6in.12xlarge", + "ram": 196608 }, - "m6gd.16xlarge": { - "bandwidth": 25, - "disk": 3800, + "m6in.16xlarge": { + "bandwidth": 100000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "18000 Mbps", + "dedicatedEbsThroughput": "50000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "100000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.16xlarge", - "name": "m6gd.16xlarge", - "ram": 262144, + "id": "m6in.16xlarge", + "name": "m6in.16xlarge", + "ram": 262144 }, - "m6gd.2xlarge": { - "bandwidth": 10, - "disk": 475, + "m6in.24xlarge": { + "bandwidth": 150000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "75000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "150000 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "m6in.24xlarge", + "name": "m6in.24xlarge", + "ram": 393216 + }, + "m6in.2xlarge": { + "bandwidth": 40000, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 25000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m6in.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 40000 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.2xlarge", - "name": "m6gd.2xlarge", - "ram": 32768, + "id": "m6in.2xlarge", + "name": "m6in.2xlarge", + "ram": 32768 }, - "m6gd.4xlarge": { - "bandwidth": 10, - "disk": 950, + "m6in.32xlarge": { + "bandwidth": 200000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4500 Mbps", + "dedicatedEbsThroughput": "100000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "512 GiB", + "networkPerformance": "200000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.4xlarge", - "name": "m6gd.4xlarge", - "ram": 65536, + "id": "m6in.32xlarge", + "name": "m6in.32xlarge", + "ram": 524288 }, - "m6gd.8xlarge": { - "bandwidth": 12, - "disk": 1900, + "m6in.4xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "12 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 50000 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.8xlarge", - "name": "m6gd.8xlarge", - "ram": 131072, + "id": "m6in.4xlarge", + "name": "m6in.4xlarge", + "ram": 65536 }, - "m6gd.large": { - "bandwidth": 10, - "disk": 118, + "m6in.8xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "128 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.large", - "name": "m6gd.large", - "ram": 8192, + "id": "m6in.8xlarge", + "name": "m6in.8xlarge", + "ram": 131072 }, - "m6gd.medium": { - "bandwidth": 10, - "disk": 59, + "m6in.large": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "4 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "8 GiB", + "networkPerformance": "Up to 25000 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 59 NVMe SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.medium", - "name": "m6gd.medium", - "ram": 4096, + "id": "m6in.large", + "name": "m6in.large", + "ram": 8192 }, - "m6gd.xlarge": { - "bandwidth": 10, - "disk": 237, + "m6in.xlarge": { + "bandwidth": 30000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6gd.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m6in.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 30000 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 NVMe SSD", + "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6gd.xlarge", - "name": "m6gd.xlarge", - "ram": 16384, + "id": "m6in.xlarge", + "name": "m6in.xlarge", + "ram": 16384 }, - "m6i.12xlarge": { + "m7a.12xlarge": { "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "192 GiB", "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.12xlarge", - "name": "m6i.12xlarge", - "ram": 196608, + "id": "m7a.12xlarge", + "name": "m7a.12xlarge", + "ram": 196608 }, - "m6i.16xlarge": { + "m7a.16xlarge": { "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.16xlarge", - "name": "m6i.16xlarge", - "ram": 262144, + "id": "m7a.16xlarge", + "name": "m7a.16xlarge", + "ram": 262144 }, - "m6i.24xlarge": { + "m7a.24xlarge": { "bandwidth": 37500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", "networkPerformance": "37500 Megabit", "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.24xlarge", - "name": "m6i.24xlarge", - "ram": 393216, + "id": "m7a.24xlarge", + "name": "m7a.24xlarge", + "ram": 393216 }, - "m6i.2xlarge": { + "m7a.2xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.2xlarge", - "name": "m6i.2xlarge", - "ram": 32768, + "id": "m7a.2xlarge", + "name": "m7a.2xlarge", + "ram": 32768 }, - "m6i.32xlarge": { + "m7a.32xlarge": { "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.32xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "512 GiB", "networkPerformance": "50000 Megabit", "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-south-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.32xlarge", - "name": "m6i.32xlarge", - "ram": 524288, + "id": "m7a.32xlarge", + "name": "m7a.32xlarge", + "ram": 524288 }, - "m6i.4xlarge": { + "m7a.48xlarge": { + "bandwidth": 50000, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m7a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "ap-northeast-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" + }, + "id": "m7a.48xlarge", + "name": "m7a.48xlarge", + "ram": 786432 + }, + "m7a.4xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.4xlarge", - "name": "m6i.4xlarge", - "ram": 65536, + "id": "m7a.4xlarge", + "name": "m7a.4xlarge", + "ram": 65536 }, - "m6i.8xlarge": { + "m7a.8xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.8xlarge", - "name": "m6i.8xlarge", - "ram": 131072, + "id": "m7a.8xlarge", + "name": "m7a.8xlarge", + "ram": 131072 }, - "m6i.large": { + "m7a.large": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "8 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.large", - "name": "m6i.large", - "ram": 8192, + "id": "m7a.large", + "name": "m7a.large", + "ram": 8192 }, - "m6i.xlarge": { + "m7a.medium": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6i.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7a.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "4 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" + }, + "id": "m7a.medium", + "name": "m7a.medium", + "ram": 4096 + }, + "m7a.xlarge": { + "bandwidth": 12500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m7a.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6i.xlarge", - "name": "m6i.xlarge", - "ram": 16384, + "id": "m7a.xlarge", + "name": "m7a.xlarge", + "ram": 16384 }, - "m6id.12xlarge": { - "bandwidth": 18750, - "disk": 2850, + "m7g.12xlarge": { + "bandwidth": 22500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "18750 Megabit", + "networkPerformance": "22500 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6id.12xlarge", - "name": "m6id.12xlarge", - "ram": 196608, + "id": "m7g.12xlarge", + "name": "m7g.12xlarge", + "ram": 196608 }, - "m6id.16xlarge": { - "bandwidth": 25000, - "disk": 3800, + "m7g.16xlarge": { + "bandwidth": 30, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "25000 Megabit", + "networkPerformance": "30 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", - }, - "id": "m6id.16xlarge", - "name": "m6id.16xlarge", - "ram": 262144, - }, - "m6id.24xlarge": { - "bandwidth": 37500, - "disk": 5700, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m6id.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "37500 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1425 SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6id.24xlarge", - "name": "m6id.24xlarge", - "ram": 393216, + "id": "m7g.16xlarge", + "name": "m7g.16xlarge", + "ram": 262144 }, - "m6id.2xlarge": { - "bandwidth": 12500, - "disk": 474, + "m7g.2xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 12500 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 474 SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6id.2xlarge", - "name": "m6id.2xlarge", - "ram": 32768, + "id": "m7g.2xlarge", + "name": "m7g.2xlarge", + "ram": 32768 }, - "m6id.32xlarge": { - "bandwidth": 50000, - "disk": 7600, + "m7g.4xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 SSD", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m6id.32xlarge", - "name": "m6id.32xlarge", - "ram": 524288, + "id": "m7g.4xlarge", + "name": "m7g.4xlarge", + "ram": 65536 }, - "m6id.4xlarge": { - "bandwidth": 12500, - "disk": 950, + "m7g.8xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "128 GiB", + "networkPerformance": "15 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m6id.4xlarge", - "name": "m6id.4xlarge", - "ram": 65536, + "id": "m7g.8xlarge", + "name": "m7g.8xlarge", + "ram": 131072 }, - "m6id.8xlarge": { + "m7g.large": { "bandwidth": 12500, - "disk": 1900, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "12500 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m6id.8xlarge", - "name": "m6id.8xlarge", - "ram": 131072, + "id": "m7g.large", + "name": "m7g.large", + "ram": 8192 }, - "m6id.large": { + "m7g.medium": { "bandwidth": 12500, - "disk": 118, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "8 GiB", + "memory": "4 GiB", "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "m6id.large", - "name": "m6id.large", - "ram": 8192, + "id": "m7g.medium", + "name": "m7g.medium", + "ram": 4096 }, - "m6id.xlarge": { + "m7g.xlarge": { "bandwidth": 12500, - "disk": 237, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6id.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7g.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 SSD", + "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6id.xlarge", - "name": "m6id.xlarge", - "ram": 16384, + "id": "m7g.xlarge", + "name": "m7g.xlarge", + "ram": 16384 }, - "m6idn.12xlarge": { - "bandwidth": 75000, + "m7gd.12xlarge": { + "bandwidth": 22500, "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "192 GiB", - "networkPerformance": "75000 Megabit", + "networkPerformance": "22500 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 SSD", + "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.12xlarge", - "name": "m6idn.12xlarge", - "ram": 196608, + "id": "m7gd.12xlarge", + "name": "m7gd.12xlarge", + "ram": 196608 }, - "m6idn.16xlarge": { - "bandwidth": 100000, + "m7gd.16xlarge": { + "bandwidth": 30, "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "100000 Megabit", + "networkPerformance": "30 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 SSD", + "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", - }, - "id": "m6idn.16xlarge", - "name": "m6idn.16xlarge", - "ram": 262144, - }, - "m6idn.24xlarge": { - "bandwidth": 150000, - "disk": 5700, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m6idn.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "150000 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1425 SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.24xlarge", - "name": "m6idn.24xlarge", - "ram": 393216, + "id": "m7gd.16xlarge", + "name": "m7gd.16xlarge", + "ram": 262144 }, - "m6idn.2xlarge": { - "bandwidth": 40000, - "disk": 474, + "m7gd.2xlarge": { + "bandwidth": 15, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 40000 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 474 SSD", + "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", - }, - "id": "m6idn.2xlarge", - "name": "m6idn.2xlarge", - "ram": 32768, - }, - "m6idn.32xlarge": { - "bandwidth": 200000, - "disk": 7600, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m6idn.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "200000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 SSD", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.32xlarge", - "name": "m6idn.32xlarge", - "ram": 524288, + "id": "m7gd.2xlarge", + "name": "m7gd.2xlarge", + "ram": 32768 }, - "m6idn.4xlarge": { - "bandwidth": 50000, + "m7gd.4xlarge": { + "bandwidth": 15, "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 50000 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 SSD", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.4xlarge", - "name": "m6idn.4xlarge", - "ram": 65536, + "id": "m7gd.4xlarge", + "name": "m7gd.4xlarge", + "ram": 65536 }, - "m6idn.8xlarge": { - "bandwidth": 50000, + "m7gd.8xlarge": { + "bandwidth": 15, "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "50000 Megabit", + "networkPerformance": "15 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", - }, - "id": "m6idn.8xlarge", - "name": "m6idn.8xlarge", - "ram": 131072, - }, - "m6idn.large": { - "bandwidth": 25000, - "disk": 118, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m6idn.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25000 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.large", - "name": "m6idn.large", - "ram": 8192, + "id": "m7gd.8xlarge", + "name": "m7gd.8xlarge", + "ram": 131072 }, - "m6idn.xlarge": { - "bandwidth": 30000, - "disk": 237, + "m7gd.large": { + "bandwidth": 12500, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6idn.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 30000 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 118 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m6idn.xlarge", - "name": "m6idn.xlarge", - "ram": 16384, + "id": "m7gd.large", + "name": "m7gd.large", + "ram": 8192 }, - "m6in.12xlarge": { - "bandwidth": 75000, - "disk": 0, + "m7gd.medium": { + "bandwidth": 12500, + "disk": 59, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "75000 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "4 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "1 x 59 NVMe SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "m6in.12xlarge", - "name": "m6in.12xlarge", - "ram": 196608, + "id": "m7gd.medium", + "name": "m7gd.medium", + "ram": 4096 }, - "m6in.16xlarge": { - "bandwidth": 100000, - "disk": 0, + "m7gd.xlarge": { + "bandwidth": 12500, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "m7gd.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "100000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "1 x 237 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m6in.16xlarge", - "name": "m6in.16xlarge", - "ram": 262144, + "id": "m7gd.xlarge", + "name": "m7gd.xlarge", + "ram": 16384 }, - "m6in.24xlarge": { - "bandwidth": 150000, + "m7i-flex.2xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.24xlarge", + "instanceType": "m7i-flex.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "150000 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m6in.24xlarge", - "name": "m6in.24xlarge", - "ram": 393216, + "id": "m7i-flex.2xlarge", + "name": "m7i-flex.2xlarge", + "ram": 32768 }, - "m6in.2xlarge": { - "bandwidth": 40000, + "m7i-flex.4xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.2xlarge", + "instanceType": "m7i-flex.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 40000 Megabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m6in.2xlarge", - "name": "m6in.2xlarge", - "ram": 32768, + "id": "m7i-flex.4xlarge", + "name": "m7i-flex.4xlarge", + "ram": 65536 }, - "m6in.32xlarge": { - "bandwidth": 200000, + "m7i-flex.8xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.32xlarge", + "instanceType": "m7i-flex.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "200000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "128 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m6in.32xlarge", - "name": "m6in.32xlarge", - "ram": 524288, + "id": "m7i-flex.8xlarge", + "name": "m7i-flex.8xlarge", + "ram": 131072 }, - "m6in.4xlarge": { - "bandwidth": 50000, + "m7i-flex.large": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.4xlarge", + "instanceType": "m7i-flex.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 50000 Megabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m6in.4xlarge", - "name": "m6in.4xlarge", - "ram": 65536, + "id": "m7i-flex.large", + "name": "m7i-flex.large", + "ram": 8192 }, - "m6in.8xlarge": { - "bandwidth": 50000, + "m7i-flex.xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.8xlarge", + "instanceType": "m7i-flex.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m6in.8xlarge", - "name": "m6in.8xlarge", - "ram": 131072, + "id": "m7i-flex.xlarge", + "name": "m7i-flex.xlarge", + "ram": 16384 }, - "m6in.large": { - "bandwidth": 25000, + "m7i.12xlarge": { + "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.large", + "instanceType": "m7i.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 25000 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "192 GiB", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m6in.large", - "name": "m6in.large", - "ram": 8192, + "id": "m7i.12xlarge", + "name": "m7i.12xlarge", + "ram": 196608 }, - "m6in.xlarge": { - "bandwidth": 30000, + "m7i.16xlarge": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m6in.xlarge", + "instanceType": "m7i.16xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 30000 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "256 GiB", + "networkPerformance": "25000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m6in.xlarge", - "name": "m6in.xlarge", - "ram": 16384, + "id": "m7i.16xlarge", + "name": "m7i.16xlarge", + "ram": 262144 }, - "m7g.12xlarge": { - "bandwidth": 22500, + "m7i.24xlarge": { + "bandwidth": 37500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "15000 Mbps", + "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "22500 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "384 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m7g.12xlarge", - "name": "m7g.12xlarge", - "ram": 196608, + "id": "m7i.24xlarge", + "name": "m7i.24xlarge", + "ram": 393216 }, - "m7g.16xlarge": { - "bandwidth": 30, + "m7i.2xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "30 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m7g.16xlarge", - "name": "m7g.16xlarge", - "ram": 262144, + "id": "m7i.2xlarge", + "name": "m7i.2xlarge", + "ram": 32768 }, - "m7g.2xlarge": { - "bandwidth": 15, + "m7i.48xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.48xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "768 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "m7g.2xlarge", - "name": "m7g.2xlarge", - "ram": 32768, + "id": "m7i.48xlarge", + "name": "m7i.48xlarge", + "ram": 786432 }, - "m7g.4xlarge": { - "bandwidth": 15, + "m7i.4xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 15 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7g.4xlarge", - "name": "m7g.4xlarge", - "ram": 65536, + "id": "m7i.4xlarge", + "name": "m7i.4xlarge", + "ram": 65536 }, - "m7g.8xlarge": { - "bandwidth": 15, + "m7i.8xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "15 Gigabit", + "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7g.8xlarge", - "name": "m7g.8xlarge", - "ram": 131072, + "id": "m7i.8xlarge", + "name": "m7i.8xlarge", + "ram": 131072 }, - "m7g.large": { + "m7i.large": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", - "instanceType": "m7g.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "m7i.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "8 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7g.large", - "name": "m7g.large", - "ram": 8192, + "id": "m7i.large", + "name": "m7i.large", + "ram": 8192 + }, + "m7i.xlarge": { + "bandwidth": 12500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.2 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "General purpose", + "instanceType": "m7i.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-west-3", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" + }, + "id": "m7i.xlarge", + "name": "m7i.xlarge", + "ram": 16384 }, - "m7g.medium": { - "bandwidth": 12500, + "p2.16xlarge": { + "bandwidth": 20, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", + "gpu": "16", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7g.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p2.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "4 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "732 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m7g.medium", - "name": "m7g.medium", - "ram": 4096, + "id": "p2.16xlarge", + "name": "p2.16xlarge", + "ram": 749568 }, - "m7g.xlarge": { - "bandwidth": 12500, + "p2.8xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7g.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p2.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "488 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m7g.xlarge", - "name": "m7g.xlarge", - "ram": 16384, + "id": "p2.8xlarge", + "name": "p2.8xlarge", + "ram": 499712 }, - "m7gd.12xlarge": { - "bandwidth": 22500, - "disk": 2850, + "p2.xlarge": { + "bandwidth": None, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "15000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "750 Mbps", + "ecu": "16", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p2.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "22500 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "61 GiB", + "networkPerformance": "High", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.12xlarge", - "name": "m7gd.12xlarge", - "ram": 196608, + "id": "p2.xlarge", + "name": "p2.xlarge", + "ram": 62464 }, - "m7gd.16xlarge": { - "bandwidth": 30, - "disk": 3800, + "p3.16xlarge": { + "bandwidth": 25, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p3.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "30 Gigabit", + "memory": "488 GiB", + "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.16xlarge", - "name": "m7gd.16xlarge", - "ram": 262144, + "id": "p3.16xlarge", + "name": "p3.16xlarge", + "ram": 499712 }, - "m7gd.2xlarge": { - "bandwidth": 15, - "disk": 475, + "p3.2xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "1750 Mbps", + "ecu": "31", "enhancedNetworkingSupported": "Yes", + "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p3.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 15 Gigabit", + "memory": "61 GiB", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.2xlarge", - "name": "m7gd.2xlarge", - "ram": 32768, + "id": "p3.2xlarge", + "name": "p3.2xlarge", + "ram": 62464 }, - "m7gd.4xlarge": { - "bandwidth": 15, - "disk": 950, + "p3.8xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", + "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p3.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.4xlarge", - "name": "m7gd.4xlarge", - "ram": 65536, + "id": "p3.8xlarge", + "name": "p3.8xlarge", + "ram": 249856 }, - "m7gd.8xlarge": { - "bandwidth": 15, - "disk": 1900, + "p3dn.24xlarge": { + "bandwidth": 100, + "disk": 1800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "14000 Mbps", + "ecu": "337", "enhancedNetworkingSupported": "Yes", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p3dn.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "15 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "768 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8175 (Skylake)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "2 x 900 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.8xlarge", - "name": "m7gd.8xlarge", - "ram": 131072, + "id": "p3dn.24xlarge", + "name": "p3dn.24xlarge", + "ram": 786432 }, - "m7gd.large": { - "bandwidth": 12500, - "disk": 118, + "p4d.24xlarge": { + "bandwidth": 400, + "disk": 8000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "345", + "enhancedNetworkingSupported": "No", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p4d.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "1152 GiB", + "networkPerformance": "400 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8275L", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "8 x 1000 SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.large", - "name": "m7gd.large", - "ram": 8192, + "id": "p4d.24xlarge", + "name": "p4d.24xlarge", + "ram": 1179648 }, - "m7gd.medium": { - "bandwidth": 12500, - "disk": 59, + "p4de.24xlarge": { + "bandwidth": 400, + "disk": 8000, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "345", + "enhancedNetworkingSupported": "No", + "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "GPU instance", + "instanceType": "p4de.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "4 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "1152 GiB", + "networkPerformance": "400 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8275L", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 59 NVMe SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "8 x 1000 SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.medium", - "name": "m7gd.medium", - "ram": 4096, + "id": "p4de.24xlarge", + "name": "p4de.24xlarge", + "ram": 1179648 }, - "m7gd.xlarge": { - "bandwidth": 12500, - "disk": 237, + "p5.48xlarge": { + "bandwidth": 3200, + "disk": 30720, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "2.95 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "80 Gbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7gd.xlarge", + "gpu": "8", + "gpuMemory": "80 GB HBM3", + "instanceFamily": "GPU instance", + "instanceType": "p5.48xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "2048 GiB", + "networkPerformance": "3200 Gigabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "8 x 3840 GB SSD", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "m7gd.xlarge", - "name": "m7gd.xlarge", - "ram": 16384, + "id": "p5.48xlarge", + "name": "p5.48xlarge", + "ram": 2097152 }, - "m7i-flex.2xlarge": { - "bandwidth": 12500, - "disk": 0, + "r3.2xlarge": { + "bandwidth": None, + "disk": 160, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "26", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i-flex.2xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r3.2xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 12500 Megabit", + "memory": "61 GiB", + "networkPerformance": "High", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 160 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7i-flex.2xlarge", - "name": "m7i-flex.2xlarge", - "ram": 32768, + "id": "r3.2xlarge", + "name": "r3.2xlarge", + "ram": 62464 }, - "m7i-flex.4xlarge": { - "bandwidth": 12500, - "disk": 0, + "r3.4xlarge": { + "bandwidth": None, + "disk": 320, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "52", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i-flex.4xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r3.4xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12500 Megabit", + "memory": "122 GiB", + "networkPerformance": "High", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "processorFeatures": "Intel AVX; Intel Turbo", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 320 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7i-flex.4xlarge", - "name": "m7i-flex.4xlarge", - "ram": 65536, + "id": "r3.4xlarge", + "name": "r3.4xlarge", + "ram": 124928 }, - "m7i-flex.8xlarge": { - "bandwidth": 12500, - "disk": 0, + "r3.8xlarge": { + "bandwidth": 10, + "disk": 640, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "104", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i-flex.8xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r3.8xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 12500 Megabit", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "processorFeatures": "Intel AVX; Intel Turbo", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 320 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7i-flex.8xlarge", - "name": "m7i-flex.8xlarge", - "ram": 131072, - }, - "m7i-flex.large": { - "bandwidth": 12500, - "disk": 0, + "id": "r3.8xlarge", + "name": "r3.8xlarge", + "ram": 249856 + }, + "r3.large": { + "bandwidth": None, + "disk": 32, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "6.5", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i-flex.large", + "instanceFamily": "Memory optimized", + "instanceType": "r3.large", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 12500 Megabit", + "memory": "15.25 GiB", + "networkPerformance": "Moderate", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 32 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7i-flex.large", - "name": "m7i-flex.large", - "ram": 8192, + "id": "r3.large", + "name": "r3.large", + "ram": 15616 }, - "m7i-flex.xlarge": { - "bandwidth": 12500, - "disk": 0, + "r3.xlarge": { + "bandwidth": None, + "disk": 80, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "classicnetworkingsupport": "true", + "clockSpeed": "2.5 GHz", + "currentGeneration": "No", + "ecu": "13", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i-flex.xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r3.xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", + "memory": "30.5 GiB", + "networkPerformance": "Moderate", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 80 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "m7i-flex.xlarge", - "name": "m7i-flex.xlarge", - "ram": 16384, + "id": "r3.xlarge", + "name": "r3.xlarge", + "ram": 31232 }, - "m7i.12xlarge": { - "bandwidth": 18750, + "r4.16xlarge": { + "bandwidth": 20, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "15000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "12000 Mbps", + "ecu": "201", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "192 GiB", - "networkPerformance": "18750 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "488 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m7i.12xlarge", - "name": "m7i.12xlarge", - "ram": 196608, + "id": "r4.16xlarge", + "name": "r4.16xlarge", + "ram": 499712 }, - "m7i.16xlarge": { - "bandwidth": 25000, + "r4.2xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "1600 Mbps", + "ecu": "31", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "25000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "61 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "m7i.16xlarge", - "name": "m7i.16xlarge", - "ram": 262144, + "id": "r4.2xlarge", + "name": "r4.2xlarge", + "ram": 62464 }, - "m7i.24xlarge": { - "bandwidth": 37500, + "r4.4xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "3000 Mbps", + "ecu": "58", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "37500 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "122 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "m7i.24xlarge", - "name": "m7i.24xlarge", - "ram": 393216, + "id": "r4.4xlarge", + "name": "r4.4xlarge", + "ram": 124928 }, - "m7i.2xlarge": { - "bandwidth": 12500, + "r4.8xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "6000 Mbps", + "ecu": "97", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "244 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "m7i.2xlarge", - "name": "m7i.2xlarge", - "ram": 32768, + "id": "r4.8xlarge", + "name": "r4.8xlarge", + "ram": 249856 }, - "m7i.48xlarge": { - "bandwidth": 50000, + "r4.large": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "400 Mbps", + "ecu": "8", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "384", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "15.25 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "m7i.48xlarge", - "name": "m7i.48xlarge", - "ram": 786432, + "id": "r4.large", + "name": "r4.large", + "ram": 15616 }, - "m7i.4xlarge": { - "bandwidth": 12500, + "r4.xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "2.3 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "800 Mbps", + "ecu": "16", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r4.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "30.5 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "m7i.4xlarge", - "name": "m7i.4xlarge", - "ram": 65536, + "id": "r4.xlarge", + "name": "r4.xlarge", + "ram": 31232 }, - "m7i.8xlarge": { - "bandwidth": 12500, + "r5.12xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "9500 Mbps", + "ecu": "168", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r5.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "12500 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "384 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "m7i.8xlarge", - "name": "m7i.8xlarge", - "ram": 131072, + "id": "r5.12xlarge", + "name": "r5.12xlarge", + "ram": 393216 }, - "m7i.large": { - "bandwidth": 12500, + "r5.16xlarge": { + "bandwidth": 20, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "13600 Mbps", + "ecu": "256", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r5.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "512 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "m7i.large", - "name": "m7i.large", - "ram": 8192, + "id": "r5.16xlarge", + "name": "r5.16xlarge", + "ram": 524288 }, - "m7i.xlarge": { - "bandwidth": 12500, + "r5.24xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.2 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "19000 Mbps", + "ecu": "337", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "General purpose", - "instanceType": "m7i.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceFamily": "Memory optimized", + "instanceType": "r5.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "memory": "768 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "m7i.xlarge", - "name": "m7i.xlarge", - "ram": 16384, + "id": "r5.24xlarge", + "name": "r5.24xlarge", + "ram": 786432 }, - "p2.16xlarge": { - "bandwidth": 20, + "r5.2xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "Up to 4750 Mbps", + "ecu": "37", "enhancedNetworkingSupported": "Yes", - "gpu": "16", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p2.16xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r5.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "732 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "p2.16xlarge", - "name": "p2.16xlarge", - "ram": 749568, + "id": "r5.2xlarge", + "name": "r5.2xlarge", + "ram": 65536 }, - "p2.8xlarge": { + "r5.4xlarge": { "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", - "ecu": "97", + "dedicatedEbsThroughput": "4750 Mbps", + "ecu": "70", "enhancedNetworkingSupported": "Yes", - "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p2.8xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r5.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "488 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "128 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "p2.8xlarge", - "name": "p2.8xlarge", - "ram": 499712, + "id": "r5.4xlarge", + "name": "r5.4xlarge", + "ram": 131072 }, - "p2.xlarge": { - "bandwidth": None, + "r5.8xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "750 Mbps", - "ecu": "16", + "dedicatedEbsThroughput": "6800 Mbps", + "ecu": "128", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p2.xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r5.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "61 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "256 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "p2.xlarge", - "name": "p2.xlarge", - "ram": 62464, + "id": "r5.8xlarge", + "name": "r5.8xlarge", + "ram": 262144 }, - "p3.16xlarge": { - "bandwidth": 25, + "r5.large": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "Up to 4750 Mbps", + "ecu": "10", "enhancedNetworkingSupported": "Yes", - "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p3.16xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r5.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "488 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "p3.16xlarge", - "name": "p3.16xlarge", - "ram": 499712, + "id": "r5.large", + "name": "r5.large", + "ram": 16384 }, - "p3.2xlarge": { + "r5.xlarge": { "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1750 Mbps", - "ecu": "31", + "dedicatedEbsThroughput": "Up to 4750 Mbps", + "ecu": "19", "enhancedNetworkingSupported": "Yes", - "gpu": "1", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p3.2xlarge", + "instanceFamily": "Memory optimized", + "instanceType": "r5.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "61 GiB", + "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "p3.2xlarge", - "name": "p3.2xlarge", - "ram": 62464, + "id": "r5.xlarge", + "name": "r5.xlarge", + "ram": 32768 }, - "p3.8xlarge": { + "r5a.12xlarge": { "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "97", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "4", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p3.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Memory optimized", + "instanceType": "r5a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", + "memory": "384 GiB", "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "96", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-west-2", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "p3.8xlarge", - "name": "p3.8xlarge", - "ram": 249856, + "id": "r5a.12xlarge", + "name": "r5a.12xlarge", + "ram": 393216 }, - "p3dn.24xlarge": { - "bandwidth": 100, - "disk": 1800, + "r5a.16xlarge": { + "bandwidth": 12, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "14000 Mbps", - "ecu": "337", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "8", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p3dn.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Memory optimized", + "instanceType": "r5a.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175 (Skylake)", + "memory": "512 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "processorFeatures": "AVX; AVX2; AMD Turbo", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "p3dn.24xlarge", - "name": "p3dn.24xlarge", - "ram": 786432, + "id": "r5a.16xlarge", + "name": "r5a.16xlarge", + "ram": 524288 }, - "p4d.24xlarge": { - "bandwidth": 400, - "disk": 8000, + "r5a.24xlarge": { + "bandwidth": 20, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "345", - "enhancedNetworkingSupported": "No", - "gpu": "8", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p4d.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Memory optimized", + "instanceType": "r5a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "1152 GiB", - "networkPerformance": "400 Gigabit", + "memory": "768 GiB", + "networkPerformance": "20 Gigabit", "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8275L", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 1000 SSD", + "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "p4d.24xlarge", - "name": "p4d.24xlarge", - "ram": 1179648, + "id": "r5a.24xlarge", + "name": "r5a.24xlarge", + "ram": 786432 }, - "p4de.24xlarge": { - "bandwidth": 400, - "disk": 8000, + "r5a.2xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "345", - "enhancedNetworkingSupported": "No", - "gpu": "8", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", - "instanceFamily": "GPU instance", - "instanceType": "p4de.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceFamily": "Memory optimized", + "instanceType": "r5a.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "1152 GiB", - "networkPerformance": "400 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8275L", + "memory": "64 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 1000 SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "p4de.24xlarge", - "name": "p4de.24xlarge", - "ram": 1179648, + "id": "r5a.2xlarge", + "name": "r5a.2xlarge", + "ram": 65536 }, - "p5.48xlarge": { - "bandwidth": 3200, - "disk": 30720, + "r5a.4xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80 Gbps", - "ecu": "None", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpu": "8", - "gpuMemory": "80 GB HBM3", - "instanceFamily": "GPU instance", - "instanceType": "p5.48xlarge", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r5a.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "2048 GiB", - "networkPerformance": "3200 Gigabit", - "normalizationSizeFactor": "384", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "128 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", + "processorFeatures": "AVX; AVX2; AMD Turbo", "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "8 x 3840 GB SSD", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "p5.48xlarge", - "name": "p5.48xlarge", - "ram": 2097152, + "id": "r5a.4xlarge", + "name": "r5a.4xlarge", + "ram": 131072 }, - "r3.2xlarge": { - "bandwidth": None, - "disk": 160, + "r5a.8xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "26", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r3.2xlarge", + "instanceType": "r5a.8xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "61 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "256 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 160 SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "r3.2xlarge", - "name": "r3.2xlarge", - "ram": 62464, + "id": "r5a.8xlarge", + "name": "r5a.8xlarge", + "ram": 262144 }, - "r3.4xlarge": { - "bandwidth": None, - "disk": 320, + "r5a.large": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "52", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r3.4xlarge", + "instanceType": "r5a.large", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "122 GiB", - "networkPerformance": "High", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "16 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 320 SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "r3.4xlarge", - "name": "r3.4xlarge", - "ram": 124928, + "id": "r5a.large", + "name": "r5a.large", + "ram": 16384 }, - "r3.8xlarge": { + "r5a.xlarge": { "bandwidth": 10, - "disk": 640, + "disk": 0, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "104", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r3.8xlarge", + "instanceType": "r5a.xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-2", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 320 SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r3.8xlarge", - "name": "r3.8xlarge", - "ram": 249856, + "id": "r5a.xlarge", + "name": "r5a.xlarge", + "ram": 32768 }, - "r3.large": { - "bandwidth": None, - "disk": 32, + "r5ad.12xlarge": { + "bandwidth": 10, + "disk": 1800, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "6.5", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r3.large", + "instanceType": "r5ad.12xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15.25 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "384 GiB", + "networkPerformance": "10 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "ap-south-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 32 SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "2 x 900 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r3.large", - "name": "r3.large", - "ram": 15616, + "id": "r5ad.12xlarge", + "name": "r5ad.12xlarge", + "ram": 393216 }, - "r3.xlarge": { - "bandwidth": None, - "disk": 80, + "r5ad.16xlarge": { + "bandwidth": 12, + "disk": 2400, "extra": { "availabilityzone": "NA", - "classicnetworkingsupport": "true", + "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", - "currentGeneration": "No", - "ecu": "13", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "7000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r3.xlarge", + "instanceType": "r5ad.16xlarge", "intelAvx2Available": "No", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "30.5 GiB", - "networkPerformance": "Moderate", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2670 v2 (Ivy Bridge)", + "memory": "512 GiB", + "networkPerformance": "12 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 80 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "4 x 600 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r3.xlarge", - "name": "r3.xlarge", - "ram": 31232, + "id": "r5ad.16xlarge", + "name": "r5ad.16xlarge", + "ram": 524288 }, - "r4.16xlarge": { + "r5ad.24xlarge": { "bandwidth": 20, - "disk": 0, + "disk": 3600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", - "ecu": "201", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "488 GiB", + "memory": "768 GiB", "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "normalizationSizeFactor": "192", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "processorFeatures": "AVX; AVX2; AMD Turbo", "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "4 x 900 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "r4.16xlarge", - "name": "r4.16xlarge", - "ram": 499712, + "id": "r5ad.24xlarge", + "name": "r5ad.24xlarge", + "ram": 786432 }, - "r4.2xlarge": { + "r5ad.2xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 300, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "1600 Mbps", - "ecu": "31", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "61 GiB", + "memory": "64 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ca-central-1", + "physicalProcessor": "AMD EPYC 7571", + "processorArchitecture": "64-bit", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r4.2xlarge", - "name": "r4.2xlarge", - "ram": 62464, + "id": "r5ad.2xlarge", + "name": "r5ad.2xlarge", + "ram": 65536 }, - "r4.4xlarge": { + "r5ad.4xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3000 Mbps", - "ecu": "58", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "122 GiB", + "memory": "128 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "us-east-2", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r4.4xlarge", - "name": "r4.4xlarge", - "ram": 124928, + "id": "r5ad.4xlarge", + "name": "r5ad.4xlarge", + "ram": 131072 }, - "r4.8xlarge": { + "r5ad.8xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 1200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", - "ecu": "97", + "dedicatedEbsThroughput": "3500 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "244 GiB", - "networkPerformance": "10 Gigabit", + "memory": "256 GiB", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ca-central-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r4.8xlarge", - "name": "r4.8xlarge", - "ram": 249856, + "id": "r5ad.8xlarge", + "name": "r5ad.8xlarge", + "ram": 262144 }, - "r4.large": { + "r5ad.large": { "bandwidth": 10, - "disk": 0, + "disk": 75, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "400 Mbps", - "ecu": "8", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "15.25 GiB", + "memory": "16 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "AVX; AVX2; AMD Turbo", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r4.large", - "name": "r4.large", - "ram": 15616, + "id": "r5ad.large", + "name": "r5ad.large", + "ram": 16384 }, - "r4.xlarge": { + "r5ad.xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 150, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.3 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "800 Mbps", - "ecu": "16", + "dedicatedEbsThroughput": "Up to 2120 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r4.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r5ad.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "30.5 GiB", + "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon E5-2686 v4 (Broadwell)", + "physicalProcessor": "AMD EPYC 7571", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", + "processorFeatures": "AVX; AVX2; AMD Turbo", "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r4.xlarge", - "name": "r4.xlarge", - "ram": 31232, + "id": "r5ad.xlarge", + "name": "r5ad.xlarge", + "ram": 32768 }, - "r5.12xlarge": { + "r5b.12xlarge": { "bandwidth": 10, "disk": 0, "extra": { @@ -15091,12 +17798,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9500 Mbps", - "ecu": "168", + "dedicatedEbsThroughput": "30 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.12xlarge", + "instanceType": "r5b.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15104,21 +17811,21 @@ "memory": "384 GiB", "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.12xlarge", - "name": "r5.12xlarge", - "ram": 393216, + "id": "r5b.12xlarge", + "name": "r5b.12xlarge", + "ram": 393216 }, - "r5.16xlarge": { + "r5b.16xlarge": { "bandwidth": 20, "disk": 0, "extra": { @@ -15126,12 +17833,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13600 Mbps", - "ecu": "256", + "dedicatedEbsThroughput": "40 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.16xlarge", + "instanceType": "r5b.16xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15139,21 +17846,21 @@ "memory": "512 GiB", "networkPerformance": "20 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-1", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.16xlarge", - "name": "r5.16xlarge", - "ram": 524288, + "id": "r5b.16xlarge", + "name": "r5b.16xlarge", + "ram": 524288 }, - "r5.24xlarge": { + "r5b.24xlarge": { "bandwidth": 25, "disk": 0, "extra": { @@ -15161,12 +17868,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "19000 Mbps", - "ecu": "337", + "dedicatedEbsThroughput": "60 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.24xlarge", + "instanceType": "r5b.24xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15174,21 +17881,21 @@ "memory": "768 GiB", "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.24xlarge", - "name": "r5.24xlarge", - "ram": 786432, + "id": "r5b.24xlarge", + "name": "r5b.24xlarge", + "ram": 786432 }, - "r5.2xlarge": { + "r5b.2xlarge": { "bandwidth": 10, "disk": 0, "extra": { @@ -15196,12 +17903,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4750 Mbps", - "ecu": "37", + "dedicatedEbsThroughput": "Up to 12.5 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.2xlarge", + "instanceType": "r5b.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15209,21 +17916,21 @@ "memory": "64 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.2xlarge", - "name": "r5.2xlarge", - "ram": 65536, + "id": "r5b.2xlarge", + "name": "r5b.2xlarge", + "ram": 65536 }, - "r5.4xlarge": { + "r5b.4xlarge": { "bandwidth": 10, "disk": 0, "extra": { @@ -15231,12 +17938,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4750 Mbps", - "ecu": "70", + "dedicatedEbsThroughput": "10 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.4xlarge", + "instanceType": "r5b.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15244,21 +17951,21 @@ "memory": "128 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-south-1", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.4xlarge", - "name": "r5.4xlarge", - "ram": 131072, + "id": "r5b.4xlarge", + "name": "r5b.4xlarge", + "ram": 131072 }, - "r5.8xlarge": { + "r5b.8xlarge": { "bandwidth": 10, "disk": 0, "extra": { @@ -15266,12 +17973,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6800 Mbps", - "ecu": "128", + "dedicatedEbsThroughput": "5 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.8xlarge", + "instanceType": "r5b.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15279,21 +17986,21 @@ "memory": "256 GiB", "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.8xlarge", - "name": "r5.8xlarge", - "ram": 262144, + "id": "r5b.8xlarge", + "name": "r5b.8xlarge", + "ram": 262144 }, - "r5.large": { + "r5b.large": { "bandwidth": 10, "disk": 0, "extra": { @@ -15301,12 +18008,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4750 Mbps", - "ecu": "10", + "dedicatedEbsThroughput": "Up to 10 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.large", + "instanceType": "r5b.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15314,21 +18021,21 @@ "memory": "16 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.large", - "name": "r5.large", - "ram": 16384, + "id": "r5b.large", + "name": "r5b.large", + "ram": 16384 }, - "r5.xlarge": { + "r5b.xlarge": { "bandwidth": 10, "disk": 0, "extra": { @@ -15336,12 +18043,12 @@ "classicnetworkingsupport": "false", "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4750 Mbps", - "ecu": "19", + "dedicatedEbsThroughput": "Up to 10 Gbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5.xlarge", + "instanceType": "r5b.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", @@ -15349,4373 +18056,4529 @@ "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5.xlarge", - "name": "r5.xlarge", - "ram": 32768, + "id": "r5b.xlarge", + "name": "r5b.xlarge", + "ram": 32768 }, - "r5a.12xlarge": { + "r5d.12xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 1800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "6000 Mbps", + "ecu": "168", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.12xlarge", - "name": "r5a.12xlarge", - "ram": 393216, + "id": "r5d.12xlarge", + "name": "r5d.12xlarge", + "ram": 393216 }, - "r5a.16xlarge": { - "bandwidth": 12, - "disk": 0, + "r5d.16xlarge": { + "bandwidth": 20, + "disk": 2400, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "256", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "12 Gigabit", + "networkPerformance": "20 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.16xlarge", - "name": "r5a.16xlarge", - "ram": 524288, + "id": "r5d.16xlarge", + "name": "r5d.16xlarge", + "ram": 524288 }, - "r5a.24xlarge": { - "bandwidth": 20, - "disk": 0, + "r5d.24xlarge": { + "bandwidth": 25, + "disk": 3600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "12000 Mbps", + "ecu": "337", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "768 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.24xlarge", - "name": "r5a.24xlarge", - "ram": 786432, + "id": "r5d.24xlarge", + "name": "r5d.24xlarge", + "ram": 786432 }, - "r5a.2xlarge": { + "r5d.2xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 300, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "NA", + "ecu": "37", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.2xlarge", - "name": "r5a.2xlarge", - "ram": 65536, + "id": "r5d.2xlarge", + "name": "r5d.2xlarge", + "ram": 65536 }, - "r5a.4xlarge": { + "r5d.4xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "2120 Mbps", + "ecu": "70", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.4xlarge", - "name": "r5a.4xlarge", - "ram": 131072, + "id": "r5d.4xlarge", + "name": "r5d.4xlarge", + "ram": 131072 }, - "r5a.8xlarge": { + "r5d.8xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 1200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", - "ecu": "NA", + "dedicatedEbsThroughput": "5000 Mbps", + "ecu": "128", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "10 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.8xlarge", - "name": "r5a.8xlarge", - "ram": 262144, + "id": "r5d.8xlarge", + "name": "r5d.8xlarge", + "ram": 262144 }, - "r5a.large": { + "r5d.large": { "bandwidth": 10, - "disk": 0, + "disk": 75, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "NA", + "ecu": "10", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.large", - "name": "r5a.large", - "ram": 16384, + "id": "r5d.large", + "name": "r5d.large", + "ram": 16384 }, - "r5a.xlarge": { + "r5d.xlarge": { "bandwidth": 10, - "disk": 0, + "disk": 150, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "NA", + "ecu": "19", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5a.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r5d.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8175", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5a.xlarge", - "name": "r5a.xlarge", - "ram": 32768, + "id": "r5d.xlarge", + "name": "r5d.xlarge", + "ram": 32768 }, - "r5ad.12xlarge": { - "bandwidth": 10, + "r5dn.12xlarge": { + "bandwidth": 50, "disk": 1800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "6000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.12xlarge", + "instanceType": "r5dn.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "50 Gigabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 NVMe SSD", + "storage": "2 x 900 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.12xlarge", - "name": "r5ad.12xlarge", - "ram": 393216, + "id": "r5dn.12xlarge", + "name": "r5dn.12xlarge", + "ram": 393216 }, - "r5ad.16xlarge": { - "bandwidth": 12, + "r5dn.16xlarge": { + "bandwidth": 75, "disk": 2400, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "7000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.16xlarge", + "instanceType": "r5dn.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "12 Gigabit", + "networkPerformance": "75 Gigabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-west-2", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.16xlarge", - "name": "r5ad.16xlarge", - "ram": 524288, + "id": "r5dn.16xlarge", + "name": "r5dn.16xlarge", + "ram": 524288 }, - "r5ad.24xlarge": { - "bandwidth": 20, + "r5dn.24xlarge": { + "bandwidth": 100, "disk": 3600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "12000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.24xlarge", + "instanceType": "r5dn.24xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "768 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "100 Gigabit", "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.24xlarge", - "name": "r5ad.24xlarge", - "ram": 786432, + "id": "r5dn.24xlarge", + "name": "r5dn.24xlarge", + "ram": 786432 }, - "r5ad.2xlarge": { - "bandwidth": 10, + "r5dn.2xlarge": { + "bandwidth": 25, "disk": 300, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.2xlarge", + "instanceType": "r5dn.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.2xlarge", - "name": "r5ad.2xlarge", - "ram": 65536, + "id": "r5dn.2xlarge", + "name": "r5dn.2xlarge", + "ram": 65536 }, - "r5ad.4xlarge": { - "bandwidth": 10, + "r5dn.4xlarge": { + "bandwidth": 25, "disk": 600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.4xlarge", + "instanceType": "r5dn.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.4xlarge", - "name": "r5ad.4xlarge", - "ram": 131072, + "id": "r5dn.4xlarge", + "name": "r5dn.4xlarge", + "ram": 131072 }, - "r5ad.8xlarge": { - "bandwidth": 10, + "r5dn.8xlarge": { + "bandwidth": 25, "disk": 1200, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "3500 Mbps", + "dedicatedEbsThroughput": "5000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.8xlarge", + "instanceType": "r5dn.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-southeast-2", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.8xlarge", - "name": "r5ad.8xlarge", - "ram": 262144, + "id": "r5dn.8xlarge", + "name": "r5dn.8xlarge", + "ram": 262144 }, - "r5ad.large": { - "bandwidth": 10, + "r5dn.large": { + "bandwidth": 25, "disk": 75, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.large", + "instanceType": "r5dn.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "ap-northeast-2", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.large", - "name": "r5ad.large", - "ram": 16384, + "id": "r5dn.large", + "name": "r5dn.large", + "ram": 16384 }, - "r5ad.xlarge": { - "bandwidth": 10, + "r5dn.xlarge": { + "bandwidth": 25, "disk": 150, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.1 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5ad.xlarge", + "instanceType": "r5dn.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7571", + "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AVX; AVX2; AMD Turbo", - "regionCode": "us-east-2", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5ad.xlarge", - "name": "r5ad.xlarge", - "ram": 32768, + "id": "r5dn.xlarge", + "name": "r5dn.xlarge", + "ram": 32768 }, - "r5b.12xlarge": { - "bandwidth": 10, + "r5n.12xlarge": { + "bandwidth": 50, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30 Gbps", + "dedicatedEbsThroughput": "6000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.12xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.12xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "50 Gigabit", "normalizationSizeFactor": "96", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.12xlarge", - "name": "r5b.12xlarge", - "ram": 393216, + "id": "r5n.12xlarge", + "name": "r5n.12xlarge", + "ram": 393216 }, - "r5b.16xlarge": { - "bandwidth": 20, + "r5n.16xlarge": { + "bandwidth": 75, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40 Gbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.16xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.16xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "75 Gigabit", "normalizationSizeFactor": "128", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-north-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.16xlarge", - "name": "r5b.16xlarge", - "ram": 524288, + "id": "r5n.16xlarge", + "name": "r5n.16xlarge", + "ram": 524288 }, - "r5b.24xlarge": { - "bandwidth": 25, + "r5n.24xlarge": { + "bandwidth": 100, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60 Gbps", + "dedicatedEbsThroughput": "12000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.24xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.24xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "768 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "100 Gigabit", "normalizationSizeFactor": "192", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.24xlarge", - "name": "r5b.24xlarge", - "ram": 786432, + "id": "r5n.24xlarge", + "name": "r5n.24xlarge", + "ram": 786432 }, - "r5b.2xlarge": { - "bandwidth": 10, + "r5n.2xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 12.5 Gbps", + "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.2xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.2xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "16", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.2xlarge", - "name": "r5b.2xlarge", - "ram": 65536, + "id": "r5n.2xlarge", + "name": "r5n.2xlarge", + "ram": 65536 }, - "r5b.4xlarge": { - "bandwidth": 10, + "r5n.4xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10 Gbps", + "dedicatedEbsThroughput": "2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.4xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.4xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "32", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.4xlarge", - "name": "r5b.4xlarge", - "ram": 131072, + "id": "r5n.4xlarge", + "name": "r5n.4xlarge", + "ram": 131072 }, - "r5b.8xlarge": { - "bandwidth": 10, + "r5n.8xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5 Gbps", + "dedicatedEbsThroughput": "5000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.8xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.8xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "25 Gigabit", "normalizationSizeFactor": "64", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.8xlarge", - "name": "r5b.8xlarge", - "ram": 262144, + "id": "r5n.8xlarge", + "name": "r5n.8xlarge", + "ram": 262144 }, - "r5b.large": { - "bandwidth": 10, + "r5n.large": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10 Gbps", + "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.large", - "intelAvx2Available": "No", + "instanceType": "r5n.large", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "4", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.large", - "name": "r5b.large", - "ram": 16384, + "id": "r5n.large", + "name": "r5n.large", + "ram": 16384 }, - "r5b.xlarge": { - "bandwidth": 10, + "r5n.xlarge": { + "bandwidth": 25, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10 Gbps", + "dedicatedEbsThroughput": "Up to 2120 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "Yes", + "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5b.xlarge", - "intelAvx2Available": "No", + "instanceType": "r5n.xlarge", + "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", - "intelTurboAvailable": "No", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25 Gigabit", "normalizationSizeFactor": "8", "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5b.xlarge", - "name": "r5b.xlarge", - "ram": 32768, + "id": "r5n.xlarge", + "name": "r5n.xlarge", + "ram": 32768 }, - "r5d.12xlarge": { - "bandwidth": 10, - "disk": 1800, + "r6a.12xlarge": { + "bandwidth": 18750, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", - "ecu": "168", + "dedicatedEbsThroughput": "10000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 NVMe SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.12xlarge", - "name": "r5d.12xlarge", - "ram": 393216, + "id": "r6a.12xlarge", + "name": "r6a.12xlarge", + "ram": 393216 }, - "r5d.16xlarge": { - "bandwidth": 20, - "disk": 2400, + "r6a.16xlarge": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "256", + "dedicatedEbsThroughput": "13333 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 600 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.16xlarge", - "name": "r5d.16xlarge", - "ram": 524288, + "id": "r6a.16xlarge", + "name": "r6a.16xlarge", + "ram": 524288 }, - "r5d.24xlarge": { - "bandwidth": 25, - "disk": 3600, + "r6a.24xlarge": { + "bandwidth": 37500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r6a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "96", + "vpcnetworkingsupport": "true" + }, + "id": "r6a.24xlarge", + "name": "r6a.24xlarge", + "ram": 786432 + }, + "r6a.2xlarge": { + "bandwidth": 12500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.6 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r6a.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "AMD EPYC 7R13 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "8", + "vpcnetworkingsupport": "true" + }, + "id": "r6a.2xlarge", + "name": "r6a.2xlarge", + "ram": 65536 + }, + "r6a.32xlarge": { + "bandwidth": 50000, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", - "ecu": "337", + "dedicatedEbsThroughput": "26667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.32xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "1024 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 900 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "r5d.24xlarge", - "name": "r5d.24xlarge", - "ram": 786432, + "id": "r6a.32xlarge", + "name": "r6a.32xlarge", + "ram": 1048576 }, - "r5d.2xlarge": { - "bandwidth": 10, - "disk": 300, + "r6a.48xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "37", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8175", + "memory": "1536 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 300 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "r5d.2xlarge", - "name": "r5d.2xlarge", - "ram": 65536, + "id": "r6a.48xlarge", + "name": "r6a.48xlarge", + "ram": 1572864 }, - "r5d.4xlarge": { - "bandwidth": 10, - "disk": 600, + "r6a.4xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", - "ecu": "70", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 300 NVMe SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.4xlarge", - "name": "r5d.4xlarge", - "ram": 131072, + "id": "r6a.4xlarge", + "name": "r6a.4xlarge", + "ram": 131072 }, - "r5d.8xlarge": { - "bandwidth": 10, - "disk": 1200, + "r6a.8xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", - "ecu": "128", + "dedicatedEbsThroughput": "6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "10 Gigabit", + "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 600 NVMe SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.8xlarge", - "name": "r5d.8xlarge", - "ram": 262144, + "id": "r6a.8xlarge", + "name": "r6a.8xlarge", + "ram": 262144 }, - "r5d.large": { - "bandwidth": 10, - "disk": 75, + "r6a.large": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "10", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 75 NVMe SSD", + "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.large", - "name": "r5d.large", - "ram": 16384, + "id": "r6a.large", + "name": "r6a.large", + "ram": 16384 }, - "r5d.xlarge": { - "bandwidth": 10, - "disk": 150, + "r6a.xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "3.6 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", - "ecu": "19", + "dedicatedEbsThroughput": "Up to 6667 Mbps", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5d.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r6a.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8175", + "physicalProcessor": "AMD EPYC 7R13 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-south-1", + "processorFeatures": "AMD Turbo; AVX; AVX2", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 150 NVMe SSD", + "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5d.xlarge", - "name": "r5d.xlarge", - "ram": 32768, + "id": "r6a.xlarge", + "name": "r6a.xlarge", + "ram": 32768 }, - "r5dn.12xlarge": { - "bandwidth": 50, - "disk": 1800, + "r6g.12xlarge": { + "bandwidth": 20, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", + "dedicatedEbsThroughput": "13500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.12xlarge", + "instanceType": "r6g.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "50 Gigabit", + "networkPerformance": "20 Gigabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 900 GB NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", - }, - "id": "r5dn.12xlarge", - "name": "r5dn.12xlarge", - "ram": 393216, - }, - "r5dn.16xlarge": { - "bandwidth": 75, - "disk": 2400, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "No", - "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "r5dn.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "75 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", - "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-2", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 600 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.16xlarge", - "name": "r5dn.16xlarge", - "ram": 524288, + "id": "r6g.12xlarge", + "name": "r6g.12xlarge", + "ram": 393216 }, - "r5dn.24xlarge": { - "bandwidth": 100, - "disk": 3600, + "r6g.16xlarge": { + "bandwidth": 25, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", + "dedicatedEbsThroughput": "18000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.24xlarge", + "instanceType": "r6g.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "512 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 900 NVMe SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.24xlarge", - "name": "r5dn.24xlarge", - "ram": 786432, + "id": "r6g.16xlarge", + "name": "r6g.16xlarge", + "ram": 524288 }, - "r5dn.2xlarge": { - "bandwidth": 25, - "disk": 300, + "r6g.2xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.2xlarge", + "instanceType": "r6g.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 300 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.2xlarge", - "name": "r5dn.2xlarge", - "ram": 65536, + "id": "r6g.2xlarge", + "name": "r6g.2xlarge", + "ram": 65536 }, - "r5dn.4xlarge": { - "bandwidth": 25, - "disk": 600, + "r6g.4xlarge": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", + "dedicatedEbsThroughput": "4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.4xlarge", + "instanceType": "r6g.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 300 NVMe SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.4xlarge", - "name": "r5dn.4xlarge", - "ram": 131072, + "id": "r6g.4xlarge", + "name": "r6g.4xlarge", + "ram": 131072 }, - "r5dn.8xlarge": { - "bandwidth": 25, - "disk": 1200, + "r6g.8xlarge": { + "bandwidth": 12, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "9000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.8xlarge", + "instanceType": "r6g.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "12 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 600 NVMe SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.8xlarge", - "name": "r5dn.8xlarge", - "ram": 262144, + "id": "r6g.8xlarge", + "name": "r6g.8xlarge", + "ram": 262144 }, - "r5dn.large": { - "bandwidth": 25, - "disk": 75, + "r6g.large": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.large", + "instanceType": "r6g.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-north-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 75 NVMe SSD", + "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.large", - "name": "r5dn.large", - "ram": 16384, + "id": "r6g.large", + "name": "r6g.large", + "ram": 16384 }, - "r5dn.xlarge": { - "bandwidth": 25, - "disk": 150, + "r6g.medium": { + "bandwidth": 10, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.1 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5dn.xlarge", + "instanceType": "r6g.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 150 NVMe SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "r5dn.xlarge", - "name": "r5dn.xlarge", - "ram": 32768, + "id": "r6g.medium", + "name": "r6g.medium", + "ram": 8192 }, - "r5n.12xlarge": { - "bandwidth": 50, + "r6g.xlarge": { + "bandwidth": 10, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6000 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.12xlarge", + "instanceType": "r6g.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "50 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r5n.12xlarge", - "name": "r5n.12xlarge", - "ram": 393216, + "id": "r6g.xlarge", + "name": "r6g.xlarge", + "ram": 32768 }, - "r5n.16xlarge": { - "bandwidth": 75, - "disk": 0, + "r6gd.12xlarge": { + "bandwidth": 20, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "13500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.16xlarge", + "instanceType": "r6gd.12xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "75 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "384 GiB", + "networkPerformance": "20 Gigabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "2 x 1425 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r5n.16xlarge", - "name": "r5n.16xlarge", - "ram": 524288, + "id": "r6gd.12xlarge", + "name": "r6gd.12xlarge", + "ram": 393216 }, - "r5n.24xlarge": { - "bandwidth": 100, - "disk": 0, + "r6gd.16xlarge": { + "bandwidth": 25, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "12000 Mbps", + "dedicatedEbsThroughput": "18000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.24xlarge", + "instanceType": "r6gd.16xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "100 Gigabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "512 GiB", + "networkPerformance": "25 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-south-1", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r5n.24xlarge", - "name": "r5n.24xlarge", - "ram": 786432, + "id": "r6gd.16xlarge", + "name": "r6gd.16xlarge", + "ram": 524288 }, - "r5n.2xlarge": { - "bandwidth": 25, - "disk": 0, + "r6gd.2xlarge": { + "bandwidth": 10, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.2xlarge", + "instanceType": "r6gd.2xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5n.2xlarge", - "name": "r5n.2xlarge", - "ram": 65536, + "id": "r6gd.2xlarge", + "name": "r6gd.2xlarge", + "ram": 65536 }, - "r5n.4xlarge": { - "bandwidth": 25, - "disk": 0, + "r6gd.4xlarge": { + "bandwidth": 10, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "2120 Mbps", + "dedicatedEbsThroughput": "4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.4xlarge", + "instanceType": "r6gd.4xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5n.4xlarge", - "name": "r5n.4xlarge", - "ram": 131072, + "id": "r6gd.4xlarge", + "name": "r6gd.4xlarge", + "ram": 131072 }, - "r5n.8xlarge": { - "bandwidth": 25, - "disk": 0, + "r6gd.8xlarge": { + "bandwidth": 12, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "5000 Mbps", + "dedicatedEbsThroughput": "9000 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.8xlarge", + "instanceType": "r6gd.8xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "25 Gigabit", + "networkPerformance": "12 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-2", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5n.8xlarge", - "name": "r5n.8xlarge", - "ram": 262144, + "id": "r6gd.8xlarge", + "name": "r6gd.8xlarge", + "ram": 262144 }, - "r5n.large": { - "bandwidth": 25, - "disk": 0, + "r6gd.large": { + "bandwidth": 10, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.large", + "instanceType": "r6gd.large", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 25 Gigabit", + "networkPerformance": "Up to 10 Gigabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r5n.large", - "name": "r5n.large", - "ram": 16384, + "id": "r6gd.large", + "name": "r6gd.large", + "ram": 16384 }, - "r5n.xlarge": { - "bandwidth": 25, - "disk": 0, + "r6gd.medium": { + "bandwidth": 10, + "disk": 59, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 2120 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", - "enhancedNetworkingSupported": "No", + "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r5n.xlarge", + "instanceType": "r6gd.medium", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 25 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon Platinum 8259 (Cascade Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "1 x 59 NVMe SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "r5n.xlarge", - "name": "r5n.xlarge", - "ram": 32768, + "id": "r6gd.medium", + "name": "r6gd.medium", + "ram": 8192 }, - "r6a.12xlarge": { - "bandwidth": 18750, - "disk": 0, + "r6gd.xlarge": { + "bandwidth": 10, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "Up to 4500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.12xlarge", + "instanceType": "r6gd.xlarge", "intelAvx2Available": "No", "intelAvxAvailable": "No", "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "18750 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "32 GiB", + "networkPerformance": "Up to 10 Gigabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-south-1", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "1 x 237 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r6a.12xlarge", - "name": "r6a.12xlarge", - "ram": 393216, + "id": "r6gd.xlarge", + "name": "r6gd.xlarge", + "ram": 32768 }, - "r6a.16xlarge": { - "bandwidth": 25000, + "r6i.12xlarge": { + "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13333 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "25000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "384 GiB", + "networkPerformance": "18750 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r6a.16xlarge", - "name": "r6a.16xlarge", - "ram": 524288, + "id": "r6i.12xlarge", + "name": "r6i.12xlarge", + "ram": 393216 }, - "r6a.24xlarge": { - "bandwidth": 37500, + "r6i.16xlarge": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.24xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "37500 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "512 GiB", + "networkPerformance": "25000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r6a.24xlarge", - "name": "r6a.24xlarge", - "ram": 786432, + "id": "r6i.16xlarge", + "name": "r6i.16xlarge", + "ram": 524288 }, - "r6a.2xlarge": { - "bandwidth": 12500, + "r6i.24xlarge": { + "bandwidth": 37500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "768 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "r6a.2xlarge", - "name": "r6a.2xlarge", - "ram": 65536, + "id": "r6i.24xlarge", + "name": "r6i.24xlarge", + "ram": 786432 }, - "r6a.32xlarge": { - "bandwidth": 50000, + "r6i.2xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "26667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.32xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "1024 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-3", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "r6a.32xlarge", - "name": "r6a.32xlarge", - "ram": 1048576, + "id": "r6i.2xlarge", + "name": "r6i.2xlarge", + "ram": 65536 }, - "r6a.48xlarge": { + "r6i.32xlarge": { "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.48xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "1536 GiB", + "memory": "1024 GiB", "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "384", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "192", - "vpcnetworkingsupport": "true", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "r6a.48xlarge", - "name": "r6a.48xlarge", - "ram": 1572864, + "id": "r6i.32xlarge", + "name": "r6i.32xlarge", + "ram": 1048576 }, - "r6a.4xlarge": { + "r6i.4xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6a.4xlarge", - "name": "r6a.4xlarge", - "ram": 131072, + "id": "r6i.4xlarge", + "name": "r6i.4xlarge", + "ram": 131072 }, - "r6a.8xlarge": { + "r6i.8xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "6667 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6a.8xlarge", - "name": "r6a.8xlarge", - "ram": 262144, + "id": "r6i.8xlarge", + "name": "r6i.8xlarge", + "ram": 262144 }, - "r6a.large": { + "r6i.large": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6a.large", - "name": "r6a.large", - "ram": 16384, + "id": "r6i.large", + "name": "r6i.large", + "ram": 16384 }, - "r6a.xlarge": { + "r6i.xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.95 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 6667 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6a.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6i.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AMD EPYC 7R13 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-south-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6a.xlarge", - "name": "r6a.xlarge", - "ram": 32768, + "id": "r6i.xlarge", + "name": "r6i.xlarge", + "ram": 32768 }, - "r6g.12xlarge": { - "bandwidth": 20, - "disk": 0, + "r6id.12xlarge": { + "bandwidth": 18750, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13500 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "20 Gigabit", + "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-south-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 1425 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "r6id.12xlarge", + "name": "r6id.12xlarge", + "ram": 393216 + }, + "r6id.16xlarge": { + "bandwidth": 25000, + "disk": 3800, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "20000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r6id.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "512 GiB", + "networkPerformance": "25000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "r6id.16xlarge", + "name": "r6id.16xlarge", + "ram": 524288 + }, + "r6id.24xlarge": { + "bandwidth": 37500, + "disk": 5700, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r6id.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "4 x 1425 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "r6g.12xlarge", - "name": "r6g.12xlarge", - "ram": 393216, + "id": "r6id.24xlarge", + "name": "r6id.24xlarge", + "ram": 786432 }, - "r6g.16xlarge": { - "bandwidth": 25, - "disk": 0, + "r6id.2xlarge": { + "bandwidth": 12500, + "disk": 474, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "18000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "1 x 474 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "r6g.16xlarge", - "name": "r6g.16xlarge", - "ram": 524288, + "id": "r6id.2xlarge", + "name": "r6id.2xlarge", + "ram": 65536 }, - "r6g.2xlarge": { - "bandwidth": 10, - "disk": 0, + "r6id.32xlarge": { + "bandwidth": 50000, + "disk": 7600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "1024 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "4 x 1900 NVMe SSD", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "r6g.2xlarge", - "name": "r6g.2xlarge", - "ram": 65536, + "id": "r6id.32xlarge", + "name": "r6id.32xlarge", + "ram": 1048576 }, - "r6g.4xlarge": { - "bandwidth": 10, - "disk": 0, + "r6id.4xlarge": { + "bandwidth": 12500, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4500 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6g.4xlarge", - "name": "r6g.4xlarge", - "ram": 131072, + "id": "r6id.4xlarge", + "name": "r6id.4xlarge", + "ram": 131072 }, - "r6g.8xlarge": { - "bandwidth": 12, - "disk": 0, + "r6id.8xlarge": { + "bandwidth": 12500, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "12 Gigabit", + "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6g.8xlarge", - "name": "r6g.8xlarge", - "ram": 262144, + "id": "r6id.8xlarge", + "name": "r6id.8xlarge", + "ram": 262144 }, - "r6g.large": { - "bandwidth": 10, - "disk": 0, + "r6id.large": { + "bandwidth": 12500, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6g.large", - "name": "r6g.large", - "ram": 16384, + "id": "r6id.large", + "name": "r6id.large", + "ram": 16384 }, - "r6g.medium": { - "bandwidth": 10, - "disk": 0, + "r6id.xlarge": { + "bandwidth": 12500, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6id.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "1 x 237 NVMe SSD", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r6g.medium", - "name": "r6g.medium", - "ram": 8192, + "id": "r6id.xlarge", + "name": "r6id.xlarge", + "ram": 32768 }, - "r6g.xlarge": { - "bandwidth": 10, - "disk": 0, + "r6idn.12xlarge": { + "bandwidth": 75000, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "37500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6g.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "384 GiB", + "networkPerformance": "75000 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-central-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "2 x 1425 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" + }, + "id": "r6idn.12xlarge", + "name": "r6idn.12xlarge", + "ram": 393216 + }, + "r6idn.16xlarge": { + "bandwidth": 100000, + "disk": 3800, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.5 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "50000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r6idn.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "512 GiB", + "networkPerformance": "100000 Megabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r6g.xlarge", - "name": "r6g.xlarge", - "ram": 32768, + "id": "r6idn.16xlarge", + "name": "r6idn.16xlarge", + "ram": 524288 }, - "r6gd.12xlarge": { - "bandwidth": 20, - "disk": 2850, + "r6idn.24xlarge": { + "bandwidth": 150000, + "disk": 5700, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "13500 Mbps", + "dedicatedEbsThroughput": "75000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "20 Gigabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "768 GiB", + "networkPerformance": "150000 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ca-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 NVMe SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "4 x 1425 NVMe SSD", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.12xlarge", - "name": "r6gd.12xlarge", - "ram": 393216, + "id": "r6idn.24xlarge", + "name": "r6idn.24xlarge", + "ram": 786432 }, - "r6gd.16xlarge": { - "bandwidth": 25, - "disk": 3800, + "r6idn.2xlarge": { + "bandwidth": 40000, + "disk": 474, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "18000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "25 Gigabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "64 GiB", + "networkPerformance": "Up to 40000 Megabit", + "normalizationSizeFactor": "16", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-north-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "1 x 474 NVMe SSD", + "vcpu": "8", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.16xlarge", - "name": "r6gd.16xlarge", - "ram": 524288, + "id": "r6idn.2xlarge", + "name": "r6idn.2xlarge", + "ram": 65536 }, - "r6gd.2xlarge": { - "bandwidth": 10, - "disk": 475, + "r6idn.32xlarge": { + "bandwidth": 200000, + "disk": 7600, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "100000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "64 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton2 Processor", + "memory": "1024 GiB", + "networkPerformance": "200000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ap-northeast-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", - "vcpu": "8", - "vpcnetworkingsupport": "true", + "storage": "4 x 1900 NVMe SSD", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.2xlarge", - "name": "r6gd.2xlarge", - "ram": 65536, + "id": "r6idn.32xlarge", + "name": "r6idn.32xlarge", + "ram": 1048576 }, - "r6gd.4xlarge": { - "bandwidth": 10, + "r6idn.4xlarge": { + "bandwidth": 50000, "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "4500 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 50000 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.4xlarge", - "name": "r6gd.4xlarge", - "ram": 131072, + "id": "r6idn.4xlarge", + "name": "r6idn.4xlarge", + "ram": 131072 }, - "r6gd.8xlarge": { - "bandwidth": 12, + "r6idn.8xlarge": { + "bandwidth": 50000, "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "9000 Mbps", + "dedicatedEbsThroughput": "25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "12 Gigabit", + "networkPerformance": "50000 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.8xlarge", - "name": "r6gd.8xlarge", - "ram": 262144, + "id": "r6idn.8xlarge", + "name": "r6idn.8xlarge", + "ram": 262144 }, - "r6gd.large": { - "bandwidth": 10, + "r6idn.large": { + "bandwidth": 25000, "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 25000 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "ca-central-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", - }, - "id": "r6gd.large", - "name": "r6gd.large", - "ram": 16384, - }, - "r6gd.medium": { - "bandwidth": 10, - "disk": 59, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "r6gd.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", - "marketoption": "OnDemand", - "memory": "8 GiB", - "networkPerformance": "Up to 10 Gigabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton2 Processor", - "processorArchitecture": "64-bit", - "regionCode": "ap-southeast-2", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 59 NVMe SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.medium", - "name": "r6gd.medium", - "ram": 8192, + "id": "r6idn.large", + "name": "r6idn.large", + "ram": 16384 }, - "r6gd.xlarge": { - "bandwidth": 10, + "r6idn.xlarge": { + "bandwidth": 30000, "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 4500 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6gd.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r6idn.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 10 Gigabit", + "networkPerformance": "Up to 30000 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton2 Processor", + "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-3", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6gd.xlarge", - "name": "r6gd.xlarge", - "ram": 32768, + "id": "r6idn.xlarge", + "name": "r6idn.xlarge", + "ram": 32768 }, - "r6i.12xlarge": { - "bandwidth": 18750, + "r6in.12xlarge": { + "bandwidth": 75000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "15000 Mbps", + "dedicatedEbsThroughput": "37500 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.12xlarge", + "instanceType": "r6in.12xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "18750 Megabit", + "networkPerformance": "75000 Megabit", "normalizationSizeFactor": "96", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.12xlarge", - "name": "r6i.12xlarge", - "ram": 393216, + "id": "r6in.12xlarge", + "name": "r6in.12xlarge", + "ram": 393216 }, - "r6i.16xlarge": { - "bandwidth": 25000, + "r6in.16xlarge": { + "bandwidth": 100000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "50000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.16xlarge", + "instanceType": "r6in.16xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "25000 Megabit", + "networkPerformance": "100000 Megabit", "normalizationSizeFactor": "128", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.16xlarge", - "name": "r6i.16xlarge", - "ram": 524288, + "id": "r6in.16xlarge", + "name": "r6in.16xlarge", + "ram": 524288 }, - "r6i.24xlarge": { - "bandwidth": 37500, + "r6in.24xlarge": { + "bandwidth": 150000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "75000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.24xlarge", + "instanceType": "r6in.24xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "768 GiB", - "networkPerformance": "37500 Megabit", + "networkPerformance": "150000 Megabit", "normalizationSizeFactor": "192", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-south-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.24xlarge", - "name": "r6i.24xlarge", - "ram": 786432, + "id": "r6in.24xlarge", + "name": "r6in.24xlarge", + "ram": 786432 }, - "r6i.2xlarge": { - "bandwidth": 12500, + "r6in.2xlarge": { + "bandwidth": 40000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.2xlarge", + "instanceType": "r6in.2xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 12500 Megabit", + "networkPerformance": "Up to 40000 Megabit", "normalizationSizeFactor": "16", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-3", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.2xlarge", - "name": "r6i.2xlarge", - "ram": 65536, + "id": "r6in.2xlarge", + "name": "r6in.2xlarge", + "ram": 65536 }, - "r6i.32xlarge": { - "bandwidth": 50000, + "r6in.32xlarge": { + "bandwidth": 200000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "100000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.32xlarge", + "instanceType": "r6in.32xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "1024 GiB", - "networkPerformance": "50000 Megabit", + "networkPerformance": "200000 Megabit", "normalizationSizeFactor": "256", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.32xlarge", - "name": "r6i.32xlarge", - "ram": 1048576, + "id": "r6in.32xlarge", + "name": "r6in.32xlarge", + "ram": 1048576 }, - "r6i.4xlarge": { - "bandwidth": 12500, + "r6in.4xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.4xlarge", + "instanceType": "r6in.4xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 12500 Megabit", + "networkPerformance": "Up to 50000 Megabit", "normalizationSizeFactor": "32", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.4xlarge", - "name": "r6i.4xlarge", - "ram": 131072, + "id": "r6in.4xlarge", + "name": "r6in.4xlarge", + "ram": 131072 }, - "r6i.8xlarge": { - "bandwidth": 12500, + "r6in.8xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.8xlarge", + "instanceType": "r6in.8xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "12500 Megabit", + "networkPerformance": "50000 Megabit", "normalizationSizeFactor": "64", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.8xlarge", - "name": "r6i.8xlarge", - "ram": 262144, + "id": "r6in.8xlarge", + "name": "r6in.8xlarge", + "ram": 262144 }, - "r6i.large": { - "bandwidth": 12500, + "r6in.large": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.large", + "instanceType": "r6in.large", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", + "networkPerformance": "Up to 25000 Megabit", "normalizationSizeFactor": "4", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-east-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.large", - "name": "r6i.large", - "ram": 16384, + "id": "r6in.large", + "name": "r6in.large", + "ram": 16384 }, - "r6i.xlarge": { - "bandwidth": 12500, + "r6in.xlarge": { + "bandwidth": 30000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "Up to 25000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6i.xlarge", + "instanceType": "r6in.xlarge", "intelAvx2Available": "Yes", "intelAvxAvailable": "Yes", "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 12500 Megabit", + "networkPerformance": "Up to 30000 Megabit", "normalizationSizeFactor": "8", "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-north-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6i.xlarge", - "name": "r6i.xlarge", - "ram": 32768, + "id": "r6in.xlarge", + "name": "r6in.xlarge", + "ram": 32768 }, - "r6id.12xlarge": { + "r7a.12xlarge": { "bandwidth": 18750, - "disk": 2850, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "384 GiB", "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.12xlarge", - "name": "r6id.12xlarge", - "ram": 393216, + "id": "r7a.12xlarge", + "name": "r7a.12xlarge", + "ram": 393216 }, - "r6id.16xlarge": { + "r7a.16xlarge": { "bandwidth": 25000, - "disk": 3800, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "512 GiB", "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.16xlarge", - "name": "r6id.16xlarge", - "ram": 524288, + "id": "r7a.16xlarge", + "name": "r7a.16xlarge", + "ram": 524288 }, - "r6id.24xlarge": { + "r7a.24xlarge": { "bandwidth": 37500, - "disk": 5700, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "30000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.24xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "768 GiB", "networkPerformance": "37500 Megabit", "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1425 SSD", + "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.24xlarge", - "name": "r6id.24xlarge", - "ram": 786432, + "id": "r7a.24xlarge", + "name": "r7a.24xlarge", + "ram": 786432 }, - "r6id.2xlarge": { + "r7a.2xlarge": { "bandwidth": 12500, - "disk": 474, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 474 SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.2xlarge", - "name": "r6id.2xlarge", - "ram": 65536, + "id": "r7a.2xlarge", + "name": "r7a.2xlarge", + "ram": 65536 }, - "r6id.32xlarge": { + "r7a.32xlarge": { "bandwidth": 50000, - "disk": 7600, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.32xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "1024 GiB", "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "normalizationSizeFactor": "256", + "physicalProcessor": "AMD EPYC 9R14 Processor", + "processorArchitecture": "64-bit", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" + }, + "id": "r7a.32xlarge", + "name": "r7a.32xlarge", + "ram": 1048576 + }, + "r7a.48xlarge": { + "bandwidth": 50000, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.7 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "40000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r7a.48xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", + "marketoption": "OnDemand", + "memory": "1536 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 SSD", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "r6id.32xlarge", - "name": "r6id.32xlarge", - "ram": 1048576, + "id": "r7a.48xlarge", + "name": "r7a.48xlarge", + "ram": 1572864 }, - "r6id.4xlarge": { + "r7a.4xlarge": { "bandwidth": 12500, - "disk": 950, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.4xlarge", - "name": "r6id.4xlarge", - "ram": 131072, + "id": "r7a.4xlarge", + "name": "r7a.4xlarge", + "ram": 131072 }, - "r6id.8xlarge": { + "r7a.8xlarge": { "bandwidth": 12500, - "disk": 1900, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", "networkPerformance": "12500 Megabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.8xlarge", - "name": "r6id.8xlarge", - "ram": 262144, + "id": "r7a.8xlarge", + "name": "r7a.8xlarge", + "ram": 262144 }, - "r6id.large": { + "r7a.large": { "bandwidth": 12500, - "disk": 118, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-2", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 SSD", + "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6id.large", - "name": "r6id.large", - "ram": 16384, + "id": "r7a.large", + "name": "r7a.large", + "ram": 16384 }, - "r6id.xlarge": { + "r7a.medium": { "bandwidth": 12500, - "disk": 237, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6id.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", + "memory": "8 GiB", "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "normalizationSizeFactor": "2", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "r6id.xlarge", - "name": "r6id.xlarge", - "ram": 32768, + "id": "r7a.medium", + "name": "r7a.medium", + "ram": 8192 }, - "r6idn.12xlarge": { - "bandwidth": 75000, - "disk": 2850, + "r7a.xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "3.7 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7a.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "75000 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AMD EPYC 9R14 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "processorFeatures": "AMD Turbo; AVX; AVX2; AVX512", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 SSD", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.12xlarge", - "name": "r6idn.12xlarge", - "ram": 393216, + "id": "r7a.xlarge", + "name": "r7a.xlarge", + "ram": 32768 }, - "r6idn.16xlarge": { - "bandwidth": 100000, - "disk": 3800, + "r7g.12xlarge": { + "bandwidth": 22500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "100000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "384 GiB", + "networkPerformance": "22500 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 SSD", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.16xlarge", - "name": "r6idn.16xlarge", - "ram": 524288, + "id": "r7g.12xlarge", + "name": "r7g.12xlarge", + "ram": 393216 }, - "r6idn.24xlarge": { - "bandwidth": 150000, - "disk": 5700, + "r7g.16xlarge": { + "bandwidth": 30, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "150000 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "512 GiB", + "networkPerformance": "30 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1425 SSD", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.24xlarge", - "name": "r6idn.24xlarge", - "ram": 786432, + "id": "r7g.16xlarge", + "name": "r7g.16xlarge", + "ram": 524288 }, - "r6idn.2xlarge": { - "bandwidth": 40000, - "disk": 474, + "r7g.2xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 40000 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 474 SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", - }, - "id": "r6idn.2xlarge", - "name": "r6idn.2xlarge", - "ram": 65536, - }, - "r6idn.32xlarge": { - "bandwidth": 200000, - "disk": 7600, - "extra": { - "availabilityzone": "NA", - "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", - "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80000 Mbps", - "ecu": "NA", - "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", - "instanceFamily": "Memory optimized", - "instanceType": "r6idn.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", - "marketoption": "OnDemand", - "memory": "1024 GiB", - "networkPerformance": "200000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", - "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", - "servicecode": "AmazonEC2", - "servicename": "Amazon Elastic Compute Cloud", - "storage": "4 x 1900 SSD", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.32xlarge", - "name": "r6idn.32xlarge", - "ram": 1048576, + "id": "r7g.2xlarge", + "name": "r7g.2xlarge", + "ram": 65536 }, - "r6idn.4xlarge": { - "bandwidth": 50000, - "disk": 950, + "r7g.4xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "128 GiB", - "networkPerformance": "Up to 50000 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 SSD", + "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.4xlarge", - "name": "r6idn.4xlarge", - "ram": 131072, + "id": "r7g.4xlarge", + "name": "r7g.4xlarge", + "ram": 131072 }, - "r6idn.8xlarge": { - "bandwidth": 50000, - "disk": 1900, + "r7g.8xlarge": { + "bandwidth": 15, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "256 GiB", - "networkPerformance": "50000 Megabit", + "networkPerformance": "15 Gigabit", "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "ap-northeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 SSD", + "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.8xlarge", - "name": "r6idn.8xlarge", - "ram": 262144, + "id": "r7g.8xlarge", + "name": "r7g.8xlarge", + "ram": 262144 }, - "r6idn.large": { - "bandwidth": 25000, - "disk": 118, + "r7g.large": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "16 GiB", - "networkPerformance": "Up to 25000 Megabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 SSD", + "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.large", - "name": "r6idn.large", - "ram": 16384, + "id": "r7g.large", + "name": "r7g.large", + "ram": 16384 }, - "r6idn.xlarge": { - "bandwidth": 30000, - "disk": 237, + "r7g.medium": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6idn.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "32 GiB", - "networkPerformance": "Up to 30000 Megabit", - "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 SSD", - "vcpu": "4", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "r6idn.xlarge", - "name": "r6idn.xlarge", - "ram": 32768, + "id": "r7g.medium", + "name": "r7g.medium", + "ram": 8192 }, - "r6in.12xlarge": { - "bandwidth": 75000, + "r7g.xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "30000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.12xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7g.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "384 GiB", - "networkPerformance": "75000 Megabit", - "normalizationSizeFactor": "96", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "32 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "8", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "48", - "vpcnetworkingsupport": "true", + "vcpu": "4", + "vpcnetworkingsupport": "true" }, - "id": "r6in.12xlarge", - "name": "r6in.12xlarge", - "ram": 393216, + "id": "r7g.xlarge", + "name": "r7g.xlarge", + "ram": 32768 }, - "r6in.16xlarge": { - "bandwidth": 100000, - "disk": 0, + "r7gd.12xlarge": { + "bandwidth": 22500, + "disk": 2850, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "40000 Mbps", + "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.16xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.12xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "512 GiB", - "networkPerformance": "100000 Megabit", - "normalizationSizeFactor": "128", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "384 GiB", + "networkPerformance": "22500 Megabit", + "normalizationSizeFactor": "96", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "storage": "2 x 1425 NVMe SSD", + "vcpu": "48", + "vpcnetworkingsupport": "true" }, - "id": "r6in.16xlarge", - "name": "r6in.16xlarge", - "ram": 524288, + "id": "r7gd.12xlarge", + "name": "r7gd.12xlarge", + "ram": 393216 }, - "r6in.24xlarge": { - "bandwidth": 150000, - "disk": 0, + "r7gd.16xlarge": { + "bandwidth": 30, + "disk": 3800, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "60000 Mbps", + "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.24xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.16xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "768 GiB", - "networkPerformance": "150000 Megabit", - "normalizationSizeFactor": "192", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "512 GiB", + "networkPerformance": "30 Gigabit", + "normalizationSizeFactor": "128", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "96", - "vpcnetworkingsupport": "true", + "storage": "2 x 1900 NVMe SSD", + "vcpu": "64", + "vpcnetworkingsupport": "true" }, - "id": "r6in.24xlarge", - "name": "r6in.24xlarge", - "ram": 786432, + "id": "r7gd.16xlarge", + "name": "r7gd.16xlarge", + "ram": 524288 }, - "r6in.2xlarge": { - "bandwidth": 40000, - "disk": 0, + "r7gd.2xlarge": { + "bandwidth": 15, + "disk": 475, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.2xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.2xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 40000 Megabit", + "networkPerformance": "Up to 15 Gigabit", "normalizationSizeFactor": "16", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6in.2xlarge", - "name": "r6in.2xlarge", - "ram": 65536, + "id": "r7gd.2xlarge", + "name": "r7gd.2xlarge", + "ram": 65536 }, - "r6in.32xlarge": { - "bandwidth": 200000, - "disk": 0, + "r7gd.4xlarge": { + "bandwidth": 15, + "disk": 950, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "80000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.32xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.4xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "1024 GiB", - "networkPerformance": "200000 Megabit", - "normalizationSizeFactor": "256", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "128 GiB", + "networkPerformance": "Up to 15 Gigabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "128", - "vpcnetworkingsupport": "true", + "storage": "1 x 950 NVMe SSD", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "r6in.32xlarge", - "name": "r6in.32xlarge", - "ram": 1048576, + "id": "r7gd.4xlarge", + "name": "r7gd.4xlarge", + "ram": 131072 }, - "r6in.4xlarge": { - "bandwidth": 50000, - "disk": 0, + "r7gd.8xlarge": { + "bandwidth": 15, + "disk": 1900, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.4xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.8xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 50000 Megabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "256 GiB", + "networkPerformance": "15 Gigabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "1 x 1900 NVMe SSD", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "r6in.4xlarge", - "name": "r6in.4xlarge", - "ram": 131072, + "id": "r7gd.8xlarge", + "name": "r7gd.8xlarge", + "ram": 262144 }, - "r6in.8xlarge": { - "bandwidth": 50000, - "disk": 0, + "r7gd.large": { + "bandwidth": 12500, + "disk": 118, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.8xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.large", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "50000 Megabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "16 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "4", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "us-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "1 x 118 NVMe SSD", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "r6in.8xlarge", - "name": "r6in.8xlarge", - "ram": 262144, + "id": "r7gd.large", + "name": "r7gd.large", + "ram": 16384 }, - "r6in.large": { - "bandwidth": 25000, - "disk": 0, + "r7gd.medium": { + "bandwidth": 12500, + "disk": 59, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.large", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.medium", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 25000 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "memory": "8 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "2", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "1 x 59 NVMe SSD", + "vcpu": "1", + "vpcnetworkingsupport": "true" }, - "id": "r6in.large", - "name": "r6in.large", - "ram": 16384, + "id": "r7gd.medium", + "name": "r7gd.medium", + "ram": 8192 }, - "r6in.xlarge": { - "bandwidth": 30000, - "disk": 0, + "r7gd.xlarge": { + "bandwidth": 12500, + "disk": 237, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "3.5 GHz", + "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 20000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r6in.xlarge", - "intelAvx2Available": "Yes", - "intelAvxAvailable": "Yes", - "intelTurboAvailable": "Yes", + "instanceType": "r7gd.xlarge", + "intelAvx2Available": "No", + "intelAvxAvailable": "No", + "intelTurboAvailable": "No", "marketoption": "OnDemand", "memory": "32 GiB", - "networkPerformance": "Up to 30000 Megabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", + "physicalProcessor": "AWS Graviton3 Processor", "processorArchitecture": "64-bit", - "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "EBS only", + "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r6in.xlarge", - "name": "r6in.xlarge", - "ram": 32768, + "id": "r7gd.xlarge", + "name": "r7gd.xlarge", + "ram": 32768 }, - "r7g.12xlarge": { - "bandwidth": 22500, + "r7i.12xlarge": { + "bandwidth": 18750, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "15000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "22500 Megabit", + "networkPerformance": "18750 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "eu-west-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-southeast-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7g.12xlarge", - "name": "r7g.12xlarge", - "ram": 393216, + "id": "r7i.12xlarge", + "name": "r7i.12xlarge", + "ram": 393216 }, - "r7g.16xlarge": { - "bandwidth": 30, + "r7i.16xlarge": { + "bandwidth": 25000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "30 Gigabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-southeast-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "64", + "vpcnetworkingsupport": "true" + }, + "id": "r7i.16xlarge", + "name": "r7i.16xlarge", + "ram": 524288 + }, + "r7i.24xlarge": { + "bandwidth": 37500, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "3.2 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "30000 Mbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "r7i.24xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "768 GiB", + "networkPerformance": "37500 Megabit", + "normalizationSizeFactor": "192", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "64", - "vpcnetworkingsupport": "true", + "vcpu": "96", + "vpcnetworkingsupport": "true" }, - "id": "r7g.16xlarge", - "name": "r7g.16xlarge", - "ram": 524288, + "id": "r7i.24xlarge", + "name": "r7i.24xlarge", + "ram": 786432 }, - "r7g.2xlarge": { - "bandwidth": 15, + "r7i.2xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 15 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7g.2xlarge", - "name": "r7g.2xlarge", - "ram": 65536, + "id": "r7i.2xlarge", + "name": "r7i.2xlarge", + "ram": 65536 }, - "r7g.4xlarge": { - "bandwidth": 15, + "r7i.48xlarge": { + "bandwidth": 50000, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.48xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "1536 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "384", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "vcpu": "192", + "vpcnetworkingsupport": "true" }, - "id": "r7g.4xlarge", - "name": "r7g.4xlarge", - "ram": 131072, + "id": "r7i.48xlarge", + "name": "r7i.48xlarge", + "ram": 1572864 }, - "r7g.8xlarge": { - "bandwidth": 15, + "r7i.4xlarge": { + "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "15 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "128 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "r7g.8xlarge", - "name": "r7g.8xlarge", - "ram": 262144, + "id": "r7i.4xlarge", + "name": "r7i.4xlarge", + "ram": 131072 }, - "r7g.large": { + "r7i.8xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "256 GiB", + "networkPerformance": "12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "r7g.large", - "name": "r7g.large", - "ram": 16384, + "id": "r7i.8xlarge", + "name": "r7i.8xlarge", + "ram": 262144 }, - "r7g.medium": { + "r7i.large": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", + "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton3 Processor", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "eu-north-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "r7g.medium", - "name": "r7g.medium", - "ram": 8192, + "id": "r7i.large", + "name": "r7i.large", + "ram": 16384 }, - "r7g.xlarge": { + "r7i.xlarge": { "bandwidth": 12500, "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.2 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7g.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7i.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo; Intel AMX", + "regionCode": "ap-southeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7g.xlarge", - "name": "r7g.xlarge", - "ram": 32768, + "id": "r7i.xlarge", + "name": "r7i.xlarge", + "ram": 32768 }, - "r7gd.12xlarge": { - "bandwidth": 22500, - "disk": 2850, + "r7iz.12xlarge": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "15000 Mbps", + "dedicatedEbsThroughput": "19000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.12xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.12xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "384 GiB", - "networkPerformance": "22500 Megabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "96", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1425 NVMe SSD", + "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.12xlarge", - "name": "r7gd.12xlarge", - "ram": 393216, + "id": "r7iz.12xlarge", + "name": "r7iz.12xlarge", + "ram": 393216 }, - "r7gd.16xlarge": { - "bandwidth": 30, - "disk": 3800, + "r7iz.16xlarge": { + "bandwidth": 25000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "20000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.16xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.16xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", - "networkPerformance": "30 Gigabit", + "networkPerformance": "25000 Megabit", "normalizationSizeFactor": "128", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "2 x 1900 NVMe SSD", + "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.16xlarge", - "name": "r7gd.16xlarge", - "ram": 524288, + "id": "r7iz.16xlarge", + "name": "r7iz.16xlarge", + "ram": 524288 }, - "r7gd.2xlarge": { - "bandwidth": 15, - "disk": 475, + "r7iz.2xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.2xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "64 GiB", - "networkPerformance": "Up to 15 Gigabit", + "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "16", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 475 NVMe SSD", + "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.2xlarge", - "name": "r7gd.2xlarge", - "ram": 65536, + "id": "r7iz.2xlarge", + "name": "r7iz.2xlarge", + "ram": 65536 }, - "r7gd.4xlarge": { - "bandwidth": 15, - "disk": 950, + "r7iz.32xlarge": { + "bandwidth": 50000, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "40000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.4xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.32xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "128 GiB", - "networkPerformance": "Up to 15 Gigabit", - "normalizationSizeFactor": "32", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "1024 GiB", + "networkPerformance": "50000 Megabit", + "normalizationSizeFactor": "256", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 950 NVMe SSD", - "vcpu": "16", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "128", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.4xlarge", - "name": "r7gd.4xlarge", - "ram": 131072, + "id": "r7iz.32xlarge", + "name": "r7iz.32xlarge", + "ram": 1048576 }, - "r7gd.8xlarge": { - "bandwidth": 15, - "disk": 1900, + "r7iz.4xlarge": { + "bandwidth": 12500, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "10000 Mbps", + "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.8xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.4xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "256 GiB", - "networkPerformance": "15 Gigabit", - "normalizationSizeFactor": "64", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "128 GiB", + "networkPerformance": "Up to 12500 Megabit", + "normalizationSizeFactor": "32", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-1", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 1900 NVMe SSD", - "vcpu": "32", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "16", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.8xlarge", - "name": "r7gd.8xlarge", - "ram": 262144, + "id": "r7iz.4xlarge", + "name": "r7iz.4xlarge", + "ram": 131072 }, - "r7gd.large": { + "r7iz.8xlarge": { "bandwidth": 12500, - "disk": 118, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", - "dedicatedEbsThroughput": "Up to 10000 Mbps", + "dedicatedEbsThroughput": "10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.large", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.8xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "16 GiB", - "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "4", - "physicalProcessor": "AWS Graviton3 Processor", + "memory": "256 GiB", + "networkPerformance": "12500 Megabit", + "normalizationSizeFactor": "64", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-west-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "ap-northeast-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 118 NVMe SSD", - "vcpu": "2", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "32", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.large", - "name": "r7gd.large", - "ram": 16384, + "id": "r7iz.8xlarge", + "name": "r7iz.8xlarge", + "ram": 262144 }, - "r7gd.medium": { + "r7iz.large": { "bandwidth": 12500, - "disk": 59, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.medium", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.large", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", - "memory": "8 GiB", + "memory": "16 GiB", "networkPerformance": "Up to 12500 Megabit", - "normalizationSizeFactor": "2", - "physicalProcessor": "AWS Graviton3 Processor", + "normalizationSizeFactor": "4", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 59 NVMe SSD", - "vcpu": "1", - "vpcnetworkingsupport": "true", + "storage": "EBS only", + "vcpu": "2", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.medium", - "name": "r7gd.medium", - "ram": 8192, + "id": "r7iz.large", + "name": "r7iz.large", + "ram": 16384 }, - "r7gd.xlarge": { + "r7iz.xlarge": { "bandwidth": 12500, - "disk": 237, + "disk": 0, "extra": { "availabilityzone": "NA", "classicnetworkingsupport": "false", - "clockSpeed": "2.5 GHz", + "clockSpeed": "3.9 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 10000 Mbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Memory optimized", - "instanceType": "r7gd.xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "instanceType": "r7iz.xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "Up to 12500 Megabit", "normalizationSizeFactor": "8", - "physicalProcessor": "AWS Graviton3 Processor", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "processorFeatures": "Intel AMX; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", - "storage": "1 x 237 NVMe SSD", + "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, - "id": "r7gd.xlarge", - "name": "r7gd.xlarge", - "ram": 32768, + "id": "r7iz.xlarge", + "name": "r7iz.xlarge", + "ram": 32768 }, "t1.micro": { "bandwidth": None, @@ -19743,11 +22606,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t1.micro", "name": "t1.micro", - "ram": 627, + "ram": 627 }, "t2.2xlarge": { "bandwidth": None, @@ -19777,11 +22640,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.2xlarge", "name": "t2.2xlarge", - "ram": 32768, + "ram": 32768 }, "t2.large": { "bandwidth": None, @@ -19811,11 +22674,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.large", "name": "t2.large", - "ram": 8192, + "ram": 8192 }, "t2.medium": { "bandwidth": None, @@ -19845,11 +22708,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.medium", "name": "t2.medium", - "ram": 4096, + "ram": 4096 }, "t2.micro": { "bandwidth": None, @@ -19879,11 +22742,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.micro", "name": "t2.micro", - "ram": 1024, + "ram": 1024 }, "t2.nano": { "bandwidth": None, @@ -19913,11 +22776,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.nano", "name": "t2.nano", - "ram": 512, + "ram": 512 }, "t2.small": { "bandwidth": None, @@ -19947,11 +22810,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.small", "name": "t2.small", - "ram": 2048, + "ram": 2048 }, "t2.xlarge": { "bandwidth": None, @@ -19981,11 +22844,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t2.xlarge", "name": "t2.xlarge", - "ram": 16384, + "ram": 16384 }, "t3.2xlarge": { "bandwidth": 5, @@ -20016,11 +22879,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.2xlarge", "name": "t3.2xlarge", - "ram": 32768, + "ram": 32768 }, "t3.large": { "bandwidth": 5, @@ -20051,11 +22914,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.large", "name": "t3.large", - "ram": 8192, + "ram": 8192 }, "t3.medium": { "bandwidth": 5, @@ -20086,11 +22949,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.medium", "name": "t3.medium", - "ram": 4096, + "ram": 4096 }, "t3.micro": { "bandwidth": 5, @@ -20116,16 +22979,16 @@ "physicalProcessor": "Intel Skylake E5 2686 v5", "processorArchitecture": "64-bit", "processorFeatures": "AVX; AVX2; Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.micro", "name": "t3.micro", - "ram": 1024, + "ram": 1024 }, "t3.nano": { "bandwidth": 5, @@ -20156,11 +23019,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.nano", "name": "t3.nano", - "ram": 512, + "ram": 512 }, "t3.small": { "bandwidth": 5, @@ -20191,11 +23054,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.small", "name": "t3.small", - "ram": 2048, + "ram": 2048 }, "t3.xlarge": { "bandwidth": 5, @@ -20226,11 +23089,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3.xlarge", "name": "t3.xlarge", - "ram": 16384, + "ram": 16384 }, "t3a.2xlarge": { "bandwidth": 5, @@ -20261,11 +23124,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.2xlarge", "name": "t3a.2xlarge", - "ram": 32768, + "ram": 32768 }, "t3a.large": { "bandwidth": 5, @@ -20296,11 +23159,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.large", "name": "t3a.large", - "ram": 8192, + "ram": 8192 }, "t3a.medium": { "bandwidth": 5, @@ -20331,11 +23194,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.medium", "name": "t3a.medium", - "ram": 4096, + "ram": 4096 }, "t3a.micro": { "bandwidth": 5, @@ -20366,11 +23229,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.micro", "name": "t3a.micro", - "ram": 1024, + "ram": 1024 }, "t3a.nano": { "bandwidth": 5, @@ -20401,11 +23264,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.nano", "name": "t3a.nano", - "ram": 512, + "ram": 512 }, "t3a.small": { "bandwidth": 5, @@ -20436,11 +23299,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.small", "name": "t3a.small", - "ram": 2048, + "ram": 2048 }, "t3a.xlarge": { "bandwidth": 5, @@ -20471,11 +23334,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t3a.xlarge", "name": "t3a.xlarge", - "ram": 16384, + "ram": 16384 }, "t4g.2xlarge": { "bandwidth": 5, @@ -20500,16 +23363,16 @@ "normalizationSizeFactor": "16", "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "eu-west-2", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.2xlarge", "name": "t4g.2xlarge", - "ram": 32768, + "ram": 32768 }, "t4g.large": { "bandwidth": 5, @@ -20539,11 +23402,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.large", "name": "t4g.large", - "ram": 8192, + "ram": 8192 }, "t4g.medium": { "bandwidth": 5, @@ -20573,11 +23436,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.medium", "name": "t4g.medium", - "ram": 4096, + "ram": 4096 }, "t4g.micro": { "bandwidth": 5, @@ -20607,11 +23470,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.micro", "name": "t4g.micro", - "ram": 1024, + "ram": 1024 }, "t4g.nano": { "bandwidth": 5, @@ -20636,16 +23499,16 @@ "normalizationSizeFactor": "0.25", "physicalProcessor": "AWS Graviton2 Processor", "processorArchitecture": "64-bit", - "regionCode": "us-east-2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.nano", "name": "t4g.nano", - "ram": 512, + "ram": 512 }, "t4g.small": { "bandwidth": 5, @@ -20675,11 +23538,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.small", "name": "t4g.small", - "ram": 2048, + "ram": 2048 }, "t4g.xlarge": { "bandwidth": 5, @@ -20709,11 +23572,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "t4g.xlarge", "name": "t4g.xlarge", - "ram": 16384, + "ram": 16384 }, "trn1.2xlarge": { "bandwidth": 12500, @@ -20724,14 +23587,14 @@ "clockSpeed": "Up to 3.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 20 Gbps", - "ecu": "None", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "NA", + "gpuMemory": "512 GB", "instanceFamily": "Machine Learning ASIC Instances", "instanceType": "trn1.2xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "32 GiB", "networkPerformance": "12500 Megabit", @@ -20739,16 +23602,16 @@ "physicalProcessor": "Intel Xeon Scalable (Icelake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "trn1.2xlarge", "name": "trn1.2xlarge", - "ram": 32768, + "ram": 32768 }, "trn1.32xlarge": { "bandwidth": 800, @@ -20759,14 +23622,14 @@ "clockSpeed": "Up to 3.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 80 Gbps", - "ecu": "None", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "Machine Learning ASIC Instances", "instanceType": "trn1.32xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", "networkPerformance": "800 Gigabit", @@ -20774,16 +23637,16 @@ "physicalProcessor": "Intel Xeon Scalable (Icelake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "trn1.32xlarge", "name": "trn1.32xlarge", - "ram": 524288, + "ram": 524288 }, "trn1n.32xlarge": { "bandwidth": 1600, @@ -20794,14 +23657,14 @@ "clockSpeed": "3.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "80 Gbps", - "ecu": "None", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", - "gpuMemory": "512 GB HBM2e", + "gpuMemory": "512 GB", "instanceFamily": "Machine Learning ASIC Instances", "instanceType": "trn1n.32xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "512 GiB", "networkPerformance": "1600 Gigabit", @@ -20814,11 +23677,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "trn1n.32xlarge", "name": "trn1n.32xlarge", - "ram": 524288, + "ram": 524288 }, "u-12tb1.112xlarge": { "bandwidth": 100, @@ -20848,11 +23711,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-12tb1.112xlarge", "name": "u-12tb1.112xlarge", - "ram": 12582912, + "ram": 12582912 }, "u-18tb1.112xlarge": { "bandwidth": 100, @@ -20867,9 +23730,9 @@ "gpuMemory": "NA", "instanceFamily": "Memory optimized", "instanceType": "u-18tb1.112xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "18432 GiB", "networkPerformance": "100 Gigabit", @@ -20882,11 +23745,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-18tb1.112xlarge", "name": "u-18tb1.112xlarge", - "ram": 18874368, + "ram": 18874368 }, "u-24tb1.112xlarge": { "bandwidth": 100, @@ -20901,9 +23764,9 @@ "gpuMemory": "NA", "instanceFamily": "Memory optimized", "instanceType": "u-24tb1.112xlarge", - "intelAvx2Available": "No", - "intelAvxAvailable": "No", - "intelTurboAvailable": "No", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", "marketoption": "OnDemand", "memory": "24576 GiB", "networkPerformance": "100 Gigabit", @@ -20911,16 +23774,16 @@ "physicalProcessor": "Intel Xeon Platinum 8280L (Cascade Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel Turbo", - "regionCode": "ap-northeast-2", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-24tb1.112xlarge", "name": "u-24tb1.112xlarge", - "ram": 25165824, + "ram": 25165824 }, "u-3tb1.56xlarge": { "bandwidth": 50, @@ -20946,16 +23809,16 @@ "physicalProcessor": "Intel Xeon Scalable (Skylake)", "processorArchitecture": "64-bit", "processorFeatures": "AVX2; Intel AVX; Intel AVX2", - "regionCode": "us-east-1", + "regionCode": "us-east-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "224", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-3tb1.56xlarge", "name": "u-3tb1.56xlarge", - "ram": 3145728, + "ram": 3145728 }, "u-6tb1.112xlarge": { "bandwidth": 100, @@ -20985,11 +23848,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-6tb1.112xlarge", "name": "u-6tb1.112xlarge", - "ram": 6291456, + "ram": 6291456 }, "u-6tb1.56xlarge": { "bandwidth": 100, @@ -21019,11 +23882,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "224", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-6tb1.56xlarge", "name": "u-6tb1.56xlarge", - "ram": 6291456, + "ram": 6291456 }, "u-9tb1.112xlarge": { "bandwidth": 100, @@ -21053,11 +23916,151 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "u-9tb1.112xlarge", "name": "u-9tb1.112xlarge", - "ram": 9437184, + "ram": 9437184 + }, + "u7i-12tb.224xlarge": { + "bandwidth": 100, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.9 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "60 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "u7i-12tb.224xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "12288 GiB", + "networkPerformance": "100 Gigabit", + "normalizationSizeFactor": "1792", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "896", + "vpcnetworkingsupport": "true" + }, + "id": "u7i-12tb.224xlarge", + "name": "u7i-12tb.224xlarge", + "ram": 12582912 + }, + "u7in-16tb.224xlarge": { + "bandwidth": 200, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.9 GHz", + "currentGeneration": "No", + "dedicatedEbsThroughput": "100 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "u7in-16tb.224xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "16384 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "1792", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "32-bit or 64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "896", + "vpcnetworkingsupport": "true" + }, + "id": "u7in-16tb.224xlarge", + "name": "u7in-16tb.224xlarge", + "ram": 16777216 + }, + "u7in-24tb.224xlarge": { + "bandwidth": 200, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.9 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "100 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "u7in-24tb.224xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "24576 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "1792", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-east-1", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "896", + "vpcnetworkingsupport": "true" + }, + "id": "u7in-24tb.224xlarge", + "name": "u7in-24tb.224xlarge", + "ram": 25165824 + }, + "u7in-32tb.224xlarge": { + "bandwidth": 200, + "disk": 0, + "extra": { + "availabilityzone": "NA", + "classicnetworkingsupport": "false", + "clockSpeed": "2.9 GHz", + "currentGeneration": "Yes", + "dedicatedEbsThroughput": "100 Gbps", + "ecu": "NA", + "enhancedNetworkingSupported": "Yes", + "gpuMemory": "NA", + "instanceFamily": "Memory optimized", + "instanceType": "u7in-32tb.224xlarge", + "intelAvx2Available": "Yes", + "intelAvxAvailable": "Yes", + "intelTurboAvailable": "Yes", + "marketoption": "OnDemand", + "memory": "32768 GiB", + "networkPerformance": "200 Gigabit", + "normalizationSizeFactor": "1792", + "physicalProcessor": "Intel Xeon Scalable (Sapphire Rapids)", + "processorArchitecture": "64-bit", + "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", + "regionCode": "us-west-2", + "servicecode": "AmazonEC2", + "servicename": "Amazon Elastic Compute Cloud", + "storage": "EBS only", + "vcpu": "896", + "vpcnetworkingsupport": "true" + }, + "id": "u7in-32tb.224xlarge", + "name": "u7in-32tb.224xlarge", + "ram": 33554432 }, "vt1.24xlarge": { "bandwidth": 25000, @@ -21083,16 +24086,16 @@ "physicalProcessor": "Intel Xeon Platinum 8259CL", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "us-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "vt1.24xlarge", "name": "vt1.24xlarge", - "ram": 196608, + "ram": 196608 }, "vt1.3xlarge": { "bandwidth": 3125, @@ -21123,11 +24126,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "12", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "vt1.3xlarge", "name": "vt1.3xlarge", - "ram": 24576, + "ram": 24576 }, "vt1.6xlarge": { "bandwidth": 6250, @@ -21153,16 +24156,16 @@ "physicalProcessor": "Intel Xeon Platinum 8259CL", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "eu-west-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "vt1.6xlarge", "name": "vt1.6xlarge", - "ram": 49152, + "ram": 49152 }, "x1.16xlarge": { "bandwidth": None, @@ -21193,11 +24196,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1920 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1.16xlarge", "name": "x1.16xlarge", - "ram": 999424, + "ram": 999424 }, "x1.32xlarge": { "bandwidth": None, @@ -21228,11 +24231,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1920 SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1.32xlarge", "name": "x1.32xlarge", - "ram": 1998848, + "ram": 1998848 }, "x1e.16xlarge": { "bandwidth": 10, @@ -21263,11 +24266,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1920 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.16xlarge", "name": "x1e.16xlarge", - "ram": 1998848, + "ram": 1998848 }, "x1e.2xlarge": { "bandwidth": 10, @@ -21298,11 +24301,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 240 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.2xlarge", "name": "x1e.2xlarge", - "ram": 249856, + "ram": 249856 }, "x1e.32xlarge": { "bandwidth": 25, @@ -21333,11 +24336,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1920 SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.32xlarge", "name": "x1e.32xlarge", - "ram": 3997696, + "ram": 3997696 }, "x1e.4xlarge": { "bandwidth": 10, @@ -21368,11 +24371,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 480 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.4xlarge", "name": "x1e.4xlarge", - "ram": 499712, + "ram": 499712 }, "x1e.8xlarge": { "bandwidth": 10, @@ -21403,11 +24406,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 960 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.8xlarge", "name": "x1e.8xlarge", - "ram": 999424, + "ram": 999424 }, "x1e.xlarge": { "bandwidth": 10, @@ -21438,11 +24441,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 120 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x1e.xlarge", "name": "x1e.xlarge", - "ram": 124928, + "ram": 124928 }, "x2gd.12xlarge": { "bandwidth": 20, @@ -21472,11 +24475,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.12xlarge", "name": "x2gd.12xlarge", - "ram": 786432, + "ram": 786432 }, "x2gd.16xlarge": { "bandwidth": 25, @@ -21506,11 +24509,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.16xlarge", "name": "x2gd.16xlarge", - "ram": 1048576, + "ram": 1048576 }, "x2gd.2xlarge": { "bandwidth": 10, @@ -21540,11 +24543,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.2xlarge", "name": "x2gd.2xlarge", - "ram": 131072, + "ram": 131072 }, "x2gd.4xlarge": { "bandwidth": 10, @@ -21574,11 +24577,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.4xlarge", "name": "x2gd.4xlarge", - "ram": 262144, + "ram": 262144 }, "x2gd.8xlarge": { "bandwidth": 12, @@ -21608,11 +24611,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.8xlarge", "name": "x2gd.8xlarge", - "ram": 524288, + "ram": 524288 }, "x2gd.large": { "bandwidth": 10, @@ -21642,11 +24645,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.large", "name": "x2gd.large", - "ram": 32768, + "ram": 32768 }, "x2gd.medium": { "bandwidth": 10, @@ -21676,11 +24679,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.medium", "name": "x2gd.medium", - "ram": 16384, + "ram": 16384 }, "x2gd.xlarge": { "bandwidth": 10, @@ -21710,11 +24713,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2gd.xlarge", "name": "x2gd.xlarge", - "ram": 65536, + "ram": 65536 }, "x2idn.16xlarge": { "bandwidth": 50, @@ -21745,11 +24748,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2idn.16xlarge", "name": "x2idn.16xlarge", - "ram": 1048576, + "ram": 1048576 }, "x2idn.24xlarge": { "bandwidth": 75, @@ -21780,11 +24783,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2idn.24xlarge", "name": "x2idn.24xlarge", - "ram": 1572864, + "ram": 1572864 }, "x2idn.32xlarge": { "bandwidth": 100, @@ -21815,11 +24818,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2idn.32xlarge", "name": "x2idn.32xlarge", - "ram": 2097152, + "ram": 2097152 }, "x2iedn.16xlarge": { "bandwidth": 50, @@ -21850,11 +24853,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.16xlarge", "name": "x2iedn.16xlarge", - "ram": 2097152, + "ram": 2097152 }, "x2iedn.24xlarge": { "bandwidth": 75, @@ -21885,11 +24888,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.24xlarge", "name": "x2iedn.24xlarge", - "ram": 3145728, + "ram": 3145728 }, "x2iedn.2xlarge": { "bandwidth": 25, @@ -21920,11 +24923,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.2xlarge", "name": "x2iedn.2xlarge", - "ram": 262144, + "ram": 262144 }, "x2iedn.32xlarge": { "bandwidth": 100, @@ -21955,11 +24958,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.32xlarge", "name": "x2iedn.32xlarge", - "ram": 4194304, + "ram": 4194304 }, "x2iedn.4xlarge": { "bandwidth": 25, @@ -21990,11 +24993,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.4xlarge", "name": "x2iedn.4xlarge", - "ram": 524288, + "ram": 524288 }, "x2iedn.8xlarge": { "bandwidth": 25, @@ -22025,11 +25028,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.8xlarge", "name": "x2iedn.8xlarge", - "ram": 1048576, + "ram": 1048576 }, "x2iedn.xlarge": { "bandwidth": 25, @@ -22060,11 +25063,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iedn.xlarge", "name": "x2iedn.xlarge", - "ram": 131072, + "ram": 131072 }, "x2iezn.12xlarge": { "bandwidth": 100, @@ -22095,11 +25098,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iezn.12xlarge", "name": "x2iezn.12xlarge", - "ram": 1572864, + "ram": 1572864 }, "x2iezn.2xlarge": { "bandwidth": 25, @@ -22130,11 +25133,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iezn.2xlarge", "name": "x2iezn.2xlarge", - "ram": 262144, + "ram": 262144 }, "x2iezn.4xlarge": { "bandwidth": 25, @@ -22165,11 +25168,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iezn.4xlarge", "name": "x2iezn.4xlarge", - "ram": 524288, + "ram": 524288 }, "x2iezn.6xlarge": { "bandwidth": 50, @@ -22200,11 +25203,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iezn.6xlarge", "name": "x2iezn.6xlarge", - "ram": 786432, + "ram": 786432 }, "x2iezn.8xlarge": { "bandwidth": 75, @@ -22235,11 +25238,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "x2iezn.8xlarge", "name": "x2iezn.8xlarge", - "ram": 1048576, + "ram": 1048576 }, "z1d.12xlarge": { "bandwidth": 25, @@ -22270,11 +25273,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.12xlarge", "name": "z1d.12xlarge", - "ram": 393216, + "ram": 393216 }, "z1d.2xlarge": { "bandwidth": 10, @@ -22305,11 +25308,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.2xlarge", "name": "z1d.2xlarge", - "ram": 65536, + "ram": 65536 }, "z1d.3xlarge": { "bandwidth": 10, @@ -22340,11 +25343,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 450 NVMe SSD", "vcpu": "12", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.3xlarge", "name": "z1d.3xlarge", - "ram": 98304, + "ram": 98304 }, "z1d.6xlarge": { "bandwidth": 10, @@ -22375,11 +25378,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 900 NVMe SSD", "vcpu": "24", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.6xlarge", "name": "z1d.6xlarge", - "ram": 196608, + "ram": 196608 }, "z1d.large": { "bandwidth": 10, @@ -22410,11 +25413,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.large", "name": "z1d.large", - "ram": 16384, + "ram": 16384 }, "z1d.xlarge": { "bandwidth": 10, @@ -22445,10 +25448,10 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true", + "vpcnetworkingsupport": "true" }, "id": "z1d.xlarge", "name": "z1d.xlarge", - "ram": 32768, - }, -} + "ram": 32768 + } +} \ No newline at end of file diff --git a/libcloud/compute/constants/ec2_region_details_complete.py b/libcloud/compute/constants/ec2_region_details_complete.py index 79170228c8..0d540b02a8 100644 --- a/libcloud/compute/constants/ec2_region_details_complete.py +++ b/libcloud/compute/constants/ec2_region_details_complete.py @@ -21,7 +21,7 @@ "endpoint": "ec2.af-south-1.amazonaws.com", "id": "af-south-1", "instance_types": [], - "signature_version": "4", + "signature_version": "4" }, "ap-east-1": { "api_name": "ec2_ap_east", @@ -82,6 +82,15 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6in.12xlarge", + "c6in.16xlarge", + "c6in.24xlarge", + "c6in.2xlarge", + "c6in.32xlarge", + "c6in.4xlarge", + "c6in.8xlarge", + "c6in.large", + "c6in.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -105,7 +114,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -140,6 +151,14 @@ "m6g.large", "m6g.medium", "m6g.xlarge", + "m6gd.12xlarge", + "m6gd.16xlarge", + "m6gd.2xlarge", + "m6gd.4xlarge", + "m6gd.8xlarge", + "m6gd.large", + "m6gd.medium", + "m6gd.xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", @@ -205,9 +224,9 @@ "t4g.small", "t4g.xlarge", "x1.16xlarge", - "x1.32xlarge", + "x1.32xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "ap-northeast-1": { "api_name": "ec2_ap_northeast", @@ -323,6 +342,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -331,6 +361,31 @@ "c7g.large", "c7g.medium", "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7gn.12xlarge", + "c7gn.16xlarge", + "c7gn.2xlarge", + "c7gn.4xlarge", + "c7gn.8xlarge", + "c7gn.large", + "c7gn.medium", + "c7gn.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "cc2.8xlarge", "cr1.8xlarge", "d2.2xlarge", @@ -341,6 +396,12 @@ "d3.4xlarge", "d3.8xlarge", "d3.xlarge", + "d3en.12xlarge", + "d3en.2xlarge", + "d3en.4xlarge", + "d3en.6xlarge", + "d3en.8xlarge", + "d3en.xlarge", "g2.2xlarge", "g2.8xlarge", "g3.16xlarge", @@ -371,6 +432,9 @@ "g5g.4xlarge", "g5g.8xlarge", "g5g.xlarge", + "hpc7g.16xlarge", + "hpc7g.4xlarge", + "hpc7g.8xlarge", "hs1.8xlarge", "i2.2xlarge", "i2.4xlarge", @@ -390,7 +454,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -407,6 +473,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -546,6 +616,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -554,6 +635,28 @@ "m7g.large", "m7g.medium", "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", @@ -629,6 +732,16 @@ "r5n.8xlarge", "r5n.large", "r5n.xlarge", + "r6a.12xlarge", + "r6a.16xlarge", + "r6a.24xlarge", + "r6a.2xlarge", + "r6a.32xlarge", + "r6a.48xlarge", + "r6a.4xlarge", + "r6a.8xlarge", + "r6a.large", + "r6a.xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.2xlarge", @@ -681,6 +794,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -689,6 +813,31 @@ "r7g.large", "r7g.medium", "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -754,9 +903,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "ap-northeast-2": { "api_name": "ec2_ap_northeast", @@ -837,6 +986,41 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6id.12xlarge", + "c6id.16xlarge", + "c6id.24xlarge", + "c6id.2xlarge", + "c6id.32xlarge", + "c6id.4xlarge", + "c6id.8xlarge", + "c6id.large", + "c6id.xlarge", + "c6in.12xlarge", + "c6in.16xlarge", + "c6in.24xlarge", + "c6in.2xlarge", + "c6in.32xlarge", + "c6in.4xlarge", + "c6in.8xlarge", + "c6in.large", + "c6in.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -884,7 +1068,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -968,6 +1154,37 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", @@ -1076,6 +1293,23 @@ "r6id.8xlarge", "r6id.large", "r6id.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -1104,9 +1338,12 @@ "t4g.nano", "t4g.small", "t4g.xlarge", + "u-12tb1.112xlarge", "u-24tb1.112xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", + "u-9tb1.112xlarge", + "u7in-16tb.224xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.16xlarge", @@ -1130,9 +1367,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "ap-northeast-3": { "api_name": "ec2_ap_northeast", @@ -1140,7 +1377,7 @@ "endpoint": "ec2.ap-northeast-3.amazonaws.com", "id": "ap-northeast-3", "instance_types": [], - "signature_version": "4", + "signature_version": "4" }, "ap-south-1": { "api_name": "ec2_ap_south_1", @@ -1240,6 +1477,36 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -1280,7 +1547,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -1291,6 +1560,16 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", + "is4gen.2xlarge", + "is4gen.4xlarge", + "is4gen.8xlarge", + "is4gen.large", + "is4gen.medium", + "is4gen.xlarge", "m4.10xlarge", "m4.16xlarge", "m4.2xlarge", @@ -1364,6 +1643,45 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", @@ -1462,6 +1780,31 @@ "r6id.8xlarge", "r6id.large", "r6id.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -1516,9 +1859,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "ap-southeast-1": { "api_name": "ec2_ap_southeast", @@ -1624,6 +1967,15 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6id.12xlarge", + "c6id.16xlarge", + "c6id.24xlarge", + "c6id.2xlarge", + "c6id.32xlarge", + "c6id.4xlarge", + "c6id.8xlarge", + "c6id.large", + "c6id.xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", @@ -1641,6 +1993,28 @@ "c7g.large", "c7g.medium", "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -1649,6 +2023,12 @@ "d3.4xlarge", "d3.8xlarge", "d3.xlarge", + "d3en.12xlarge", + "d3en.2xlarge", + "d3en.4xlarge", + "d3en.6xlarge", + "d3en.8xlarge", + "d3en.xlarge", "g2.2xlarge", "g2.8xlarge", "g3.16xlarge", @@ -1685,7 +2065,15 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4g.16xlarge", + "i4g.2xlarge", + "i4g.4xlarge", + "i4g.8xlarge", + "i4g.large", + "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -1702,6 +2090,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -1814,6 +2206,15 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", "m6idn.12xlarge", "m6idn.16xlarge", "m6idn.24xlarge", @@ -1832,12 +2233,44 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", "p3.16xlarge", "p3.2xlarge", "p3.8xlarge", + "p4d.24xlarge", + "p4de.24xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", @@ -1905,6 +2338,16 @@ "r5n.8xlarge", "r5n.large", "r5n.xlarge", + "r6a.12xlarge", + "r6a.16xlarge", + "r6a.24xlarge", + "r6a.2xlarge", + "r6a.32xlarge", + "r6a.48xlarge", + "r6a.4xlarge", + "r6a.8xlarge", + "r6a.large", + "r6a.xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.2xlarge", @@ -1957,6 +2400,31 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -2014,9 +2482,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "ap-southeast-2": { "api_name": "ec2_ap_southeast_2", @@ -2148,6 +2616,23 @@ "c7g.large", "c7g.medium", "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -2179,6 +2664,7 @@ "g5.4xlarge", "g5.8xlarge", "g5.xlarge", + "hpc6a.48xlarge", "hs1.8xlarge", "i2.2xlarge", "i2.4xlarge", @@ -2198,7 +2684,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -2215,6 +2703,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -2320,6 +2812,24 @@ "m6id.8xlarge", "m6id.large", "m6id.xlarge", + "m6idn.12xlarge", + "m6idn.16xlarge", + "m6idn.24xlarge", + "m6idn.2xlarge", + "m6idn.32xlarge", + "m6idn.4xlarge", + "m6idn.8xlarge", + "m6idn.large", + "m6idn.xlarge", + "m6in.12xlarge", + "m6in.16xlarge", + "m6in.24xlarge", + "m6in.2xlarge", + "m6in.32xlarge", + "m6in.4xlarge", + "m6in.8xlarge", + "m6in.large", + "m6in.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -2328,12 +2838,35 @@ "m7g.large", "m7g.medium", "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", "p3.16xlarge", "p3.2xlarge", "p3.8xlarge", + "p5.48xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", @@ -2401,6 +2934,16 @@ "r5n.8xlarge", "r5n.large", "r5n.xlarge", + "r6a.12xlarge", + "r6a.16xlarge", + "r6a.24xlarge", + "r6a.2xlarge", + "r6a.32xlarge", + "r6a.48xlarge", + "r6a.4xlarge", + "r6a.8xlarge", + "r6a.large", + "r6a.xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.2xlarge", @@ -2443,6 +2986,23 @@ "r7g.large", "r7g.medium", "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -2472,9 +3032,11 @@ "t4g.nano", "t4g.small", "t4g.xlarge", + "u-12tb1.112xlarge", "u-3tb1.56xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", + "u7in-16tb.224xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.16xlarge", @@ -2498,9 +3060,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "ca-central-1": { "api_name": "ec2_ca_central_1", @@ -2543,6 +3105,16 @@ "c5n.9xlarge", "c5n.large", "c5n.xlarge", + "c6a.12xlarge", + "c6a.16xlarge", + "c6a.24xlarge", + "c6a.2xlarge", + "c6a.32xlarge", + "c6a.48xlarge", + "c6a.4xlarge", + "c6a.8xlarge", + "c6a.large", + "c6a.xlarge", "c6g.12xlarge", "c6g.16xlarge", "c6g.2xlarge", @@ -2585,6 +3157,28 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -2634,7 +3228,9 @@ "i4g.8xlarge", "i4g.large", "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -2695,6 +3291,16 @@ "m5d.8xlarge", "m5d.large", "m5d.xlarge", + "m6a.12xlarge", + "m6a.16xlarge", + "m6a.24xlarge", + "m6a.2xlarge", + "m6a.32xlarge", + "m6a.48xlarge", + "m6a.4xlarge", + "m6a.8xlarge", + "m6a.large", + "m6a.xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6g.2xlarge", @@ -2703,6 +3309,14 @@ "m6g.large", "m6g.medium", "m6g.xlarge", + "m6gd.12xlarge", + "m6gd.16xlarge", + "m6gd.2xlarge", + "m6gd.4xlarge", + "m6gd.8xlarge", + "m6gd.large", + "m6gd.medium", + "m6gd.xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", @@ -2712,9 +3326,42 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p3.16xlarge", "p3.2xlarge", "p3.8xlarge", + "p4d.24xlarge", + "p5.48xlarge", "r4.16xlarge", "r4.2xlarge", "r4.4xlarge", @@ -2794,6 +3441,23 @@ "r6i.8xlarge", "r6i.large", "r6i.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -2842,9 +3506,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge", + "x2iedn.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "cn-north-1": { "api_name": "ec2_cn_north", @@ -2852,7 +3516,7 @@ "endpoint": "ec2.cn-north-1.amazonaws.com.cn", "id": "cn-north-1", "instance_types": [], - "signature_version": "4", + "signature_version": "4" }, "cn-northwest-1": { "api_name": "ec2_cn_northwest", @@ -2860,7 +3524,7 @@ "endpoint": "ec2.cn-northwest-1.amazonaws.com.cn", "id": "cn-northwest-1", "instance_types": [], - "signature_version": "4", + "signature_version": "4" }, "eu-central-1": { "api_name": "ec2_eu_central", @@ -2982,6 +3646,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -2990,6 +3665,23 @@ "c7g.large", "c7g.medium", "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -2998,6 +3690,13 @@ "d3.4xlarge", "d3.8xlarge", "d3.xlarge", + "d3en.12xlarge", + "d3en.2xlarge", + "d3en.4xlarge", + "d3en.6xlarge", + "d3en.8xlarge", + "d3en.xlarge", + "dl2q.24xlarge", "f1.2xlarge", "f1.4xlarge", "g2.2xlarge", @@ -3048,7 +3747,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -3065,6 +3766,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -3197,6 +3902,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -3205,6 +3921,28 @@ "m7g.large", "m7g.medium", "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p2.16xlarge", "p2.8xlarge", "p2.xlarge", @@ -3341,6 +4079,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -3349,6 +4098,31 @@ "r7g.large", "r7g.medium", "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -3405,9 +4179,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "eu-north-1": { "api_name": "ec2_eu_north_stockholm", @@ -3487,6 +4261,47 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -3507,6 +4322,10 @@ "g5.xlarge", "hpc6a.48xlarge", "hpc6id.32xlarge", + "hpc7a.12xlarge", + "hpc7a.24xlarge", + "hpc7a.48xlarge", + "hpc7a.96xlarge", "i3.16xlarge", "i3.2xlarge", "i3.4xlarge", @@ -3520,7 +4339,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -3531,6 +4352,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "m5.12xlarge", "m5.16xlarge", "m5.24xlarge", @@ -3572,6 +4397,66 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6idn.12xlarge", + "m6idn.16xlarge", + "m6idn.24xlarge", + "m6idn.2xlarge", + "m6idn.32xlarge", + "m6idn.4xlarge", + "m6idn.8xlarge", + "m6idn.large", + "m6idn.xlarge", + "m6in.12xlarge", + "m6in.16xlarge", + "m6in.24xlarge", + "m6in.2xlarge", + "m6in.32xlarge", + "m6in.4xlarge", + "m6in.8xlarge", + "m6in.large", + "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", + "p5.48xlarge", "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", @@ -3637,6 +4522,60 @@ "r6i.8xlarge", "r6i.large", "r6i.xlarge", + "r6idn.12xlarge", + "r6idn.16xlarge", + "r6idn.24xlarge", + "r6idn.2xlarge", + "r6idn.32xlarge", + "r6idn.4xlarge", + "r6idn.8xlarge", + "r6idn.large", + "r6idn.xlarge", + "r6in.12xlarge", + "r6in.16xlarge", + "r6in.24xlarge", + "r6in.2xlarge", + "r6in.32xlarge", + "r6in.4xlarge", + "r6in.8xlarge", + "r6in.large", + "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t3.2xlarge", "t3.large", "t3.medium", @@ -3653,6 +4592,7 @@ "t4g.xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", + "u-9tb1.112xlarge", "x2idn.16xlarge", "x2idn.24xlarge", "x2idn.32xlarge", @@ -3662,9 +4602,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge", + "x2iedn.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "eu-south-1": { "api_name": "ec2_eu_south", @@ -3767,7 +4707,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -3802,6 +4744,16 @@ "m5d.8xlarge", "m5d.large", "m5d.xlarge", + "m6a.12xlarge", + "m6a.16xlarge", + "m6a.24xlarge", + "m6a.2xlarge", + "m6a.32xlarge", + "m6a.48xlarge", + "m6a.4xlarge", + "m6a.8xlarge", + "m6a.large", + "m6a.xlarge", "m6g.12xlarge", "m6g.16xlarge", "m6g.2xlarge", @@ -3810,6 +4762,14 @@ "m6g.large", "m6g.medium", "m6g.xlarge", + "m6gd.12xlarge", + "m6gd.16xlarge", + "m6gd.2xlarge", + "m6gd.4xlarge", + "m6gd.8xlarge", + "m6gd.large", + "m6gd.medium", + "m6gd.xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", @@ -3905,6 +4865,7 @@ "t4g.nano", "t4g.small", "t4g.xlarge", + "u-12tb1.112xlarge", "u-3tb1.56xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", @@ -3917,9 +4878,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge", + "x2iedn.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "eu-west-1": { "api_name": "ec2_eu_west", @@ -4043,6 +5004,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -4067,6 +5039,20 @@ "c7gn.large", "c7gn.medium", "c7gn.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "cc2.8xlarge", "cr1.8xlarge", "d2.2xlarge", @@ -4115,6 +5101,13 @@ "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", + "hpc7a.12xlarge", + "hpc7a.24xlarge", + "hpc7a.48xlarge", + "hpc7a.96xlarge", + "hpc7g.16xlarge", + "hpc7g.4xlarge", + "hpc7g.8xlarge", "hs1.8xlarge", "i2.2xlarge", "i2.4xlarge", @@ -4140,7 +5133,9 @@ "i4g.8xlarge", "i4g.large", "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -4157,6 +5152,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -4296,6 +5295,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -4463,6 +5473,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -4479,6 +5500,23 @@ "r7gd.large", "r7gd.medium", "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -4553,9 +5591,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "eu-west-2": { "api_name": "ec2_eu_west_london", @@ -4641,6 +5679,15 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6id.12xlarge", + "c6id.16xlarge", + "c6id.24xlarge", + "c6id.2xlarge", + "c6id.32xlarge", + "c6id.4xlarge", + "c6id.8xlarge", + "c6id.large", + "c6id.xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", @@ -4650,6 +5697,28 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -4697,7 +5766,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -4714,6 +5785,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -4793,6 +5868,37 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "p3.16xlarge", "p3.2xlarge", "p3.8xlarge", @@ -4884,6 +5990,23 @@ "r6id.8xlarge", "r6id.large", "r6id.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -4912,6 +6035,9 @@ "t4g.nano", "t4g.small", "t4g.xlarge", + "u-6tb1.112xlarge", + "u-6tb1.56xlarge", + "u-9tb1.112xlarge", "x1.16xlarge", "x1.32xlarge", "x2idn.16xlarge", @@ -4929,9 +6055,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "eu-west-3": { "api_name": "ec2_eu_west_paris", @@ -5014,6 +6140,20 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -5037,7 +6177,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -5054,6 +6196,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -5123,6 +6269,36 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "r4.16xlarge", "r4.2xlarge", "r4.4xlarge", @@ -5202,6 +6378,15 @@ "r6i.8xlarge", "r6i.large", "r6i.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -5243,9 +6428,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge", + "x2iedn.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "sa-east-1": { "api_name": "ec2_sa_east", @@ -5355,6 +6540,20 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -5392,7 +6591,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -5403,6 +6604,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "m1.large", "m1.medium", "m1.small", @@ -5476,6 +6681,14 @@ "m6g.large", "m6g.medium", "m6g.xlarge", + "m6gd.12xlarge", + "m6gd.16xlarge", + "m6gd.2xlarge", + "m6gd.4xlarge", + "m6gd.8xlarge", + "m6gd.large", + "m6gd.medium", + "m6gd.xlarge", "m6i.12xlarge", "m6i.16xlarge", "m6i.24xlarge", @@ -5485,6 +6698,47 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6id.12xlarge", + "m6id.16xlarge", + "m6id.24xlarge", + "m6id.2xlarge", + "m6id.32xlarge", + "m6id.4xlarge", + "m6id.8xlarge", + "m6id.large", + "m6id.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", + "p4d.24xlarge", + "p5.48xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", @@ -5569,6 +6823,15 @@ "r6i.8xlarge", "r6i.large", "r6i.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -5602,6 +6865,7 @@ "u-3tb1.56xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", + "u-9tb1.112xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.16xlarge", @@ -5619,9 +6883,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge", + "x2iedn.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "us-east-1": { "api_name": "ec2_us_east", @@ -5745,6 +7009,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -5769,6 +7044,15 @@ "c7gn.large", "c7gn.medium", "c7gn.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "cc2.8xlarge", "cr1.8xlarge", "d2.2xlarge", @@ -5819,6 +7103,16 @@ "g5g.4xlarge", "g5g.8xlarge", "g5g.xlarge", + "g6.12xlarge", + "g6.16xlarge", + "g6.24xlarge", + "g6.2xlarge", + "g6.48xlarge", + "g6.4xlarge", + "g6.8xlarge", + "g6.xlarge", + "gr6.4xlarge", + "gr6.8xlarge", "h1.16xlarge", "h1.2xlarge", "h1.4xlarge", @@ -5851,7 +7145,9 @@ "i4g.8xlarge", "i4g.large", "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -6011,6 +7307,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -6180,6 +7487,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -6196,6 +7514,23 @@ "r7gd.large", "r7gd.medium", "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -6235,6 +7570,10 @@ "u-6tb1.112xlarge", "u-6tb1.56xlarge", "u-9tb1.112xlarge", + "u7i-12tb.224xlarge", + "u7in-16tb.224xlarge", + "u7in-24tb.224xlarge", + "u7in-32tb.224xlarge", "vt1.24xlarge", "vt1.3xlarge", "vt1.6xlarge", @@ -6274,9 +7613,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "us-east-2": { "api_name": "ec2_us_east_ohio", @@ -6393,6 +7732,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -6417,6 +7767,15 @@ "c7gn.large", "c7gn.medium", "c7gn.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -6448,12 +7807,26 @@ "g5.4xlarge", "g5.8xlarge", "g5.xlarge", + "g6.12xlarge", + "g6.16xlarge", + "g6.24xlarge", + "g6.2xlarge", + "g6.48xlarge", + "g6.4xlarge", + "g6.8xlarge", + "g6.xlarge", + "gr6.4xlarge", + "gr6.8xlarge", "h1.16xlarge", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", "hpc6a.48xlarge", "hpc6id.32xlarge", + "hpc7a.12xlarge", + "hpc7a.24xlarge", + "hpc7a.48xlarge", + "hpc7a.96xlarge", "i2.2xlarge", "i2.4xlarge", "i2.8xlarge", @@ -6478,7 +7851,9 @@ "i4g.8xlarge", "i4g.large", "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -6627,6 +8002,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -6664,6 +8050,7 @@ "p3.2xlarge", "p3.8xlarge", "p4d.24xlarge", + "p5.48xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", @@ -6793,6 +8180,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -6809,6 +8207,23 @@ "r7gd.large", "r7gd.medium", "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t2.2xlarge", "t2.large", "t2.medium", @@ -6837,10 +8252,14 @@ "t4g.nano", "t4g.small", "t4g.xlarge", + "trn1.2xlarge", + "trn1.32xlarge", + "trn1n.32xlarge", "u-12tb1.112xlarge", "u-3tb1.56xlarge", "u-6tb1.112xlarge", "u-6tb1.56xlarge", + "u-9tb1.112xlarge", "x1.16xlarge", "x1.32xlarge", "x1e.16xlarge", @@ -6872,9 +8291,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "4", + "signature_version": "4" }, "us-gov-west-1": { "api_name": "ec2_us_govwest", @@ -6882,7 +8301,7 @@ "endpoint": "ec2.us-gov-west-1.amazonaws.com", "id": "us-gov-west-1", "instance_types": [], - "signature_version": "2", + "signature_version": "2" }, "us-west-1": { "api_name": "ec2_us_west", @@ -6975,6 +8394,45 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6in.12xlarge", + "c6in.16xlarge", + "c6in.24xlarge", + "c6in.2xlarge", + "c6in.32xlarge", + "c6in.4xlarge", + "c6in.8xlarge", + "c6in.large", + "c6in.xlarge", + "c7g.12xlarge", + "c7g.16xlarge", + "c7g.2xlarge", + "c7g.4xlarge", + "c7g.8xlarge", + "c7g.large", + "c7g.medium", + "c7g.xlarge", + "c7gd.12xlarge", + "c7gd.16xlarge", + "c7gd.2xlarge", + "c7gd.4xlarge", + "c7gd.8xlarge", + "c7gd.large", + "c7gd.medium", + "c7gd.xlarge", + "c7i-flex.2xlarge", + "c7i-flex.4xlarge", + "c7i-flex.8xlarge", + "c7i-flex.large", + "c7i-flex.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", @@ -7008,7 +8466,9 @@ "i3en.6xlarge", "i3en.large", "i3en.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -7109,6 +8569,54 @@ "m6i.8xlarge", "m6i.large", "m6i.xlarge", + "m6idn.12xlarge", + "m6idn.16xlarge", + "m6idn.24xlarge", + "m6idn.2xlarge", + "m6idn.32xlarge", + "m6idn.4xlarge", + "m6idn.8xlarge", + "m6idn.large", + "m6idn.xlarge", + "m6in.12xlarge", + "m6in.16xlarge", + "m6in.24xlarge", + "m6in.2xlarge", + "m6in.32xlarge", + "m6in.4xlarge", + "m6in.8xlarge", + "m6in.large", + "m6in.xlarge", + "m7g.12xlarge", + "m7g.16xlarge", + "m7g.2xlarge", + "m7g.4xlarge", + "m7g.8xlarge", + "m7g.large", + "m7g.medium", + "m7g.xlarge", + "m7gd.12xlarge", + "m7gd.16xlarge", + "m7gd.2xlarge", + "m7gd.4xlarge", + "m7gd.8xlarge", + "m7gd.large", + "m7gd.medium", + "m7gd.xlarge", + "m7i-flex.2xlarge", + "m7i-flex.4xlarge", + "m7i-flex.8xlarge", + "m7i-flex.large", + "m7i-flex.xlarge", + "m7i.12xlarge", + "m7i.16xlarge", + "m7i.24xlarge", + "m7i.2xlarge", + "m7i.48xlarge", + "m7i.4xlarge", + "m7i.8xlarge", + "m7i.large", + "m7i.xlarge", "r3.2xlarge", "r3.4xlarge", "r3.8xlarge", @@ -7160,6 +8668,16 @@ "r5n.8xlarge", "r5n.large", "r5n.xlarge", + "r6a.12xlarge", + "r6a.16xlarge", + "r6a.24xlarge", + "r6a.2xlarge", + "r6a.32xlarge", + "r6a.48xlarge", + "r6a.4xlarge", + "r6a.8xlarge", + "r6a.large", + "r6a.xlarge", "r6g.12xlarge", "r6g.16xlarge", "r6g.2xlarge", @@ -7185,6 +8703,31 @@ "r6i.8xlarge", "r6i.large", "r6i.xlarge", + "r7g.12xlarge", + "r7g.16xlarge", + "r7g.2xlarge", + "r7g.4xlarge", + "r7g.8xlarge", + "r7g.large", + "r7g.medium", + "r7g.xlarge", + "r7gd.12xlarge", + "r7gd.16xlarge", + "r7gd.2xlarge", + "r7gd.4xlarge", + "r7gd.8xlarge", + "r7gd.large", + "r7gd.medium", + "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -7229,9 +8772,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", + "signature_version": "2" }, "us-west-2": { "api_name": "ec2_us_west_oregon", @@ -7355,6 +8898,17 @@ "c6in.8xlarge", "c6in.large", "c6in.xlarge", + "c7a.12xlarge", + "c7a.16xlarge", + "c7a.24xlarge", + "c7a.2xlarge", + "c7a.32xlarge", + "c7a.48xlarge", + "c7a.4xlarge", + "c7a.8xlarge", + "c7a.large", + "c7a.medium", + "c7a.xlarge", "c7g.12xlarge", "c7g.16xlarge", "c7g.2xlarge", @@ -7379,6 +8933,15 @@ "c7gn.large", "c7gn.medium", "c7gn.xlarge", + "c7i.12xlarge", + "c7i.16xlarge", + "c7i.24xlarge", + "c7i.2xlarge", + "c7i.48xlarge", + "c7i.4xlarge", + "c7i.8xlarge", + "c7i.large", + "c7i.xlarge", "cc2.8xlarge", "cr1.8xlarge", "d2.2xlarge", @@ -7396,6 +8959,7 @@ "d3en.8xlarge", "d3en.xlarge", "dl1.24xlarge", + "dl2q.24xlarge", "f1.16xlarge", "f1.2xlarge", "f1.4xlarge", @@ -7429,6 +8993,16 @@ "g5g.4xlarge", "g5g.8xlarge", "g5g.xlarge", + "g6.12xlarge", + "g6.16xlarge", + "g6.24xlarge", + "g6.2xlarge", + "g6.48xlarge", + "g6.4xlarge", + "g6.8xlarge", + "g6.xlarge", + "gr6.4xlarge", + "gr6.8xlarge", "h1.16xlarge", "h1.2xlarge", "h1.4xlarge", @@ -7458,7 +9032,9 @@ "i4g.8xlarge", "i4g.large", "i4g.xlarge", + "i4i.12xlarge", "i4i.16xlarge", + "i4i.24xlarge", "i4i.2xlarge", "i4i.32xlarge", "i4i.4xlarge", @@ -7475,6 +9051,10 @@ "inf1.2xlarge", "inf1.6xlarge", "inf1.xlarge", + "inf2.24xlarge", + "inf2.48xlarge", + "inf2.8xlarge", + "inf2.xlarge", "is4gen.2xlarge", "is4gen.4xlarge", "is4gen.8xlarge", @@ -7614,6 +9194,17 @@ "m6in.8xlarge", "m6in.large", "m6in.xlarge", + "m7a.12xlarge", + "m7a.16xlarge", + "m7a.24xlarge", + "m7a.2xlarge", + "m7a.32xlarge", + "m7a.48xlarge", + "m7a.4xlarge", + "m7a.8xlarge", + "m7a.large", + "m7a.medium", + "m7a.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -7783,6 +9374,17 @@ "r6in.8xlarge", "r6in.large", "r6in.xlarge", + "r7a.12xlarge", + "r7a.16xlarge", + "r7a.24xlarge", + "r7a.2xlarge", + "r7a.32xlarge", + "r7a.48xlarge", + "r7a.4xlarge", + "r7a.8xlarge", + "r7a.large", + "r7a.medium", + "r7a.xlarge", "r7g.12xlarge", "r7g.16xlarge", "r7g.2xlarge", @@ -7799,6 +9401,23 @@ "r7gd.large", "r7gd.medium", "r7gd.xlarge", + "r7i.12xlarge", + "r7i.16xlarge", + "r7i.24xlarge", + "r7i.2xlarge", + "r7i.48xlarge", + "r7i.4xlarge", + "r7i.8xlarge", + "r7i.large", + "r7i.xlarge", + "r7iz.12xlarge", + "r7iz.16xlarge", + "r7iz.2xlarge", + "r7iz.32xlarge", + "r7iz.4xlarge", + "r7iz.8xlarge", + "r7iz.large", + "r7iz.xlarge", "t1.micro", "t2.2xlarge", "t2.large", @@ -7838,6 +9457,10 @@ "u-6tb1.112xlarge", "u-6tb1.56xlarge", "u-9tb1.112xlarge", + "u7i-12tb.224xlarge", + "u7in-16tb.224xlarge", + "u7in-24tb.224xlarge", + "u7in-32tb.224xlarge", "vt1.24xlarge", "vt1.3xlarge", "vt1.6xlarge", @@ -7877,8 +9500,8 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge", + "z1d.xlarge" ], - "signature_version": "2", - }, -} + "signature_version": "2" + } +} \ No newline at end of file diff --git a/libcloud/compute/constants/ec2_region_details_partial.py b/libcloud/compute/constants/ec2_region_details_partial.py index f4728e72e2..32fc596074 100644 --- a/libcloud/compute/constants/ec2_region_details_partial.py +++ b/libcloud/compute/constants/ec2_region_details_partial.py @@ -20,160 +20,160 @@ "country": "South Africa", "endpoint": "ec2.af-south-1.amazonaws.com", "id": "af-south-1", - "signature_version": "4", + "signature_version": "4" }, "ap-east-1": { "api_name": "ec2_ap_east", "country": "Hong Kong", "endpoint": "ec2.ap-east-1.amazonaws.com", "id": "ap-east-1", - "signature_version": "2", + "signature_version": "2" }, "ap-northeast-1": { "api_name": "ec2_ap_northeast", "country": "Japan", "endpoint": "ec2.ap-northeast-1.amazonaws.com", "id": "ap-northeast-1", - "signature_version": "2", + "signature_version": "2" }, "ap-northeast-2": { "api_name": "ec2_ap_northeast", "country": "South Korea", "endpoint": "ec2.ap-northeast-2.amazonaws.com", "id": "ap-northeast-2", - "signature_version": "4", + "signature_version": "4" }, "ap-northeast-3": { "api_name": "ec2_ap_northeast", "country": "Japan", "endpoint": "ec2.ap-northeast-3.amazonaws.com", "id": "ap-northeast-3", - "signature_version": "4", + "signature_version": "4" }, "ap-south-1": { "api_name": "ec2_ap_south_1", "country": "India", "endpoint": "ec2.ap-south-1.amazonaws.com", "id": "ap-south-1", - "signature_version": "4", + "signature_version": "4" }, "ap-southeast-1": { "api_name": "ec2_ap_southeast", "country": "Singapore", "endpoint": "ec2.ap-southeast-1.amazonaws.com", "id": "ap-southeast-1", - "signature_version": "2", + "signature_version": "2" }, "ap-southeast-2": { "api_name": "ec2_ap_southeast_2", "country": "Australia", "endpoint": "ec2.ap-southeast-2.amazonaws.com", "id": "ap-southeast-2", - "signature_version": "2", + "signature_version": "2" }, "ca-central-1": { "api_name": "ec2_ca_central_1", "country": "Canada", "endpoint": "ec2.ca-central-1.amazonaws.com", "id": "ca-central-1", - "signature_version": "4", + "signature_version": "4" }, "cn-north-1": { "api_name": "ec2_cn_north", "country": "China", "endpoint": "ec2.cn-north-1.amazonaws.com.cn", "id": "cn-north-1", - "signature_version": "4", + "signature_version": "4" }, "cn-northwest-1": { "api_name": "ec2_cn_northwest", "country": "China", "endpoint": "ec2.cn-northwest-1.amazonaws.com.cn", "id": "cn-northwest-1", - "signature_version": "4", + "signature_version": "4" }, "eu-central-1": { "api_name": "ec2_eu_central", "country": "Frankfurt", "endpoint": "ec2.eu-central-1.amazonaws.com", "id": "eu-central-1", - "signature_version": "4", + "signature_version": "4" }, "eu-north-1": { "api_name": "ec2_eu_north_stockholm", "country": "Stockholm", "endpoint": "ec2.eu-north-1.amazonaws.com", "id": "eu-north-1", - "signature_version": "4", + "signature_version": "4" }, "eu-south-1": { "api_name": "ec2_eu_south", "country": "Italy", "endpoint": "ec2.eu-south-1.amazonaws.com", "id": "eu-south-1", - "signature_version": "4", + "signature_version": "4" }, "eu-west-1": { "api_name": "ec2_eu_west", "country": "Ireland", "endpoint": "ec2.eu-west-1.amazonaws.com", "id": "eu-west-1", - "signature_version": "2", + "signature_version": "2" }, "eu-west-2": { "api_name": "ec2_eu_west_london", "country": "United Kingdom", "endpoint": "ec2.eu-west-2.amazonaws.com", "id": "eu-west-2", - "signature_version": "4", + "signature_version": "4" }, "eu-west-3": { "api_name": "ec2_eu_west_paris", "country": "France", "endpoint": "ec2.eu-west-3.amazonaws.com", "id": "eu-west-3", - "signature_version": "4", + "signature_version": "4" }, "sa-east-1": { "api_name": "ec2_sa_east", "country": "Brazil", "endpoint": "ec2.sa-east-1.amazonaws.com", "id": "sa-east-1", - "signature_version": "2", + "signature_version": "2" }, "us-east-1": { "api_name": "ec2_us_east", "country": "USA", "endpoint": "ec2.us-east-1.amazonaws.com", "id": "us-east-1", - "signature_version": "2", + "signature_version": "2" }, "us-east-2": { "api_name": "ec2_us_east_ohio", "country": "USA", "endpoint": "ec2.us-east-2.amazonaws.com", "id": "us-east-2", - "signature_version": "4", + "signature_version": "4" }, "us-gov-west-1": { "api_name": "ec2_us_govwest", "country": "US", "endpoint": "ec2.us-gov-west-1.amazonaws.com", "id": "us-gov-west-1", - "signature_version": "2", + "signature_version": "2" }, "us-west-1": { "api_name": "ec2_us_west", "country": "USA", "endpoint": "ec2.us-west-1.amazonaws.com", "id": "us-west-1", - "signature_version": "2", + "signature_version": "2" }, "us-west-2": { "api_name": "ec2_us_west_oregon", "country": "US", "endpoint": "ec2.us-west-2.amazonaws.com", "id": "us-west-2", - "signature_version": "2", - }, -} + "signature_version": "2" + } +} \ No newline at end of file diff --git a/libcloud/data/pricing.json b/libcloud/data/pricing.json index 74de6a1c77..12e4b6c6de 100644 --- a/libcloud/data/pricing.json +++ b/libcloud/data/pricing.json @@ -34915,31 +34915,31 @@ }, "a1.medium": { "ap-northeast-1": 0.0, - "ap-south-1": 0.0255, - "ap-southeast-1": 0.0294, - "ap-southeast-2": 0.0, + "ap-south-1": 0.0271, + "ap-southeast-1": 0.0313, + "ap-southeast-2": 0.0333, "eu-central-1": 0.031, "eu-west-1": 0.0307, "us-east-1": 0.0, "us-east-2": 0.0255, - "us-west-2": 0.0 + "us-west-2": 0.0255 }, "a1.large": { "ap-northeast-1": 0.0686, - "ap-south-1": 0.0542, - "ap-southeast-1": 0.0588, + "ap-south-1": 0.051, + "ap-southeast-1": 0.0625, "ap-southeast-2": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.0614, + "eu-west-1": 0.0, "us-east-1": 0.051, "us-east-2": 0.0541, "us-west-2": 0.051 }, "a1.xlarge": { "ap-northeast-1": 0.1372, - "ap-south-1": 0.102, + "ap-south-1": 0.1085, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.1332, "eu-central-1": 0.0, "eu-west-1": 0.1227, "us-east-1": 0.102, @@ -34948,34 +34948,34 @@ }, "a1.metal": { "ap-northeast-1": 0.514, - "ap-south-1": 0.408, + "ap-south-1": 0.0, "ap-southeast-1": 0.47, "ap-southeast-2": 0.0, "eu-central-1": 0.466, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.408 + "us-west-2": 0.0 }, "a1.2xlarge": { "ap-northeast-1": 0.2743, "ap-south-1": 0.217, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.2352, "ap-southeast-2": 0.2664, "eu-central-1": 0.0, "eu-west-1": 0.2454, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.2162, "us-west-2": 0.2162 }, "a1.4xlarge": { "ap-northeast-1": 0.5136, - "ap-south-1": 0.408, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.5328, + "ap-south-1": 0.0, + "ap-southeast-1": 0.4704, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.4608, - "us-east-1": 0.408, + "us-east-1": 0.0, "us-east-2": 0.408, "us-west-2": 0.408 }, @@ -35015,12 +35015,12 @@ "us-west-2": 1.848 }, "c3.large": { - "ap-northeast-1": 0.128, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.115, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.132, + "eu-west-1": 0.12, "sa-east-1": 0.179, "us-east-1": 0.116, "us-gov-west-1": 0.0, @@ -35029,8 +35029,8 @@ }, "c3.xlarge": { "ap-northeast-1": 0.255, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.25245, + "ap-southeast-1": 0.265, "ap-southeast-2": 0.292, "eu-central-1": 0.283, "eu-west-1": 0.0, @@ -35041,29 +35041,29 @@ "us-west-2": 0.21 }, "c3.2xlarge": { - "ap-northeast-1": 0.511, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.582, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.46, + "ap-southeast-1": 0.529, "ap-southeast-2": 0.582, "eu-central-1": 0.516, - "eu-west-1": 0.526, + "eu-west-1": 0.478, "sa-east-1": 0.715, "us-east-1": 0.42, - "us-gov-west-1": 0.554, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.478, "us-west-2": 0.462 }, "c3.4xlarge": { "ap-northeast-1": 1.021, "ap-northeast-2": 0.919, - "ap-southeast-1": 1.058, - "ap-southeast-2": 1.058, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.164, "eu-central-1": 1.032, "eu-west-1": 0.956, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "sa-east-1": 1.43, + "us-east-1": 0.84, "us-gov-west-1": 1.108, - "us-west-1": 0.956, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c3.8xlarge": { @@ -35072,11 +35072,11 @@ "ap-southeast-1": 2.117, "ap-southeast-2": 2.117, "eu-central-1": 0.0, - "eu-west-1": 1.912, + "eu-west-1": 0.0, "sa-east-1": 2.6, "us-east-1": 0.0, "us-gov-west-1": 2.016, - "us-west-1": 0.0, + "us-west-1": 1.912, "us-west-2": 1.68 }, "c4": { @@ -35098,8 +35098,8 @@ }, "c4.large": { "ap-northeast-1": 0.126, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.125, + "ap-northeast-3": 0.126, "ap-south-1": 0.11, "ap-southeast-1": 0.0, "ap-southeast-2": 0.13, @@ -35107,12 +35107,12 @@ "eu-central-1": 0.0, "eu-west-1": 0.113, "eu-west-2": 0.119, - "sa-east-1": 0.0, + "sa-east-1": 0.17, "us-east-1": 0.11, - "us-east-2": 0.11, + "us-east-2": 0.0, "us-gov-west-1": 0.12, "us-west-1": 0.136, - "us-west-2": 0.1 + "us-west-2": 0.11 }, "c4.xlarge": { "ap-northeast-1": 0.0, @@ -35120,20 +35120,20 @@ "ap-northeast-3": 0.252, "ap-south-1": 0.0, "ap-southeast-1": 0.231, - "ap-southeast-2": 0.287, + "ap-southeast-2": 0.0, "ca-central-1": 0.218, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.237, "sa-east-1": 0.0, "us-east-1": 0.199, - "us-east-2": 0.199, - "us-gov-west-1": 0.263, - "us-west-1": 0.274, + "us-east-2": 0.219, + "us-gov-west-1": 0.0, + "us-west-1": 0.249, "us-west-2": 0.0 }, "c4.2xlarge": { - "ap-northeast-1": 0.504, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.454, "ap-northeast-3": 0.504, "ap-south-1": 0.44, @@ -35143,47 +35143,47 @@ "eu-central-1": 0.454, "eu-west-1": 0.0, "eu-west-2": 0.524, - "sa-east-1": 0.618, - "us-east-1": 0.398, + "sa-east-1": 0.68, + "us-east-1": 0.0, "us-east-2": 0.398, "us-gov-west-1": 0.479, - "us-west-1": 0.498, + "us-west-1": 0.548, "us-west-2": 0.0 }, "c4.4xlarge": { "ap-northeast-1": 1.109, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.907, "ap-northeast-3": 1.008, - "ap-south-1": 0.0, - "ap-southeast-1": 1.016, + "ap-south-1": 0.88, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.042, "ca-central-1": 0.0, "eu-central-1": 0.909, "eu-west-1": 0.996, "eu-west-2": 1.045, - "sa-east-1": 0.0, - "us-east-1": 0.796, + "sa-east-1": 1.359, + "us-east-1": 0.876, "us-east-2": 0.796, - "us-gov-west-1": 0.958, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.876 + "us-west-2": 0.0 }, "c4.8xlarge": { "ap-northeast-1": 2.016, "ap-northeast-2": 0.0, "ap-northeast-3": 2.016, - "ap-south-1": 0.0, + "ap-south-1": 1.6, "ap-southeast-1": 1.848, "ap-southeast-2": 2.085, "ca-central-1": 0.0, "eu-central-1": 1.817, - "eu-west-1": 0.0, + "eu-west-1": 1.811, "eu-west-2": 0.0, "sa-east-1": 2.47, "us-east-1": 0.0, "us-east-2": 1.591, "us-gov-west-1": 1.915, - "us-west-1": 1.993, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c5": { @@ -35199,6 +35199,7 @@ "ap-southeast-3": 3.881, "ap-southeast-4": 4.396, "ca-central-1": 3.683, + "ca-west-1": 3.683, "eu-central-1": 3.841, "eu-central-2": 5.634, "eu-north-1": 3.604, @@ -35220,18 +35221,19 @@ "us-west-2-lax-1": 4.039 }, "c5.large": { - "af-south-1": 0.121, + "af-south-1": 0.0, "ap-east-1": 0.115, "ap-northeast-1": 0.107, "ap-northeast-2": 0.102, "ap-northeast-3": 0.0, - "ap-south-1": 0.085, + "ap-south-1": 0.09, "ap-south-2": 0.09, "ap-southeast-1": 0.098, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.098, + "ap-southeast-2": 0.111, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.099, + "ca-central-1": 0.093, + "ca-west-1": 0.099, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.091, @@ -35240,42 +35242,43 @@ "eu-west-1": 0.096, "eu-west-2": 0.101, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.101, "me-central-1": 0.106, - "me-south-1": 0.113, + "me-south-1": 0.106, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.085, "us-east-2": 0.0, "us-gov-east-1": 0.102, - "us-gov-west-1": 0.102, + "us-gov-west-1": 0.108, "us-west-1": 0.113, "us-west-2": 0.0, - "us-west-2-lax-1": 0.108 + "us-west-2-lax-1": 0.102 }, "c5.xlarge": { "af-south-1": 0.228, "ap-east-1": 0.216, "ap-northeast-1": 0.229, "ap-northeast-2": 0.204, - "ap-northeast-3": 0.214, + "ap-northeast-3": 0.227, "ap-south-1": 0.0, "ap-south-2": 0.18, "ap-southeast-1": 0.0, "ap-southeast-2": 0.222, - "ap-southeast-3": 0.208, + "ap-southeast-3": 0.196, "ap-southeast-4": 0.222, - "ca-central-1": 0.198, + "ca-central-1": 0.0, + "ca-west-1": 0.197, "eu-central-1": 0.0, "eu-central-2": 0.226, "eu-north-1": 0.182, "eu-south-1": 0.214, - "eu-south-2": 0.192, + "eu-south-2": 0.204, "eu-west-1": 0.192, "eu-west-2": 0.0, - "eu-west-3": 0.202, + "eu-west-3": 0.215, "il-central-1": 0.214, - "me-central-1": 0.224, - "me-south-1": 0.211, + "me-central-1": 0.0, + "me-south-1": 0.225, "sa-east-1": 0.0, "us-east-1": 0.17, "us-east-2": 0.17, @@ -35286,18 +35289,19 @@ "us-west-2-lax-1": 0.0 }, "c5.metal": { - "af-south-1": 0.0, - "ap-east-1": 5.184, + "af-south-1": 5.472, + "ap-east-1": 0.0, "ap-northeast-1": 5.136, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.136, "ap-south-1": 4.08, "ap-south-2": 4.08, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 4.704, - "ap-southeast-4": 5.328, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 4.656, "eu-central-2": 5.122, "eu-north-1": 0.0, @@ -35307,67 +35311,69 @@ "eu-west-2": 0.0, "eu-west-3": 4.848, "il-central-1": 4.838, - "me-central-1": 0.0, + "me-central-1": 5.069, "me-south-1": 5.069, - "sa-east-1": 6.288, + "sa-east-1": 0.0, "us-east-1": 4.08, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.896, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 4.08, "us-west-2-lax-1": 4.896 }, "c5.2xlarge": { "af-south-1": 0.483, - "ap-east-1": 0.0, + "ap-east-1": 0.432, "ap-northeast-1": 0.457, "ap-northeast-2": 0.409, "ap-northeast-3": 0.0, "ap-south-1": 0.362, "ap-south-2": 0.34, - "ap-southeast-1": 0.392, + "ap-southeast-1": 0.417, "ap-southeast-2": 0.444, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.444, - "ca-central-1": 0.372, - "eu-central-1": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.396, + "ca-west-1": 0.394, + "eu-central-1": 0.413, "eu-central-2": 0.0, "eu-north-1": 0.364, - "eu-south-1": 0.0, - "eu-south-2": 0.384, + "eu-south-1": 0.404, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.404, "eu-west-3": 0.404, "il-central-1": 0.427, - "me-central-1": 0.448, + "me-central-1": 0.0, "me-south-1": 0.422, "sa-east-1": 0.56, - "us-east-1": 0.34, - "us-east-2": 0.361, - "us-gov-east-1": 0.408, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.34, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.433, + "us-west-1": 0.424, + "us-west-2": 0.0, "us-west-2-lax-1": 0.408 }, "c5.4xlarge": { - "af-south-1": 0.967, - "ap-east-1": 0.0, + "af-south-1": 0.912, + "ap-east-1": 0.919, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.818, "ap-northeast-3": 0.907, "ap-south-1": 0.68, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.942, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.888, - "ca-central-1": 0.792, + "ap-southeast-1": 0.834, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.784, + "ap-southeast-4": 0.941, + "ca-central-1": 0.744, + "ca-west-1": 0.0, "eu-central-1": 0.776, "eu-central-2": 0.854, "eu-north-1": 0.0, - "eu-south-1": 0.808, + "eu-south-1": 0.856, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.861, @@ -35375,80 +35381,82 @@ "il-central-1": 0.806, "me-central-1": 0.895, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 1.119, "us-east-1": 0.68, "us-east-2": 0.721, "us-gov-east-1": 0.865, "us-gov-west-1": 0.865, - "us-west-1": 0.848, + "us-west-1": 0.0, "us-west-2": 0.68, - "us-west-2-lax-1": 0.816 + "us-west-2-lax-1": 0.865 }, "c5.9xlarge": { "af-south-1": 2.175, - "ap-east-1": 1.944, + "ap-east-1": 0.0, "ap-northeast-1": 1.926, "ap-northeast-2": 0.0, "ap-northeast-3": 2.042, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 1.53, "ap-southeast-1": 1.764, "ap-southeast-2": 2.119, "ap-southeast-3": 1.87, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 1.674, + "ca-west-1": 1.774, "eu-central-1": 1.746, - "eu-central-2": 1.921, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 1.818, - "eu-south-2": 1.728, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-south-2": 1.832, + "eu-west-1": 1.841, + "eu-west-2": 1.937, "eu-west-3": 1.818, - "il-central-1": 1.923, - "me-central-1": 1.901, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 1.622, - "us-gov-east-1": 0.0, + "il-central-1": 1.814, + "me-central-1": 2.015, + "me-south-1": 2.025, + "sa-east-1": 2.518, + "us-east-1": 1.53, + "us-east-2": 1.53, + "us-gov-east-1": 1.946, "us-gov-west-1": 1.946, - "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 1.836 + "us-west-1": 2.032, + "us-west-2": 1.622, + "us-west-2-lax-1": 0.0 }, "c5.12xlarge": { - "af-south-1": 2.736, - "ap-east-1": 2.748, + "af-south-1": 0.0, + "ap-east-1": 2.592, "ap-northeast-1": 0.0, "ap-northeast-2": 2.304, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.722, "ap-south-1": 2.171, - "ap-south-2": 2.162, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.826, + "ap-southeast-2": 2.664, "ap-southeast-3": 2.352, "ap-southeast-4": 0.0, "ca-central-1": 2.232, - "eu-central-1": 2.328, + "ca-west-1": 2.232, + "eu-central-1": 0.0, "eu-central-2": 2.561, - "eu-north-1": 2.327, - "eu-south-1": 2.569, + "eu-north-1": 2.184, + "eu-south-1": 2.424, "eu-south-2": 2.304, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 2.583, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 2.534, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 3.144, - "us-east-1": 2.162, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 2.595, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.448, "us-west-1": 2.71, - "us-west-2": 2.04, - "us-west-2-lax-1": 2.596 + "us-west-2": 0.0, + "us-west-2-lax-1": 2.448 }, "c5.18xlarge": { "af-south-1": 4.104, @@ -35459,13 +35467,14 @@ "ap-south-1": 3.06, "ap-south-2": 3.06, "ap-southeast-1": 3.528, - "ap-southeast-2": 3.996, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 3.348, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 3.841, - "eu-north-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 3.276, "eu-south-1": 3.636, "eu-south-2": 3.456, "eu-west-1": 0.0, @@ -35480,40 +35489,41 @@ "us-gov-east-1": 3.672, "us-gov-west-1": 3.672, "us-west-1": 0.0, - "us-west-2": 3.06, + "us-west-2": 0.0, "us-west-2-lax-1": 3.672 }, "c5.24xlarge": { - "af-south-1": 5.8, - "ap-east-1": 5.184, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 5.136, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.608, "ap-northeast-3": 5.136, "ap-south-1": 0.0, "ap-south-2": 4.08, - "ap-southeast-1": 4.704, + "ap-southeast-1": 5.006, "ap-southeast-2": 5.651, - "ap-southeast-3": 4.704, + "ap-southeast-3": 0.0, "ap-southeast-4": 5.328, "ca-central-1": 0.0, - "eu-central-1": 4.962, + "ca-west-1": 4.464, + "eu-central-1": 0.0, "eu-central-2": 5.122, "eu-north-1": 0.0, "eu-south-1": 4.848, "eu-south-2": 4.608, "eu-west-1": 4.91, - "eu-west-2": 0.0, + "eu-west-2": 5.166, "eu-west-3": 4.848, "il-central-1": 4.838, "me-central-1": 5.069, "me-south-1": 5.069, - "sa-east-1": 6.288, + "sa-east-1": 0.0, "us-east-1": 4.08, "us-east-2": 4.325, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 5.42, - "us-west-2": 4.325, + "us-west-2": 4.08, "us-west-2-lax-1": 5.192 }, "c5a.large": { @@ -35845,29 +35855,29 @@ }, "c5d.large": { "af-south-1": 0.13, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 0.123, + "ap-northeast-1": 0.122, "ap-northeast-2": 0.0, "ap-northeast-3": 0.122, - "ap-south-1": 0.0, + "ap-south-1": 0.105, "ap-south-2": 0.099, "ap-southeast-1": 0.119, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.134, + "ap-southeast-3": 0.112, "ap-southeast-4": 0.126, - "ca-central-1": 0.106, + "ca-central-1": 0.113, "eu-central-1": 0.0, "eu-central-2": 0.129, "eu-north-1": 0.111, "eu-south-1": 0.121, "eu-south-2": 0.109, - "eu-west-1": 0.0, + "eu-west-1": 0.116, "eu-west-2": 0.0, - "eu-west-3": 0.123, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.114, "me-central-1": 0.127, - "me-south-1": 0.0, - "sa-east-1": 0.159, + "me-south-1": 0.12, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.123, @@ -35876,36 +35886,36 @@ "us-west-2": 0.102 }, "c5d.xlarge": { - "af-south-1": 0.276, - "ap-east-1": 0.246, + "af-south-1": 0.26, + "ap-east-1": 0.0, "ap-northeast-1": 0.261, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.234, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.21, "ap-southeast-1": 0.224, "ap-southeast-2": 0.267, "ap-southeast-3": 0.224, - "ap-southeast-4": 0.267, + "ap-southeast-4": 0.0, "ca-central-1": 0.212, "eu-central-1": 0.0, - "eu-central-2": 0.244, - "eu-north-1": 0.208, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 0.228, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.23, + "eu-west-1": 0.232, + "eu-west-2": 0.245, + "eu-west-3": 0.0, "il-central-1": 0.243, "me-central-1": 0.0, - "me-south-1": 0.24, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.192, "us-gov-east-1": 0.246, "us-gov-west-1": 0.232, - "us-west-1": 0.24, - "us-west-2": 0.0 + "us-west-1": 0.256, + "us-west-2": 0.192 }, "c5d.metal": { "af-south-1": 6.24, @@ -35920,7 +35930,7 @@ "ap-southeast-4": 6.048, "ca-central-1": 0.0, "eu-central-1": 5.328, - "eu-central-2": 5.861, + "eu-central-2": 0.0, "eu-north-1": 4.992, "eu-south-1": 0.0, "eu-south-2": 5.232, @@ -35941,83 +35951,83 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.396, - "ap-south-2": 0.0, + "ap-south-1": 0.421, + "ap-south-2": 0.42, "ap-southeast-1": 0.477, "ap-southeast-2": 0.504, - "ap-southeast-3": 0.448, - "ap-southeast-4": 0.534, + "ap-southeast-3": 0.475, + "ap-southeast-4": 0.0, "ca-central-1": 0.424, "eu-central-1": 0.444, - "eu-central-2": 0.488, - "eu-north-1": 0.443, + "eu-central-2": 0.518, + "eu-north-1": 0.0, "eu-south-1": 0.483, "eu-south-2": 0.462, - "eu-west-1": 0.436, + "eu-west-1": 0.0, "eu-west-2": 0.46, "eu-west-3": 0.49, "il-central-1": 0.0, "me-central-1": 0.48, "me-south-1": 0.511, - "sa-east-1": 0.636, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.492, + "sa-east-1": 0.596, + "us-east-1": 0.384, + "us-east-2": 0.407, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.511, "us-west-2": 0.0 }, "c5d.4xlarge": { "af-south-1": 1.04, "ap-east-1": 1.047, "ap-northeast-1": 1.042, - "ap-northeast-2": 0.88, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.035, "ap-south-1": 0.792, "ap-south-2": 0.84, - "ap-southeast-1": 0.896, + "ap-southeast-1": 0.953, "ap-southeast-2": 0.0, "ap-southeast-3": 0.896, "ap-southeast-4": 1.008, - "ca-central-1": 0.0, + "ca-central-1": 0.848, "eu-central-1": 0.0, "eu-central-2": 1.035, - "eu-north-1": 0.832, - "eu-south-1": 0.912, - "eu-south-2": 0.924, - "eu-west-1": 0.0, + "eu-north-1": 0.887, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.872, "eu-west-2": 0.98, "eu-west-3": 0.92, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 1.273, - "us-east-1": 0.0, + "me-south-1": 1.022, + "sa-east-1": 1.192, + "us-east-1": 0.768, "us-east-2": 0.768, "us-gov-east-1": 0.984, - "us-gov-west-1": 0.928, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 1.023, "us-west-2": 0.768 }, "c5d.9xlarge": { - "af-south-1": 2.34, + "af-south-1": 0.0, "ap-east-1": 2.214, "ap-northeast-1": 0.0, "ap-northeast-2": 2.107, - "ap-northeast-3": 2.328, + "ap-northeast-3": 2.196, "ap-south-1": 0.0, "ap-south-2": 1.782, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.016, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.404, "ca-central-1": 0.0, - "eu-central-1": 1.998, - "eu-central-2": 2.33, - "eu-north-1": 0.0, - "eu-south-1": 2.052, + "eu-central-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 1.872, + "eu-south-1": 0.0, "eu-south-2": 2.08, - "eu-west-1": 1.962, + "eu-west-1": 2.091, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 2.06, @@ -36032,19 +36042,19 @@ "us-west-2": 1.728 }, "c5d.12xlarge": { - "af-south-1": 3.12, + "af-south-1": 0.0, "ap-northeast-1": 2.928, "ap-northeast-2": 2.64, "ap-northeast-3": 2.928, "ap-south-1": 2.376, - "ap-south-2": 2.376, + "ap-south-2": 2.519, "ap-southeast-1": 2.688, - "ap-southeast-2": 3.024, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.688, "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 2.664, - "eu-central-2": 0.0, + "eu-central-2": 2.93, "eu-north-1": 2.496, "eu-south-1": 2.9, "eu-south-2": 2.773, @@ -36055,7 +36065,7 @@ "sa-east-1": 3.576, "us-east-1": 2.304, "us-east-2": 2.304, - "us-gov-west-1": 2.784, + "us-gov-west-1": 0.0, "us-west-1": 2.88, "us-west-2": 2.304 }, @@ -36066,29 +36076,29 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 4.392, "ap-south-1": 3.564, - "ap-south-2": 0.0, + "ap-south-2": 3.564, "ap-southeast-1": 4.032, "ap-southeast-2": 4.536, - "ap-southeast-3": 4.032, + "ap-southeast-3": 0.0, "ap-southeast-4": 4.536, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 3.816, + "eu-central-1": 3.996, "eu-central-2": 4.396, "eu-north-1": 3.744, - "eu-south-1": 0.0, + "eu-south-1": 4.104, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 4.14, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 4.12, "me-central-1": 4.316, - "me-south-1": 4.316, + "me-south-1": 0.0, "sa-east-1": 5.364, "us-east-1": 3.456, - "us-east-2": 3.456, + "us-east-2": 0.0, "us-gov-east-1": 4.176, "us-gov-west-1": 4.176, - "us-west-1": 0.0, + "us-west-1": 4.32, "us-west-2": 3.456 }, "c5d.24xlarge": { @@ -36108,14 +36118,14 @@ "eu-north-1": 4.992, "eu-south-1": 5.472, "eu-south-2": 5.232, - "eu-west-1": 5.576, - "eu-west-2": 5.52, - "il-central-1": 0.0, - "me-central-1": 6.101, + "eu-west-1": 5.232, + "eu-west-2": 0.0, + "il-central-1": 5.823, + "me-central-1": 0.0, "sa-east-1": 7.152, "us-east-1": 4.608, "us-east-2": 4.608, - "us-gov-west-1": 5.568, + "us-gov-west-1": 0.0, "us-west-1": 5.76, "us-west-2": 4.608 }, @@ -36143,14 +36153,14 @@ "us-west-2": 4.277 }, "c5n.large": { - "af-south-1": 0.154, - "ap-east-1": 0.143, - "ap-northeast-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 0.136, "ap-northeast-2": 0.0, "ap-northeast-3": 0.144, - "ap-south-1": 0.0, + "ap-south-1": 0.115, "ap-southeast-1": 0.132, - "ap-southeast-2": 0.15, + "ap-southeast-2": 0.141, "ap-southeast-3": 0.131, "ca-central-1": 0.118, "eu-central-1": 0.131, @@ -36160,8 +36170,8 @@ "eu-west-2": 0.128, "eu-west-3": 0.128, "me-south-1": 0.134, - "sa-east-1": 0.0, - "us-east-1": 0.108, + "sa-east-1": 0.166, + "us-east-1": 0.114, "us-east-2": 0.0, "us-gov-east-1": 0.13, "us-gov-west-1": 0.0, @@ -36170,46 +36180,46 @@ }, "c5n.xlarge": { "af-south-1": 0.308, - "ap-east-1": 0.286, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-east-1": 0.303, + "ap-northeast-1": 0.272, + "ap-northeast-2": 0.244, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.248, + "ap-southeast-1": 0.264, "ap-southeast-2": 0.282, - "ap-southeast-3": 0.248, - "ca-central-1": 0.251, + "ap-southeast-3": 0.0, + "ca-central-1": 0.236, "eu-central-1": 0.246, - "eu-north-1": 0.246, + "eu-north-1": 0.232, "eu-south-1": 0.258, "eu-west-1": 0.26, - "eu-west-2": 0.256, + "eu-west-2": 0.0, "eu-west-3": 0.256, "me-south-1": 0.268, "sa-east-1": 0.352, "us-east-1": 0.216, - "us-east-2": 0.216, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.27, "us-west-2": 0.216 }, "c5n.metal": { "af-south-1": 5.227, "ap-east-1": 5.148, - "ap-northeast-1": 4.896, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.392, "ap-northeast-3": 0.0, "ap-south-1": 3.888, "ap-southeast-1": 4.464, "ap-southeast-2": 5.076, - "ap-southeast-3": 4.464, + "ap-southeast-3": 0.0, "ca-central-1": 4.248, "eu-central-1": 4.428, "eu-north-1": 4.176, "eu-south-1": 4.644, "eu-west-1": 4.392, - "eu-west-2": 4.608, + "eu-west-2": 0.0, "eu-west-3": 4.608, "me-south-1": 4.824, "sa-east-1": 5.976, @@ -36223,16 +36233,16 @@ "c5n.2xlarge": { "af-south-1": 0.616, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.581, "ap-northeast-2": 0.52, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.577, "ap-south-1": 0.432, "ap-southeast-1": 0.496, "ap-southeast-2": 0.598, "ap-southeast-3": 0.526, - "ca-central-1": 0.502, + "ca-central-1": 0.472, "eu-central-1": 0.492, - "eu-north-1": 0.492, + "eu-north-1": 0.464, "eu-south-1": 0.516, "eu-west-1": 0.0, "eu-west-2": 0.512, @@ -36243,12 +36253,12 @@ "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.575, + "us-west-1": 0.54, "us-west-2": 0.432 }, "c5n.4xlarge": { "af-south-1": 1.231, - "ap-east-1": 1.144, + "ap-east-1": 1.213, "ap-northeast-1": 0.0, "ap-northeast-2": 0.976, "ap-northeast-3": 0.0, @@ -36260,43 +36270,43 @@ "eu-central-1": 0.984, "eu-north-1": 0.984, "eu-south-1": 1.032, - "eu-west-1": 0.0, + "eu-west-1": 1.04, "eu-west-2": 1.085, "eu-west-3": 1.024, "me-south-1": 1.072, - "sa-east-1": 1.328, - "us-east-1": 0.864, - "us-east-2": 0.916, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 1.04, - "us-gov-west-1": 1.04, + "us-gov-west-1": 1.103, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.916 }, "c5n.9xlarge": { - "af-south-1": 2.614, - "ap-east-1": 2.574, + "af-south-1": 0.0, + "ap-east-1": 2.728, "ap-northeast-1": 2.448, "ap-northeast-2": 2.196, "ap-northeast-3": 2.448, - "ap-south-1": 0.0, + "ap-south-1": 2.069, "ap-southeast-1": 2.375, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 2.26, - "eu-central-1": 2.214, + "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 2.322, "eu-west-1": 0.0, - "eu-west-2": 2.304, + "eu-west-2": 0.0, "eu-west-3": 2.304, "me-south-1": 2.412, - "sa-east-1": 2.988, + "sa-east-1": 3.167, "us-east-1": 1.944, "us-east-2": 2.061, - "us-gov-east-1": 2.34, + "us-gov-east-1": 2.481, "us-gov-west-1": 2.34, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.061 }, "c5n.18xlarge": { "af-south-1": 0.0, @@ -36304,24 +36314,24 @@ "ap-northeast-1": 4.896, "ap-northeast-2": 4.392, "ap-northeast-3": 4.896, - "ap-south-1": 3.888, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 5.076, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.464, "ca-central-1": 4.248, - "eu-central-1": 4.428, + "eu-central-1": 0.0, "eu-north-1": 4.176, "eu-south-1": 4.644, "eu-west-1": 4.392, "eu-west-2": 4.608, "eu-west-3": 4.608, "me-south-1": 4.824, - "sa-east-1": 0.0, + "sa-east-1": 5.976, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.68, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 4.86, "us-west-2": 3.888 }, "c6a": { @@ -36329,6 +36339,7 @@ "ap-south-1": 4.937, "ap-southeast-1": 9.314, "ap-southeast-2": 10.549, + "ca-central-1": 8.839, "eu-central-1": 9.219, "eu-west-1": 8.668, "eu-west-2": 9.599, @@ -36341,27 +36352,29 @@ "c6a.large": { "ap-northeast-1": 0.10593, "ap-south-1": 0.05143, - "ap-southeast-1": 0.0882, + "ap-southeast-1": 0.09702, "ap-southeast-2": 0.10989, - "eu-central-1": 0.09603, + "ca-central-1": 0.09207, + "eu-central-1": 0.0, "eu-west-1": 0.09029, - "eu-west-2": 0.0, + "eu-west-2": 0.0909, "sa-east-1": 0.1179, "us-east-1": 0.0765, "us-east-2": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.0954, "us-west-2": 0.08415 }, "c6a.xlarge": { "ap-northeast-1": 0.21186, - "ap-south-1": 0.0, + "ap-south-1": 0.10285, "ap-southeast-1": 0.19404, - "ap-southeast-2": 0.21978, + "ap-southeast-2": 0.1998, + "ca-central-1": 0.18414, "eu-central-1": 0.0, "eu-west-1": 0.18058, "eu-west-2": 0.19998, "sa-east-1": 0.2358, - "us-east-1": 0.1683, + "us-east-1": 0.153, "us-east-2": 0.0, "us-west-1": 0.1908, "us-west-2": 0.153 @@ -36371,6 +36384,7 @@ "ap-south-1": 4.488, "ap-southeast-1": 8.4672, "ap-southeast-2": 0.0, + "ca-central-1": 8.0352, "eu-central-1": 8.3808, "eu-west-1": 7.87968, "eu-west-2": 8.7264, @@ -36383,29 +36397,31 @@ "c6a.2xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.2057, - "ap-southeast-1": 0.3528, + "ap-southeast-1": 0.38808, "ap-southeast-2": 0.0, + "ca-central-1": 0.36828, "eu-central-1": 0.38412, - "eu-west-1": 0.32832, - "eu-west-2": 0.39996, - "sa-east-1": 0.0, + "eu-west-1": 0.36115, + "eu-west-2": 0.0, + "sa-east-1": 0.51876, "us-east-1": 0.3366, "us-east-2": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.41976, "us-west-2": 0.0 }, "c6a.4xlarge": { "ap-northeast-1": 0.84744, "ap-south-1": 0.4114, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.7056, "ap-southeast-2": 0.0, + "ca-central-1": 0.6696, "eu-central-1": 0.76824, "eu-west-1": 0.0, "eu-west-2": 0.7272, "sa-east-1": 1.03752, - "us-east-1": 0.612, - "us-east-2": 0.0, - "us-west-1": 0.7632, + "us-east-1": 0.0, + "us-east-2": 0.6732, + "us-west-1": 0.83952, "us-west-2": 0.6732 }, "c6a.8xlarge": { @@ -36413,27 +36429,29 @@ "ap-south-1": 0.8228, "ap-southeast-1": 1.55232, "ap-southeast-2": 1.5984, - "eu-central-1": 1.53648, - "eu-west-1": 1.31328, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 1.44461, "eu-west-2": 0.0, "sa-east-1": 1.8864, "us-east-1": 1.224, - "us-east-2": 1.224, + "us-east-2": 1.3464, "us-west-1": 1.67904, - "us-west-2": 0.0 + "us-west-2": 1.3464 }, "c6a.12xlarge": { "ap-northeast-1": 2.54232, "ap-south-1": 1.2342, - "ap-southeast-1": 2.32848, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 2.0088, "eu-central-1": 2.0952, "eu-west-1": 1.96992, "eu-west-2": 2.1816, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 1.836, - "us-west-1": 2.2896, + "sa-east-1": 3.11256, + "us-east-1": 1.836, + "us-east-2": 2.0196, + "us-west-1": 0.0, "us-west-2": 1.836 }, "c6a.16xlarge": { @@ -36441,25 +36459,27 @@ "ap-south-1": 0.0, "ap-southeast-1": 3.10464, "ap-southeast-2": 3.1968, + "ca-central-1": 2.6784, "eu-central-1": 0.0, - "eu-west-1": 2.88922, + "eu-west-1": 0.0, "eu-west-2": 2.9088, - "sa-east-1": 3.7728, + "sa-east-1": 4.15008, "us-east-1": 2.6928, "us-east-2": 0.0, - "us-west-1": 3.35808, + "us-west-1": 0.0, "us-west-2": 2.448 }, "c6a.24xlarge": { "ap-northeast-1": 4.6224, "ap-south-1": 2.244, - "ap-southeast-1": 4.2336, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.27472, + "ca-central-1": 4.41936, "eu-central-1": 4.1904, "eu-west-1": 0.0, - "eu-west-2": 4.3632, - "sa-east-1": 6.22512, - "us-east-1": 0.0, + "eu-west-2": 4.79952, + "sa-east-1": 5.6592, + "us-east-1": 4.0392, "us-east-2": 4.0392, "us-west-1": 4.5792, "us-west-2": 4.0392 @@ -36468,31 +36488,34 @@ "ap-northeast-1": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 5.6448, - "ap-southeast-2": 7.03296, - "eu-central-1": 5.5872, + "ap-southeast-2": 0.0, + "ca-central-1": 5.3568, + "eu-central-1": 6.14592, "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 7.5456, + "sa-east-1": 8.30016, "us-east-1": 0.0, - "us-east-2": 4.896, + "us-east-2": 5.3856, "us-west-1": 6.1056, - "us-west-2": 0.0 + "us-west-2": 5.3856 }, "c6a.48xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 0.0, + "ap-northeast-1": 9.2448, + "ap-south-1": 4.488, "ap-southeast-1": 8.4672, "ap-southeast-2": 9.5904, + "ca-central-1": 0.0, "eu-central-1": 8.3808, - "eu-west-1": 0.0, + "eu-west-1": 7.87968, "eu-west-2": 8.7264, - "sa-east-1": 11.3184, + "sa-east-1": 0.0, "us-east-1": 7.344, "us-east-2": 7.344, "us-west-1": 9.1584, "us-west-2": 0.0 }, "c6g": { + "af-south-1": 3.21, "ap-east-1": 3.027, "ap-northeast-1": 3.013, "ap-northeast-2": 2.71, @@ -36504,6 +36527,7 @@ "ap-southeast-3": 2.76, "ap-southeast-4": 3.126, "ca-central-1": 2.619, + "ca-west-1": 2.619, "eu-central-1": 2.732, "eu-central-2": 3.005, "eu-north-1": 2.57, @@ -36524,19 +36548,21 @@ "us-west-2": 2.394 }, "c6g.medium": { + "af-south-1": 0.0456, "ap-east-1": 0.043, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0408, "ap-northeast-3": 0.043, "ap-south-1": 0.0, - "ap-south-2": 0.0226, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0444, + "ap-southeast-4": 0.0, "ca-central-1": 0.0372, + "ca-west-1": 0.0394, "eu-central-1": 0.0, - "eu-central-2": 0.0427, + "eu-central-2": 0.0, "eu-north-1": 0.0365, "eu-south-1": 0.0, "eu-south-2": 0.0365, @@ -36544,52 +36570,55 @@ "eu-west-2": 0.0428, "eu-west-3": 0.0, "il-central-1": 0.0407, - "me-central-1": 0.0, - "me-south-1": 0.0451, + "me-central-1": 0.0427, + "me-south-1": 0.0, "sa-east-1": 0.0524, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0408, + "us-gov-east-1": 0.0432, "us-gov-west-1": 0.0408, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.034 }, "c6g.large": { - "ap-east-1": 0.0, + "af-south-1": 0.0912, + "ap-east-1": 0.0912, "ap-northeast-1": 0.0907, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0911, + "ap-northeast-2": 0.0816, + "ap-northeast-3": 0.0, "ap-south-1": 0.0452, "ap-south-2": 0.0, "ap-southeast-1": 0.0831, "ap-southeast-2": 0.0888, "ap-southeast-3": 0.0784, - "ap-southeast-4": 0.0941, - "ca-central-1": 0.0744, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0789, + "ca-west-1": 0.0744, "eu-central-1": 0.0823, "eu-central-2": 0.0, - "eu-north-1": 0.073, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.0776, - "eu-west-1": 0.0776, - "eu-west-2": 0.0856, + "eu-west-1": 0.073, + "eu-west-2": 0.0, "eu-west-3": 0.081, "il-central-1": 0.0766, "me-central-1": 0.0803, "me-south-1": 0.085, "sa-east-1": 0.0, - "us-east-1": 0.068, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0816, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.0816, "us-west-1": 0.0899, "us-west-2": 0.068 }, "c6g.xlarge": { + "af-south-1": 0.0, "ap-east-1": 0.1824, "ap-northeast-1": 0.1712, "ap-northeast-2": 0.154, - "ap-northeast-3": 0.172, + "ap-northeast-3": 0.0, "ap-south-1": 0.0903, "ap-south-2": 0.0852, "ap-southeast-1": 0.0, @@ -36597,92 +36626,98 @@ "ap-southeast-3": 0.1568, "ap-southeast-4": 0.1883, "ca-central-1": 0.1577, + "ca-west-1": 0.0, "eu-central-1": 0.1645, - "eu-central-2": 0.0, + "eu-central-2": 0.1707, "eu-north-1": 0.146, "eu-south-1": 0.1616, - "eu-south-2": 0.0, - "eu-west-1": 0.1551, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-south-2": 0.1459, + "eu-west-1": 0.0, + "eu-west-2": 0.1713, + "eu-west-3": 0.162, "il-central-1": 0.1532, - "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 0.2096, - "us-east-1": 0.1442, + "me-central-1": 0.1605, + "me-south-1": 0.17, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.1442, - "us-gov-east-1": 0.1632, + "us-gov-east-1": 0.173, "us-gov-west-1": 0.1632, "us-west-1": 0.0, - "us-west-2": 0.1442 + "us-west-2": 0.0 }, "c6g.metal": { + "af-south-1": 2.9184, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 2.6112, + "ap-northeast-2": 0.0, "ap-northeast-3": 2.752, - "ap-south-1": 1.445, + "ap-south-1": 0.0, "ap-south-2": 1.3632, "ap-southeast-1": 2.6593, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 2.5236, + "ca-west-1": 2.3808, "eu-central-1": 0.0, "eu-central-2": 2.7315, "eu-north-1": 2.336, "eu-south-1": 2.5856, - "eu-south-2": 2.3347, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 2.7407, - "eu-west-3": 2.7456, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.176, - "us-gov-east-1": 2.6112, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 2.8764, "us-west-2": 2.3066 }, "c6g.2xlarge": { + "af-south-1": 0.3867, "ap-east-1": 0.0, - "ap-northeast-1": 0.3629, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.308, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.3644, "ap-south-1": 0.1806, - "ap-south-2": 0.1704, - "ap-southeast-1": 0.3136, - "ap-southeast-2": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.3324, + "ap-southeast-2": 0.3765, "ap-southeast-3": 0.0, "ap-southeast-4": 0.3765, "ca-central-1": 0.2976, + "ca-west-1": 0.3155, "eu-central-1": 0.0, - "eu-central-2": 0.3414, - "eu-north-1": 0.0, - "eu-south-1": 0.3232, + "eu-central-2": 0.0, + "eu-north-1": 0.3096, + "eu-south-1": 0.3426, "eu-south-2": 0.3102, "eu-west-1": 0.3102, - "eu-west-2": 0.3232, + "eu-west-2": 0.3426, "eu-west-3": 0.324, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.34, "sa-east-1": 0.4444, "us-east-1": 0.0, - "us-east-2": 0.272, + "us-east-2": 0.2883, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.3264, "us-west-1": 0.0, - "us-west-2": 0.272 + "us-west-2": 0.2883 }, "c6g.4xlarge": { + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.688, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, @@ -36690,14 +36725,15 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.7104, "ca-central-1": 0.6309, - "eu-central-1": 0.6208, + "ca-west-1": 0.0, + "eu-central-1": 0.658, "eu-central-2": 0.0, "eu-north-1": 0.584, "eu-south-1": 0.6464, "eu-south-2": 0.6205, "eu-west-1": 0.0, - "eu-west-2": 0.6852, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.6864, "il-central-1": 0.6128, "me-central-1": 0.6826, "me-south-1": 0.68, @@ -36705,22 +36741,24 @@ "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.6528, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.692, "us-west-1": 0.7191, "us-west-2": 0.5766 }, "c6g.8xlarge": { - "ap-east-1": 1.4592, - "ap-northeast-1": 1.4518, + "af-south-1": 1.5468, + "ap-east-1": 1.376, + "ap-northeast-1": 1.3696, "ap-northeast-2": 0.0, "ap-northeast-3": 1.4576, - "ap-south-1": 0.0, + "ap-south-1": 0.7225, "ap-south-2": 0.6816, "ap-southeast-1": 1.3297, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.4208, "ap-southeast-3": 1.3297, - "ap-southeast-4": 1.506, + "ap-southeast-4": 1.4208, "ca-central-1": 1.1904, + "ca-west-1": 0.0, "eu-central-1": 1.3161, "eu-central-2": 0.0, "eu-north-1": 1.168, @@ -36728,78 +36766,82 @@ "eu-south-2": 0.0, "eu-west-1": 1.241, "eu-west-2": 1.3704, - "eu-west-3": 0.0, + "eu-west-3": 1.3728, "il-central-1": 1.2256, "me-central-1": 0.0, "me-south-1": 1.4416, "sa-east-1": 0.0, "us-east-1": 1.1533, - "us-east-2": 1.088, + "us-east-2": 0.0, "us-gov-east-1": 1.3056, - "us-gov-west-1": 1.3056, + "us-gov-west-1": 1.3839, "us-west-1": 0.0, "us-west-2": 1.1533 }, "c6g.12xlarge": { + "af-south-1": 2.3201, "ap-east-1": 2.064, "ap-northeast-1": 2.0544, "ap-northeast-2": 1.9584, - "ap-northeast-3": 2.064, - "ap-south-1": 1.0224, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 1.0224, - "ap-southeast-1": 1.9945, - "ap-southeast-2": 2.2591, - "ap-southeast-3": 0.0, + "ap-southeast-1": 1.8816, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.8816, "ap-southeast-4": 2.2591, - "ca-central-1": 1.8927, + "ca-central-1": 1.7856, + "ca-west-1": 0.0, "eu-central-1": 1.8624, "eu-central-2": 2.0486, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 1.8614, + "eu-north-1": 1.752, + "eu-south-1": 2.0554, + "eu-south-2": 1.751, "eu-west-1": 0.0, "eu-west-2": 2.0556, - "eu-west-3": 0.0, - "il-central-1": 1.9543, + "eu-west-3": 2.0592, + "il-central-1": 0.0, "me-central-1": 1.9262, "me-south-1": 0.0, "sa-east-1": 2.6661, "us-east-1": 0.0, - "us-east-2": 1.7299, - "us-gov-east-1": 2.0759, - "us-gov-west-1": 0.0, + "us-east-2": 1.632, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.9584, "us-west-1": 2.0352, "us-west-2": 1.7299 }, "c6g.16xlarge": { - "ap-east-1": 2.9184, - "ap-northeast-1": 2.9036, + "af-south-1": 2.9184, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.752, "ap-south-1": 0.0, "ap-south-2": 1.3632, "ap-southeast-1": 2.5088, - "ap-southeast-2": 3.0121, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.5088, "ap-southeast-4": 0.0, - "ca-central-1": 2.5236, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 2.4832, "eu-central-2": 2.7315, "eu-north-1": 0.0, - "eu-south-1": 2.5856, + "eu-south-1": 2.7405, "eu-south-2": 2.3347, - "eu-west-1": 0.0, - "eu-west-2": 2.7407, - "eu-west-3": 0.0, + "eu-west-1": 2.3347, + "eu-west-2": 2.5856, + "eu-west-3": 2.7456, "il-central-1": 0.0, "me-central-1": 2.5683, "me-south-1": 0.0, "sa-east-1": 3.5548, - "us-east-1": 2.176, - "us-east-2": 2.176, + "us-east-1": 2.3066, + "us-east-2": 2.3066, "us-gov-east-1": 2.6112, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 2.7679, + "us-west-1": 2.7136, "us-west-2": 0.0 }, "c6gd": { @@ -36812,6 +36854,7 @@ "ap-southeast-3": 3.168, "ca-central-1": 2.985, "eu-central-1": 3.133, + "eu-central-2": 3.446, "eu-north-1": 2.929, "eu-west-1": 3.069, "eu-west-2": 3.238, @@ -36819,12 +36862,14 @@ "sa-east-1": 4.189, "us-east-1": 2.703, "us-east-2": 2.703, + "us-gov-east-1": 3.267, + "us-gov-west-1": 3.267, "us-west-1": 3.379, "us-west-2": 2.703 }, "c6gd.medium": { - "ap-northeast-1": 0.0519, - "ap-northeast-2": 0.0466, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.044, "ap-northeast-3": 0.052, "ap-south-1": 0.026, "ap-southeast-1": 0.045, @@ -36832,114 +36877,132 @@ "ap-southeast-3": 0.0477, "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0519, "eu-north-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.046, + "eu-west-1": 0.0462, + "eu-west-2": 0.0, "eu-west-3": 0.046, "sa-east-1": 0.0595, - "us-east-1": 0.0384, + "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 0.0492, + "us-gov-west-1": 0.0, "us-west-1": 0.0509, - "us-west-2": 0.0384 + "us-west-2": 0.0407 }, "c6gd.large": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.1039, "ap-south-1": 0.0519, - "ap-southeast-1": 0.09, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.101, "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.089, + "eu-central-1": 0.0, + "eu-central-2": 0.1037, "eu-north-1": 0.0882, - "eu-west-1": 0.0924, + "eu-west-1": 0.0, "eu-west-2": 0.0975, - "eu-west-3": 0.0975, + "eu-west-3": 0.092, "sa-east-1": 0.1262, "us-east-1": 0.0768, "us-east-2": 0.0814, + "us-gov-east-1": 0.0928, + "us-gov-west-1": 0.0984, "us-west-1": 0.0, - "us-west-2": 0.0814 + "us-west-2": 0.0768 }, "c6gd.xlarge": { "ap-northeast-1": 0.196, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.196, + "ap-northeast-3": 0.2078, "ap-south-1": 0.1039, "ap-southeast-1": 0.0, "ap-southeast-2": 0.214, "ap-southeast-3": 0.18, - "ca-central-1": 0.1798, + "ca-central-1": 0.1696, "eu-central-1": 0.1886, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.1849, "eu-west-2": 0.184, "eu-west-3": 0.184, - "sa-east-1": 0.238, + "sa-east-1": 0.0, "us-east-1": 0.1536, "us-east-2": 0.1536, - "us-west-1": 0.0, - "us-west-2": 0.1628 + "us-gov-east-1": 0.1967, + "us-gov-west-1": 0.1967, + "us-west-1": 0.2036, + "us-west-2": 0.1536 }, "c6gd.metal": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.136, + "ap-northeast-3": 0.0, "ap-south-1": 1.6621, "ap-southeast-1": 2.88, "ap-southeast-2": 0.0, "ap-southeast-3": 2.88, "ca-central-1": 2.7136, "eu-central-1": 2.848, - "eu-north-1": 2.6624, - "eu-west-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 2.9578, "eu-west-2": 2.944, "eu-west-3": 2.944, "sa-east-1": 3.808, - "us-east-1": 2.4576, - "us-east-2": 2.4576, + "us-east-1": 2.6051, + "us-east-2": 0.0, + "us-gov-east-1": 2.9696, + "us-gov-west-1": 2.9696, "us-west-1": 3.2576, "us-west-2": 2.6051 }, "c6gd.2xlarge": { "ap-northeast-1": 0.392, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.4156, + "ap-northeast-3": 0.392, "ap-south-1": 0.2078, "ap-southeast-1": 0.36, - "ap-southeast-2": 0.404, - "ap-southeast-3": 0.3816, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.36, "ca-central-1": 0.3392, - "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-west-1": 0.3697, - "eu-west-2": 0.368, - "eu-west-3": 0.3901, - "sa-east-1": 0.0, + "eu-central-1": 0.3772, + "eu-central-2": 0.3916, + "eu-north-1": 0.3328, + "eu-west-1": 0.3488, + "eu-west-2": 0.3901, + "eu-west-3": 0.0, + "sa-east-1": 0.476, "us-east-1": 0.3072, "us-east-2": 0.3072, + "us-gov-east-1": 0.3712, + "us-gov-west-1": 0.0, "us-west-1": 0.384, "us-west-2": 0.3072 }, "c6gd.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.7462, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.8312, "ap-south-1": 0.0, - "ap-southeast-1": 0.7632, + "ap-southeast-1": 0.72, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.7632, - "ca-central-1": 0.7191, + "ap-southeast-3": 0.72, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.6656, "eu-west-1": 0.7395, "eu-west-2": 0.736, "eu-west-3": 0.7802, - "sa-east-1": 0.0, + "sa-east-1": 0.952, "us-east-1": 0.0, - "us-east-2": 0.6144, - "us-west-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.8144, "us-west-2": 0.6144 }, "c6gd.8xlarge": { @@ -36950,20 +37013,23 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 1.5264, - "ca-central-1": 1.4382, + "ca-central-1": 0.0, "eu-central-1": 1.5088, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 1.5603, + "eu-west-2": 0.0, "eu-west-3": 1.472, - "sa-east-1": 1.904, + "sa-east-1": 2.0192, "us-east-1": 1.3025, "us-east-2": 0.0, + "us-gov-east-1": 1.5739, + "us-gov-west-1": 1.5739, "us-west-1": 0.0, "us-west-2": 1.3025 }, "c6gd.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.352, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 1.176, @@ -36972,34 +37038,40 @@ "ap-southeast-3": 0.0, "ca-central-1": 2.0352, "eu-central-1": 0.0, + "eu-central-2": 2.4895, "eu-north-1": 2.1166, - "eu-west-1": 2.2184, - "eu-west-2": 2.208, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 3.0288, "us-east-1": 0.0, - "us-east-2": 1.8432, + "us-east-2": 0.0, + "us-gov-east-1": 2.2272, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.8432 + "us-west-2": 1.9538 }, "c6gd.16xlarge": { - "ap-northeast-1": 3.136, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.816, "ap-northeast-3": 3.136, - "ap-south-1": 1.568, + "ap-south-1": 0.0, "ap-southeast-1": 3.0528, - "ap-southeast-2": 3.232, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.88, "ca-central-1": 2.8764, "eu-central-1": 3.0176, - "eu-north-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 2.6624, "eu-west-1": 0.0, "eu-west-2": 2.944, "eu-west-3": 0.0, "sa-east-1": 3.808, - "us-east-1": 2.6051, + "us-east-1": 2.4576, "us-east-2": 2.6051, - "us-west-1": 3.072, + "us-gov-east-1": 2.9696, + "us-gov-west-1": 0.0, + "us-west-1": 3.2576, "us-west-2": 0.0 }, "c6gn": { @@ -37010,7 +37082,9 @@ "ap-south-1": 3.045, "ap-southeast-1": 3.485, "ap-southeast-2": 3.978, + "ap-southeast-3": 3.492, "ca-central-1": 3.33, + "ca-west-1": 3.33, "eu-central-1": 3.471, "eu-north-1": 3.274, "eu-south-1": 3.633, @@ -37022,66 +37096,78 @@ "sa-east-1": 4.682, "us-east-1": 3.041, "us-east-2": 3.041, + "us-gov-east-1": 3.661, + "us-gov-west-1": 3.661, "us-west-1": 3.802, "us-west-2": 3.041 }, "c6gn.medium": { - "ap-east-1": 0.0, - "ap-northeast-1": 0.05995, + "ap-east-1": 0.05725, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.05363, "ap-northeast-3": 0.06007, - "ap-south-1": 0.04325, - "ap-southeast-1": 0.0495, - "ap-southeast-2": 0.0, + "ap-south-1": 0.04758, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0565, + "ap-southeast-3": 0.0, "ca-central-1": 0.05203, + "ca-west-1": 0.0473, "eu-central-1": 0.05423, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 0.05115, + "eu-south-1": 0.05676, "eu-west-1": 0.05368, "eu-west-2": 0.05638, - "eu-west-3": 0.05125, + "eu-west-3": 0.0, "il-central-1": 0.05124, - "me-south-1": 0.05896, + "me-south-1": 0.0536, "sa-east-1": 0.0665, - "us-east-1": 0.04752, - "us-east-2": 0.04752, - "us-west-1": 0.054, + "us-east-1": 0.0432, + "us-east-2": 0.0, + "us-gov-east-1": 0.052, + "us-gov-west-1": 0.052, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gn.large": { "ap-east-1": 0.0, - "ap-northeast-1": 0.1199, + "ap-northeast-1": 0.109, "ap-northeast-2": 0.10725, "ap-northeast-3": 0.12014, "ap-south-1": 0.0865, "ap-southeast-1": 0.0, "ap-southeast-2": 0.113, + "ap-southeast-3": 0.0992, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.093, "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.1025, - "il-central-1": 0.10248, - "me-south-1": 0.11792, + "eu-west-1": 0.0976, + "eu-west-2": 0.1025, + "eu-west-3": 0.0, + "il-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.09504, "us-east-2": 0.09504, + "us-gov-east-1": 0.1144, + "us-gov-west-1": 0.104, "us-west-1": 0.108, "us-west-2": 0.0864 }, "c6gn.xlarge": { - "ap-east-1": 0.2519, + "ap-east-1": 0.0, "ap-northeast-1": 0.218, "ap-northeast-2": 0.0, "ap-northeast-3": 0.24028, "ap-south-1": 0.1903, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2486, + "ap-southeast-3": 0.21824, "ca-central-1": 0.0, + "ca-west-1": 0.20812, "eu-central-1": 0.1972, - "eu-north-1": 0.2046, + "eu-north-1": 0.186, "eu-south-1": 0.2064, "eu-west-1": 0.21472, "eu-west-2": 0.205, @@ -37090,80 +37176,94 @@ "me-south-1": 0.2144, "sa-east-1": 0.266, "us-east-1": 0.19008, - "us-east-2": 0.0, - "us-west-1": 0.2376, - "us-west-2": 0.1728 + "us-east-2": 0.1728, + "us-gov-east-1": 0.208, + "us-gov-west-1": 0.0, + "us-west-1": 0.216, + "us-west-2": 0.19008 }, "c6gn.metal": { "ca-central-1": 0.0, "eu-west-3": 3.608 }, "c6gn.2xlarge": { - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 0.458, + "ap-northeast-1": 0.436, "ap-northeast-2": 0.429, "ap-northeast-3": 0.48057, "ap-south-1": 0.3806, "ap-southeast-1": 0.4356, "ap-southeast-2": 0.4972, - "ca-central-1": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.3784, + "ca-west-1": 0.0, "eu-central-1": 0.3944, "eu-north-1": 0.4092, "eu-south-1": 0.45408, "eu-west-1": 0.0, "eu-west-2": 0.451, "eu-west-3": 0.41, - "il-central-1": 0.0, - "me-south-1": 0.47168, + "il-central-1": 0.40992, + "me-south-1": 0.4288, "sa-east-1": 0.5852, "us-east-1": 0.3456, - "us-east-2": 0.3456, + "us-east-2": 0.0, + "us-gov-east-1": 0.416, + "us-gov-west-1": 0.416, "us-west-1": 0.4752, "us-west-2": 0.0 }, "c6gn.4xlarge": { "ap-east-1": 0.916, - "ap-northeast-1": 0.9592, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.872, + "ap-northeast-2": 0.858, "ap-northeast-3": 0.87376, "ap-south-1": 0.0, - "ap-southeast-1": 0.792, + "ap-southeast-1": 0.8712, "ap-southeast-2": 0.904, - "ca-central-1": 0.0, + "ap-southeast-3": 0.7936, + "ca-central-1": 0.7568, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.8184, "eu-south-1": 0.90816, "eu-west-1": 0.7808, "eu-west-2": 0.0, - "eu-west-3": 0.82, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-south-1": 0.94336, - "sa-east-1": 1.1704, - "us-east-1": 0.76032, + "me-south-1": 0.0, + "sa-east-1": 1.064, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-1": 0.9504, + "us-gov-east-1": 0.9152, + "us-gov-west-1": 0.9152, + "us-west-1": 0.864, "us-west-2": 0.0 }, "c6gn.8xlarge": { - "ap-east-1": 0.0, - "ap-northeast-1": 1.744, + "ap-east-1": 2.0152, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.56, - "ap-northeast-3": 1.92227, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.808, + "ap-southeast-1": 1.7424, + "ap-southeast-2": 1.9888, + "ap-southeast-3": 1.5872, "ca-central-1": 1.5136, + "ca-west-1": 0.0, "eu-central-1": 1.5776, - "eu-north-1": 0.0, + "eu-north-1": 1.488, "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 1.64, "eu-west-3": 1.64, "il-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 1.7152, "sa-east-1": 2.3408, "us-east-1": 1.3824, - "us-east-2": 0.0, + "us-east-2": 1.52064, + "us-gov-east-1": 1.664, + "us-gov-west-1": 0.0, "us-west-1": 1.9008, "us-west-2": 1.3824 }, @@ -37171,22 +37271,26 @@ "ap-east-1": 0.0, "ap-northeast-1": 2.616, "ap-northeast-2": 0.0, - "ap-northeast-3": 2.88341, + "ap-northeast-3": 2.62128, "ap-south-1": 2.076, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.712, + "ap-southeast-1": 2.6136, + "ap-southeast-2": 2.9832, + "ap-southeast-3": 0.0, "ca-central-1": 2.2704, - "eu-central-1": 2.60304, + "ca-west-1": 0.0, + "eu-central-1": 2.3664, "eu-north-1": 2.232, - "eu-south-1": 2.72448, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 2.706, + "eu-west-2": 2.46, "eu-west-3": 2.46, "il-central-1": 2.45952, - "me-south-1": 0.0, + "me-south-1": 2.83008, "sa-east-1": 0.0, "us-east-1": 2.28096, - "us-east-2": 2.28096, + "us-east-2": 2.0736, + "us-gov-east-1": 2.496, + "us-gov-west-1": 0.0, "us-west-1": 2.592, "us-west-2": 0.0 }, @@ -37197,19 +37301,23 @@ "ap-northeast-3": 0.0, "ap-south-1": 2.768, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 3.0272, - "eu-central-1": 0.0, - "eu-north-1": 3.2736, - "eu-south-1": 3.3024, + "ap-southeast-2": 3.616, + "ap-southeast-3": 3.1744, + "ca-central-1": 3.32992, + "ca-west-1": 3.0272, + "eu-central-1": 3.1552, + "eu-north-1": 2.976, + "eu-south-1": 3.63264, "eu-west-1": 3.43552, - "eu-west-2": 3.608, + "eu-west-2": 3.28, "eu-west-3": 3.608, "il-central-1": 0.0, - "me-south-1": 3.77344, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 2.7648, + "me-south-1": 0.0, + "sa-east-1": 4.256, + "us-east-1": 3.04128, + "us-east-2": 3.04128, + "us-gov-east-1": 3.6608, + "us-gov-west-1": 3.6608, "us-west-1": 0.0, "us-west-2": 0.0 }, @@ -37224,6 +37332,7 @@ "ap-southeast-1": 6.899, "ap-southeast-2": 7.814, "ca-central-1": 6.547, + "ca-west-1": 6.547, "eu-central-1": 6.829, "eu-north-1": 6.406, "eu-south-1": 7.11, @@ -37245,27 +37354,28 @@ "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.1056, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1177, "ap-south-1": 0.0935, - "ap-south-2": 0.0935, + "ap-south-2": 0.085, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.1221, - "ca-central-1": 0.1023, + "ap-southeast-2": 0.111, + "ca-central-1": 0.093, + "ca-west-1": 0.093, "eu-central-1": 0.1067, - "eu-north-1": 0.1001, - "eu-south-1": 0.101, + "eu-north-1": 0.091, + "eu-south-1": 0.1111, "eu-west-1": 0.0, "eu-west-2": 0.1111, "eu-west-3": 0.1111, "il-central-1": 0.0, "me-south-1": 0.1056, "sa-east-1": 0.0, - "us-east-1": 0.0935, + "us-east-1": 0.0, "us-east-2": 0.085, "us-gov-east-1": 0.1122, "us-gov-west-1": 0.0, - "us-west-1": 0.106, - "us-west-2": 0.0 + "us-west-1": 0.1166, + "us-west-2": 0.085 }, "c6i.xlarge": { "af-south-1": 0.2508, @@ -37274,23 +37384,24 @@ "ap-northeast-2": 0.2112, "ap-northeast-3": 0.2354, "ap-south-1": 0.17, - "ap-south-2": 0.17, - "ap-southeast-1": 0.2156, + "ap-south-2": 0.187, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.2442, "ca-central-1": 0.2046, - "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.202, - "eu-west-1": 0.20064, - "eu-west-2": 0.2222, + "ca-west-1": 0.0, + "eu-central-1": 0.194, + "eu-north-1": 0.2002, + "eu-south-1": 0.2222, + "eu-west-1": 0.1824, + "eu-west-2": 0.202, "eu-west-3": 0.2222, - "il-central-1": 0.0, + "il-central-1": 0.19152, "me-south-1": 0.0, "sa-east-1": 0.2882, - "us-east-1": 0.17, + "us-east-1": 0.0, "us-east-2": 0.17, "us-gov-east-1": 0.2244, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.204, "us-west-1": 0.0, "us-west-2": 0.187 }, @@ -37298,21 +37409,22 @@ "af-south-1": 7.296, "ap-east-1": 6.912, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 6.144, + "ap-northeast-3": 6.848, "ap-south-1": 5.44, "ap-south-2": 5.44, "ap-southeast-1": 0.0, - "ap-southeast-2": 7.104, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 5.952, + "ca-west-1": 0.0, + "eu-central-1": 6.208, "eu-north-1": 0.0, "eu-south-1": 6.464, "eu-west-1": 5.8368, - "eu-west-2": 6.464, + "eu-west-2": 0.0, "eu-west-3": 6.464, "il-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 6.7584, "sa-east-1": 8.384, "us-east-1": 5.44, "us-east-2": 5.44, @@ -37323,34 +37435,35 @@ }, "c6i.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 0.4708, - "ap-northeast-2": 0.4224, - "ap-northeast-3": 0.4708, + "ap-east-1": 0.432, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.428, "ap-south-1": 0.34, - "ap-south-2": 0.0, + "ap-south-2": 0.374, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 0.372, - "eu-central-1": 0.0, + "ca-west-1": 0.372, + "eu-central-1": 0.388, "eu-north-1": 0.4004, "eu-south-1": 0.4444, - "eu-west-1": 0.3648, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-1": 0.40128, + "eu-west-2": 0.404, + "eu-west-3": 0.404, "il-central-1": 0.38304, "me-south-1": 0.4224, - "sa-east-1": 0.524, + "sa-east-1": 0.0, "us-east-1": 0.34, - "us-east-2": 0.374, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.408, + "us-gov-west-1": 0.4488, "us-west-1": 0.4664, "us-west-2": 0.0 }, "c6i.4xlarge": { - "af-south-1": 0.912, - "ap-east-1": 0.864, + "af-south-1": 0.0, + "ap-east-1": 0.9504, "ap-northeast-1": 0.0, "ap-northeast-2": 0.8448, "ap-northeast-3": 0.0, @@ -37359,15 +37472,16 @@ "ap-southeast-1": 0.8624, "ap-southeast-2": 0.888, "ca-central-1": 0.0, + "ca-west-1": 0.744, "eu-central-1": 0.776, "eu-north-1": 0.8008, - "eu-south-1": 0.808, - "eu-west-1": 0.7296, + "eu-south-1": 0.8888, + "eu-west-1": 0.80256, "eu-west-2": 0.0, "eu-west-3": 0.8888, "il-central-1": 0.76608, - "me-south-1": 0.92928, - "sa-east-1": 1.048, + "me-south-1": 0.8448, + "sa-east-1": 0.0, "us-east-1": 0.68, "us-east-2": 0.68, "us-gov-east-1": 0.0, @@ -37376,79 +37490,82 @@ "us-west-2": 0.748 }, "c6i.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 2.0064, "ap-east-1": 0.0, "ap-northeast-1": 1.712, - "ap-northeast-2": 1.6896, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.8832, "ap-south-1": 0.0, "ap-south-2": 1.36, - "ap-southeast-1": 1.568, - "ap-southeast-2": 1.776, + "ap-southeast-1": 1.7248, + "ap-southeast-2": 1.9536, "ca-central-1": 1.6368, + "ca-west-1": 1.488, "eu-central-1": 1.552, - "eu-north-1": 1.6016, - "eu-south-1": 1.616, + "eu-north-1": 1.456, + "eu-south-1": 0.0, "eu-west-1": 1.4592, "eu-west-2": 1.616, "eu-west-3": 0.0, - "il-central-1": 1.53216, + "il-central-1": 1.68538, "me-south-1": 1.85856, - "sa-east-1": 2.3056, + "sa-east-1": 2.096, "us-east-1": 1.496, "us-east-2": 1.36, "us-gov-east-1": 1.7952, "us-gov-west-1": 1.632, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.496 }, "c6i.12xlarge": { - "af-south-1": 3.0096, + "af-south-1": 2.736, "ap-east-1": 2.8512, "ap-northeast-1": 2.8248, "ap-northeast-2": 0.0, "ap-northeast-3": 2.568, - "ap-south-1": 2.04, + "ap-south-1": 2.244, "ap-south-2": 2.244, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.664, + "ap-southeast-2": 2.9304, "ca-central-1": 0.0, + "ca-west-1": 2.232, "eu-central-1": 2.328, "eu-north-1": 2.4024, "eu-south-1": 2.424, "eu-west-1": 2.40768, - "eu-west-2": 2.424, + "eu-west-2": 2.6664, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 2.29824, "me-south-1": 2.78784, "sa-east-1": 3.144, "us-east-1": 0.0, - "us-east-2": 2.04, - "us-gov-east-1": 0.0, + "us-east-2": 2.244, + "us-gov-east-1": 2.6928, "us-gov-west-1": 0.0, "us-west-1": 2.544, - "us-west-2": 2.244 + "us-west-2": 0.0 }, "c6i.16xlarge": { "af-south-1": 4.0128, "ap-east-1": 0.0, - "ap-northeast-1": 3.7664, + "ap-northeast-1": 0.0, "ap-northeast-2": 3.3792, "ap-northeast-3": 3.424, - "ap-south-1": 2.992, + "ap-south-1": 2.72, "ap-south-2": 2.72, "ap-southeast-1": 0.0, "ap-southeast-2": 3.9072, - "ca-central-1": 2.976, + "ca-central-1": 3.2736, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 2.912, "eu-south-1": 3.5552, "eu-west-1": 3.21024, - "eu-west-2": 0.0, + "eu-west-2": 3.5552, "eu-west-3": 3.5552, "il-central-1": 0.0, "me-south-1": 3.71712, - "sa-east-1": 4.192, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, @@ -37458,19 +37575,20 @@ }, "c6i.24xlarge": { "af-south-1": 0.0, - "ap-east-1": 5.184, - "ap-northeast-1": 5.136, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 4.488, + "ap-northeast-3": 5.136, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 4.704, "ap-southeast-2": 5.8608, - "ca-central-1": 0.0, + "ca-central-1": 4.9104, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.8048, - "eu-south-1": 5.3328, - "eu-west-1": 4.81536, + "eu-south-1": 0.0, + "eu-west-1": 4.3776, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0, @@ -37478,7 +37596,7 @@ "sa-east-1": 6.288, "us-east-1": 4.488, "us-east-2": 4.08, - "us-gov-east-1": 0.0, + "us-gov-east-1": 5.3856, "us-gov-west-1": 4.896, "us-west-1": 5.088, "us-west-2": 4.08 @@ -37489,18 +37607,19 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 6.848, - "ap-south-1": 0.0, + "ap-south-1": 5.44, "ap-south-2": 5.44, "ap-southeast-1": 6.272, - "ap-southeast-2": 7.104, - "ca-central-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 5.952, + "ca-west-1": 5.952, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 5.824, "eu-south-1": 0.0, "eu-west-1": 5.8368, "eu-west-2": 6.464, "eu-west-3": 6.464, - "il-central-1": 6.12864, + "il-central-1": 0.0, "me-south-1": 6.7584, "sa-east-1": 8.384, "us-east-1": 5.44, @@ -37508,13 +37627,17 @@ "us-gov-east-1": 6.528, "us-gov-west-1": 6.528, "us-west-1": 0.0, - "us-west-2": 5.44 + "us-west-2": 5.984 }, "c6id": { "ap-northeast-1": 9.018, + "ap-northeast-2": 8.131, + "ap-southeast-1": 8.279, "ap-southeast-2": 9.314, + "ca-west-1": 7.836, "eu-central-1": 8.205, "eu-west-1": 8.057, + "eu-west-2": 8.501, "il-central-1": 8.46, "us-east-1": 7.096, "us-east-2": 7.096, @@ -37523,76 +37646,104 @@ }, "c6id.large": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.12821, + "ap-northeast-2": 0.12705, + "ap-southeast-1": 0.1176, + "ap-southeast-2": 0.14553, + "ca-west-1": 0.1113, + "eu-central-1": 0.11655, "eu-west-1": 0.11445, + "eu-west-2": 0.12075, "il-central-1": 0.12017, "us-east-1": 0.11088, "us-east-2": 0.0, "us-gov-west-1": 0.1218, - "us-west-2": 0.1008 + "us-west-2": 0.11088 }, "c6id.xlarge": { "ap-northeast-1": 0.28182, - "ap-southeast-2": 0.29106, - "eu-central-1": 0.0, - "eu-west-1": 0.25179, - "il-central-1": 0.24034, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.25872, + "ap-southeast-2": 0.0, + "ca-west-1": 0.2226, + "eu-central-1": 0.2331, + "eu-west-1": 0.2289, + "eu-west-2": 0.0, + "il-central-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.2016, "us-gov-west-1": 0.0, - "us-west-2": 0.2016 + "us-west-2": 0.0 }, "c6id.metal": { "ap-northeast-1": 8.1984, + "ap-northeast-2": 0.0, + "ap-southeast-1": 7.5264, "ap-southeast-2": 8.4672, + "ca-west-1": 0.0, "eu-central-1": 7.4592, "eu-west-1": 7.3248, + "eu-west-2": 0.0, "il-central-1": 7.69088, - "us-east-1": 6.4512, - "us-east-2": 6.4512, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 6.4512 }, "c6id.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-northeast-2": 0.462, + "ap-southeast-1": 0.51744, + "ap-southeast-2": 0.5292, + "ca-west-1": 0.4452, "eu-central-1": 0.4662, "eu-west-1": 0.50358, - "il-central-1": 0.48068, + "eu-west-2": 0.0, + "il-central-1": 0.52875, "us-east-1": 0.44352, "us-east-2": 0.44352, - "us-gov-west-1": 0.4872, - "us-west-2": 0.0 + "us-gov-west-1": 0.53592, + "us-west-2": 0.44352 }, "c6id.4xlarge": { - "ap-northeast-1": 1.12728, + "ap-northeast-1": 1.0248, + "ap-northeast-2": 0.0, + "ap-southeast-1": 1.03488, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.00716, + "eu-west-2": 1.0626, "il-central-1": 0.0, - "us-east-1": 0.88704, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 1.07184, "us-west-2": 0.0 }, "c6id.8xlarge": { "ap-northeast-1": 2.25456, + "ap-northeast-2": 0.0, + "ap-southeast-1": 1.8816, "ap-southeast-2": 2.1168, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 2.01432, + "eu-west-1": 1.8312, + "eu-west-2": 0.0, "il-central-1": 1.92272, "us-east-1": 1.77408, "us-east-2": 1.6128, - "us-gov-west-1": 1.9488, - "us-west-2": 1.77408 + "us-gov-west-1": 0.0, + "us-west-2": 1.6128 }, "c6id.12xlarge": { "ap-northeast-1": 3.0744, - "ap-southeast-2": 3.1752, - "eu-central-1": 0.0, + "ap-northeast-2": 3.0492, + "ap-southeast-1": 2.8224, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 2.7972, "eu-west-1": 2.7468, - "il-central-1": 0.0, + "eu-west-2": 2.898, + "il-central-1": 3.17249, "us-east-1": 2.4192, "us-east-2": 2.4192, "us-gov-west-1": 0.0, @@ -37600,20 +37751,28 @@ }, "c6id.16xlarge": { "ap-northeast-1": 4.0992, + "ap-northeast-2": 3.696, + "ap-southeast-1": 4.13952, "ap-southeast-2": 4.65696, - "eu-central-1": 0.0, + "ca-west-1": 3.5616, + "eu-central-1": 3.7296, "eu-west-1": 0.0, - "il-central-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 3.54816, + "eu-west-2": 4.2504, + "il-central-1": 3.84544, + "us-east-1": 3.2256, + "us-east-2": 0.0, "us-gov-west-1": 3.8976, - "us-west-2": 3.2256 + "us-west-2": 3.54816 }, "c6id.24xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 6.76368, + "ap-northeast-2": 6.0984, + "ap-southeast-1": 5.6448, "ap-southeast-2": 0.0, + "ca-west-1": 5.3424, "eu-central-1": 5.5944, "eu-west-1": 5.4936, + "eu-west-2": 0.0, "il-central-1": 6.34498, "us-east-1": 4.8384, "us-east-2": 4.8384, @@ -37622,30 +37781,40 @@ }, "c6id.32xlarge": { "ap-northeast-1": 8.1984, + "ap-northeast-2": 7.392, + "ap-southeast-1": 7.5264, "ap-southeast-2": 8.4672, + "ca-west-1": 7.1232, "eu-central-1": 7.4592, "eu-west-1": 0.0, + "eu-west-2": 7.728, "il-central-1": 7.69088, "us-east-1": 6.4512, "us-east-2": 6.4512, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 6.4512 }, "c6in": { "af-south-1": 10.733, + "ap-east-1": 10.571, "ap-northeast-1": 10.053, + "ap-northeast-2": 9.018, "ap-south-1": 7.983, + "ap-south-2": 7.976, "ap-southeast-1": 9.166, "ap-southeast-2": 10.423, "ap-southeast-3": 9.166, + "ap-southeast-4": 10.419, "ca-central-1": 8.723, "eu-central-1": 9.092, "eu-central-2": 10.018, "eu-north-1": 8.575, "eu-south-1": 9.536, + "eu-south-2": 9.011, "eu-west-1": 9.018, "eu-west-2": 9.462, "eu-west-3": 9.462, + "il-central-1": 9.47, "me-central-1": 9.912, "me-south-1": 9.905, "sa-east-1": 12.271, @@ -37653,449 +37822,1139 @@ "us-east-2": 7.983, "us-gov-east-1": 9.61, "us-gov-west-1": 9.61, + "us-west-1": 9.979, "us-west-2": 7.983 }, "c6in.large": { "af-south-1": 0.16771, - "ap-northeast-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 0.1428, + "ap-northeast-2": 0.1281, "ap-south-1": 0.12474, + "ap-south-2": 0.1133, "ap-southeast-1": 0.14322, "ap-southeast-2": 0.16286, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.14322, + "ap-southeast-4": 0.1628, "ca-central-1": 0.0, - "eu-central-1": 0.14207, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.1218, "eu-south-1": 0.13545, - "eu-west-1": 0.1281, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.1344, "eu-west-3": 0.1344, + "il-central-1": 0.14796, "me-central-1": 0.1408, "me-south-1": 0.1407, - "sa-east-1": 0.19173, + "sa-east-1": 0.1743, "us-east-1": 0.0, - "us-east-2": 0.12474, - "us-gov-east-1": 0.1365, - "us-gov-west-1": 0.15015, - "us-west-2": 0.12474 + "us-east-2": 0.1134, + "us-gov-east-1": 0.15015, + "us-gov-west-1": 0.1365, + "us-west-1": 0.14175, + "us-west-2": 0.1134 }, "c6in.xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.33033, "ap-northeast-1": 0.2856, - "ap-south-1": 0.2268, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.28182, + "ap-south-1": 0.24948, + "ap-south-2": 0.0, + "ap-southeast-1": 0.28644, "ap-southeast-2": 0.2961, "ap-southeast-3": 0.28644, + "ap-southeast-4": 0.3256, "ca-central-1": 0.2478, "eu-central-1": 0.2583, "eu-central-2": 0.31306, - "eu-north-1": 0.0, + "eu-north-1": 0.2436, "eu-south-1": 0.0, - "eu-west-1": 0.2562, - "eu-west-2": 0.0, + "eu-south-2": 0.2816, + "eu-west-1": 0.28182, + "eu-west-2": 0.2688, "eu-west-3": 0.2688, - "me-central-1": 0.0, - "me-south-1": 0.2814, + "il-central-1": 0.26902, + "me-central-1": 0.30976, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.24948, "us-east-2": 0.24948, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.3003, "us-gov-west-1": 0.0, + "us-west-1": 0.2835, "us-west-2": 0.2268 }, "c6in.metal": { "af-south-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 9.6096, + "ap-northeast-1": 9.1392, + "ap-northeast-2": 8.1984, "ap-south-1": 7.2576, + "ap-south-2": 0.0, "ap-southeast-1": 8.3328, "ap-southeast-2": 9.4752, "ap-southeast-3": 0.0, + "ap-southeast-4": 9.472, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 9.1072, - "eu-north-1": 7.7952, + "eu-north-1": 0.0, "eu-south-1": 8.6688, + "eu-south-2": 8.192, "eu-west-1": 8.1984, "eu-west-2": 8.6016, "eu-west-3": 0.0, - "me-central-1": 0.0, + "il-central-1": 8.60864, + "me-central-1": 9.0112, "me-south-1": 9.0048, "sa-east-1": 11.1552, "us-east-1": 7.2576, - "us-east-2": 0.0, - "us-gov-east-1": 8.736, + "us-east-2": 7.2576, + "us-gov-east-1": 0.0, "us-gov-west-1": 8.736, + "us-west-1": 9.072, "us-west-2": 7.2576 }, "c6in.2xlarge": { "af-south-1": 0.67082, + "ap-east-1": 0.6006, "ap-northeast-1": 0.62832, - "ap-south-1": 0.0, + "ap-northeast-2": 0.56364, + "ap-south-1": 0.49896, + "ap-south-2": 0.49852, "ap-southeast-1": 0.5208, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ca-central-1": 0.4956, + "ap-southeast-3": 0.5208, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.56826, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.5418, + "eu-south-2": 0.512, "eu-west-1": 0.0, - "eu-west-2": 0.59136, + "eu-west-2": 0.0, "eu-west-3": 0.5376, - "me-central-1": 0.5632, - "me-south-1": 0.61908, - "sa-east-1": 0.0, + "il-central-1": 0.53804, + "me-central-1": 0.0, + "me-south-1": 0.5628, + "sa-east-1": 0.76692, "us-east-1": 0.4536, "us-east-2": 0.4536, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.6006, "us-gov-west-1": 0.546, + "us-west-1": 0.567, "us-west-2": 0.4536 }, "c6in.4xlarge": { "af-south-1": 1.34165, - "ap-northeast-1": 1.25664, + "ap-east-1": 1.32132, + "ap-northeast-1": 1.1424, + "ap-northeast-2": 1.0248, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 0.99704, + "ap-southeast-1": 1.0416, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.14576, + "ap-southeast-4": 1.3024, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 1.25224, + "eu-central-1": 1.13652, + "eu-central-2": 0.0, "eu-north-1": 1.07184, "eu-south-1": 1.0836, - "eu-west-1": 1.0248, - "eu-west-2": 0.0, - "eu-west-3": 1.0752, + "eu-south-2": 1.1264, + "eu-west-1": 0.0, + "eu-west-2": 1.18272, + "eu-west-3": 1.18272, + "il-central-1": 1.18369, "me-central-1": 1.23904, - "me-south-1": 1.23816, + "me-south-1": 1.1256, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 1.2012, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.9072 }, "c6in.8xlarge": { - "af-south-1": 2.43936, - "ap-northeast-1": 2.51328, - "ap-south-1": 1.8144, - "ap-southeast-1": 2.29152, + "af-south-1": 2.6833, + "ap-east-1": 2.64264, + "ap-northeast-1": 2.2848, + "ap-northeast-2": 2.25456, + "ap-south-1": 1.99584, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.60568, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 2.18064, - "eu-central-1": 2.0664, - "eu-central-2": 2.50448, + "eu-central-1": 2.27304, + "eu-central-2": 2.2768, "eu-north-1": 0.0, - "eu-south-1": 2.1672, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 2.1504, + "eu-south-1": 2.38392, + "eu-south-2": 2.048, + "eu-west-1": 2.0496, + "eu-west-2": 2.36544, + "eu-west-3": 0.0, + "il-central-1": 0.0, "me-central-1": 2.2528, "me-south-1": 2.2512, "sa-east-1": 3.06768, "us-east-1": 1.8144, "us-east-2": 0.0, - "us-gov-east-1": 2.4024, - "us-gov-west-1": 2.184, + "us-gov-east-1": 2.184, + "us-gov-west-1": 0.0, + "us-west-1": 2.4948, "us-west-2": 1.99584 }, "c6in.12xlarge": { - "af-south-1": 4.02494, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, + "ap-northeast-2": 3.38184, "ap-south-1": 0.0, + "ap-south-2": 2.7192, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.5532, + "ap-southeast-2": 3.90852, "ap-southeast-3": 3.43728, - "ca-central-1": 2.9736, - "eu-central-1": 3.0996, - "eu-central-2": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 3.40956, + "eu-central-2": 3.75672, "eu-north-1": 0.0, - "eu-south-1": 3.57588, - "eu-west-1": 0.0, + "eu-south-1": 3.2508, + "eu-south-2": 3.3792, + "eu-west-1": 3.38184, "eu-west-2": 3.2256, "eu-west-3": 3.2256, + "il-central-1": 3.55106, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 2.7216, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-2": 2.99376 + "us-gov-west-1": 3.6036, + "us-west-1": 3.7422, + "us-west-2": 2.7216 }, "c6in.16xlarge": { - "af-south-1": 4.87872, + "af-south-1": 5.36659, + "ap-east-1": 5.28528, "ap-northeast-1": 4.5696, + "ap-northeast-2": 4.50912, "ap-south-1": 3.99168, + "ap-south-2": 3.98816, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, + "ap-southeast-4": 5.2096, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 5.00896, - "eu-north-1": 0.0, + "eu-north-1": 4.28736, "eu-south-1": 4.3344, + "eu-south-2": 4.5056, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, - "me-central-1": 0.0, + "eu-west-2": 4.3008, + "eu-west-3": 4.3008, + "il-central-1": 0.0, + "me-central-1": 4.5056, "me-south-1": 4.5024, "sa-east-1": 6.13536, - "us-east-1": 3.99168, + "us-east-1": 0.0, "us-east-2": 3.6288, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 4.8048, + "us-west-1": 4.536, "us-west-2": 3.6288 }, "c6in.24xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 7.53984, + "ap-northeast-2": 0.0, "ap-south-1": 5.4432, + "ap-south-2": 0.0, "ap-southeast-1": 6.87456, "ap-southeast-2": 7.1064, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 6.54192, "eu-central-1": 6.81912, "eu-central-2": 6.8304, - "eu-north-1": 5.8464, + "eu-north-1": 6.43104, "eu-south-1": 7.15176, - "eu-west-1": 6.76368, + "eu-south-2": 0.0, + "eu-west-1": 6.1488, "eu-west-2": 7.09632, "eu-west-3": 7.09632, + "il-central-1": 6.45648, "me-central-1": 6.7584, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 5.4432, - "us-gov-east-1": 6.552, - "us-gov-west-1": 6.552, + "us-east-2": 5.98752, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 6.804, "us-west-2": 5.4432 }, "c6in.32xlarge": { - "af-south-1": 9.75744, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, + "ap-northeast-2": 8.1984, "ap-south-1": 7.2576, + "ap-south-2": 7.2512, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 9.4752, "ap-southeast-3": 8.3328, + "ap-southeast-4": 9.472, "ca-central-1": 7.9296, "eu-central-1": 8.2656, - "eu-central-2": 9.1072, + "eu-central-2": 0.0, "eu-north-1": 7.7952, "eu-south-1": 8.6688, + "eu-south-2": 8.192, "eu-west-1": 8.1984, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 8.6016, + "eu-west-3": 8.6016, + "il-central-1": 8.60864, "me-central-1": 9.0112, - "me-south-1": 9.0048, - "sa-east-1": 11.1552, - "us-east-1": 7.2576, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 7.2576, "us-gov-east-1": 8.736, "us-gov-west-1": 8.736, + "us-west-1": 0.0, "us-west-2": 7.2576 }, + "c7a": { + "ap-northeast-1": 13.644, + "eu-central-1": 12.369, + "eu-north-1": 11.603, + "eu-south-2": 12.241, + "eu-west-1": 11.629, + "us-east-1": 10.839, + "us-east-2": 10.839, + "us-west-2": 10.839 + }, + "c7a.medium": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.05857, + "eu-north-1": 0.05494, + "eu-south-2": 0.06376, + "eu-west-1": 0.05506, + "us-east-1": 0.05132, + "us-east-2": 0.05132, + "us-west-2": 0.0 + }, + "c7a.large": { + "ap-northeast-1": 0.14212, + "eu-central-1": 0.0, + "eu-north-1": 0.10988, + "eu-south-2": 0.0, + "eu-west-1": 0.11012, + "us-east-1": 0.10264, + "us-east-2": 0.1129, + "us-west-2": 0.0 + }, + "c7a.xlarge": { + "ap-northeast-1": 0.2584, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.22581, + "us-east-2": 0.20528, + "us-west-2": 0.0 + }, + "c7a.metal-48xl": { + "ap-northeast-1": 12.4032, + "eu-central-1": 11.24448, + "eu-north-1": 10.54848, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 9.85344, + "us-east-2": 9.85344, + "us-west-2": 9.85344 + }, + "c7a.2xlarge": { + "ap-northeast-1": 0.56848, + "eu-central-1": 0.46852, + "eu-north-1": 0.48347, + "eu-south-2": 0.51005, + "eu-west-1": 0.0, + "us-east-1": 0.41056, + "us-east-2": 0.41056, + "us-west-2": 0.45162 + }, + "c7a.4xlarge": { + "ap-northeast-1": 1.13696, + "eu-central-1": 0.0, + "eu-north-1": 0.96694, + "eu-south-2": 0.92736, + "eu-west-1": 0.96906, + "us-east-1": 0.0, + "us-east-2": 0.82112, + "us-west-2": 0.82112 + }, + "c7a.8xlarge": { + "ap-northeast-1": 2.27392, + "eu-central-1": 1.87408, + "eu-north-1": 0.0, + "eu-south-2": 1.85472, + "eu-west-1": 1.76192, + "us-east-1": 0.0, + "us-east-2": 1.80646, + "us-west-2": 1.80646 + }, + "c7a.12xlarge": { + "ap-northeast-1": 3.41088, + "eu-central-1": 3.09223, + "eu-north-1": 0.0, + "eu-south-2": 2.78208, + "eu-west-1": 2.90717, + "us-east-1": 2.46336, + "us-east-2": 2.7097, + "us-west-2": 0.0 + }, + "c7a.16xlarge": { + "ap-northeast-1": 4.54784, + "eu-central-1": 3.74816, + "eu-north-1": 3.86778, + "eu-south-2": 0.0, + "eu-west-1": 3.52384, + "us-east-1": 3.61293, + "us-east-2": 3.28448, + "us-west-2": 3.61293 + }, + "c7a.24xlarge": { + "ap-northeast-1": 6.82176, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 6.12058, + "eu-west-1": 5.81434, + "us-east-1": 0.0, + "us-east-2": 5.41939, + "us-west-2": 5.41939 + }, + "c7a.32xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 7.49632, + "eu-north-1": 0.0, + "eu-south-2": 7.41888, + "eu-west-1": 7.75245, + "us-east-1": 7.22586, + "us-east-2": 6.56896, + "us-west-2": 6.56896 + }, + "c7a.48xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 10.54848, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 9.85344, + "us-east-2": 0.0, + "us-west-2": 9.85344 + }, "c7g": { - "ap-southeast-1": 8.796 + "ap-northeast-1": 9.605, + "ap-northeast-2": 8.617, + "ap-south-1": 5.183, + "ap-south-2": 5.183, + "ap-southeast-1": 8.796, + "ap-southeast-2": 9.964, + "ca-central-1": 8.349, + "eu-central-1": 8.707, + "eu-north-1": 8.169, + "eu-south-2": 8.184, + "eu-west-1": 8.186, + "eu-west-2": 9.067, + "us-east-1": 7.656, + "us-east-2": 7.631, + "us-west-1": 9.515, + "us-west-2": 7.656 }, "c7g.medium": { - "ap-northeast-1": 0.0455, + "ap-northeast-1": 0.0483, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0245, + "ap-south-2": 0.0261, "ap-southeast-1": 0.0417, - "ap-southeast-2": 0.0472, - "eu-central-1": 0.0412, + "ap-southeast-2": 0.0, + "ca-central-1": 0.042, + "eu-central-1": 0.0438, + "eu-north-1": 0.0387, + "eu-south-2": 0.0388, "eu-west-1": 0.0388, - "us-east-1": 0.0363, - "us-east-2": 0.0361, - "us-west-2": 0.0363 + "eu-west-2": 0.0, + "us-east-1": 0.0385, + "us-east-2": 0.0384, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c7g.large": { "ap-northeast-1": 0.091, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0944, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0886, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0841, "eu-central-1": 0.0825, - "eu-west-1": 0.0775, + "eu-north-1": 0.0822, + "eu-south-2": 0.0, + "eu-west-1": 0.0824, + "eu-west-2": 0.0859, "us-east-1": 0.0725, - "us-east-2": 0.0723, - "us-west-2": 0.0725 + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.077 }, "c7g.xlarge": { "ap-northeast-1": 0.1819, + "ap-northeast-2": 0.1632, + "ap-south-1": 0.1043, + "ap-south-2": 0.1043, "ap-southeast-1": 0.1666, "ap-southeast-2": 0.1887, - "eu-central-1": 0.1649, + "ca-central-1": 0.0, + "eu-central-1": 0.1753, + "eu-north-1": 0.1547, + "eu-south-2": 0.1648, "eu-west-1": 0.155, - "us-east-1": 0.145, - "us-east-2": 0.1445, + "eu-west-2": 0.1825, + "us-east-1": 0.1541, + "us-east-2": 0.1536, + "us-west-1": 0.1915, "us-west-2": 0.145 }, "c7g.metal": { "ap-northeast-1": 2.9107, + "ap-northeast-2": 2.6112, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.0195, - "eu-central-1": 2.6384, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 2.4755, + "eu-south-2": 0.0, "eu-west-1": 2.4806, - "us-east-1": 2.32, + "eu-west-2": 2.7475, + "us-east-1": 0.0, "us-east-2": 2.3123, + "us-west-1": 2.8832, "us-west-2": 2.32 }, "c7g.2xlarge": { - "ap-northeast-1": 0.3638, - "ap-southeast-1": 0.3332, - "ap-southeast-2": 0.3774, - "eu-central-1": 0.3298, - "eu-west-1": 0.3101, + "ap-northeast-1": 0.3867, + "ap-northeast-2": 0.3264, + "ap-south-1": 0.1963, + "ap-south-2": 0.1963, + "ap-southeast-1": 0.3543, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.3505, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.3296, + "eu-west-2": 0.3434, "us-east-1": 0.29, - "us-east-2": 0.289, - "us-west-2": 0.29 + "us-east-2": 0.3072, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c7g.4xlarge": { "ap-northeast-1": 0.7277, + "ap-northeast-2": 0.6528, + "ap-south-1": 0.3926, + "ap-south-2": 0.3926, "ap-southeast-1": 0.6664, "ap-southeast-2": 0.7549, + "ca-central-1": 0.6725, "eu-central-1": 0.6596, - "eu-west-1": 0.6202, - "us-east-1": 0.58, - "us-east-2": 0.5781, - "us-west-2": 0.58 + "eu-north-1": 0.0, + "eu-south-2": 0.659, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.6145, + "us-west-1": 0.7208, + "us-west-2": 0.0 }, "c7g.8xlarge": { "ap-northeast-1": 1.4554, + "ap-northeast-2": 1.3877, + "ap-south-1": 0.0, + "ap-south-2": 0.8348, "ap-southeast-1": 1.417, - "ap-southeast-2": 1.5098, - "eu-central-1": 1.3192, - "eu-west-1": 1.2403, + "ap-southeast-2": 1.6047, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 1.2378, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "us-east-1": 1.16, "us-east-2": 1.1562, - "us-west-2": 1.16 + "us-west-1": 0.0, + "us-west-2": 1.2328 }, "c7g.12xlarge": { - "ap-northeast-1": 2.183, + "ap-northeast-1": 2.3201, + "ap-northeast-2": 1.9584, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 2.1255, "ap-southeast-2": 2.2646, - "eu-central-1": 1.9788, - "eu-west-1": 1.8605, + "ca-central-1": 1.8974, + "eu-central-1": 2.103, + "eu-north-1": 0.0, + "eu-south-2": 1.86, + "eu-west-1": 0.0, + "eu-west-2": 2.1902, "us-east-1": 1.74, "us-east-2": 1.7342, - "us-west-2": 1.74 + "us-west-1": 2.2984, + "us-west-2": 0.0 }, "c7g.16xlarge": { "ap-northeast-1": 2.9107, + "ap-northeast-2": 2.6112, + "ap-south-1": 0.0, + "ap-south-2": 1.5706, "ap-southeast-1": 2.6656, - "ap-southeast-2": 3.0195, - "eu-central-1": 2.6384, + "ap-southeast-2": 0.0, + "ca-central-1": 2.5299, + "eu-central-1": 0.0, + "eu-north-1": 2.4755, + "eu-south-2": 0.0, "eu-west-1": 2.4806, + "eu-west-2": 2.7475, "us-east-1": 2.32, "us-east-2": 2.3123, - "us-west-2": 2.32 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c7gd": { + "ap-northeast-1": 12.176, + "ap-south-1": 6.083, + "ap-southeast-1": 11.177, + "ap-southeast-2": 12.575, + "eu-central-1": 11.077, + "eu-north-1": 10.378, + "eu-south-2": 10.877, "eu-west-1": 10.877, "us-east-1": 9.58, "us-east-2": 9.58, + "us-west-1": 11.975, "us-west-2": 9.58 }, "c7gd.medium": { + "ap-northeast-1": 0.0577, + "ap-south-1": 0.0288, + "ap-southeast-1": 0.0561, + "ap-southeast-2": 0.0631, + "eu-central-1": 0.0525, + "eu-north-1": 0.0, + "eu-south-2": 0.0515, "eu-west-1": 0.0546, "us-east-1": 0.0481, - "us-east-2": 0.0481, - "us-west-2": 0.0481 + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0454 }, "c7gd.large": { + "ap-northeast-1": 0.1153, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.1262, + "eu-central-1": 0.1112, + "eu-north-1": 0.1042, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0962, + "us-east-1": 0.0, "us-east-2": 0.0962, - "us-west-2": 0.0907 + "us-west-1": 0.1134, + "us-west-2": 0.0 }, "c7gd.xlarge": { + "ap-northeast-1": 0.2306, + "ap-south-1": 0.1152, + "ap-southeast-1": 0.2244, + "ap-southeast-2": 0.2382, + "eu-central-1": 0.2098, + "eu-north-1": 0.2084, + "eu-south-2": 0.0, "eu-west-1": 0.206, "us-east-1": 0.1923, "us-east-2": 0.1923, + "us-west-1": 0.2268, "us-west-2": 0.1923 }, + "c7gd.metal": { + "ap-northeast-1": 3.6896, + "ap-south-1": 1.8432, + "ap-southeast-1": 3.3869, + "ap-southeast-2": 3.8106, + "eu-central-1": 3.3568, + "eu-north-1": 3.145, + "eu-south-2": 3.2962, + "eu-west-1": 3.296, + "us-east-1": 2.903, + "us-east-2": 2.903, + "us-west-1": 0.0, + "us-west-2": 2.903 + }, "c7gd.2xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.2304, + "ap-southeast-1": 0.4234, + "ap-southeast-2": 0.0, + "eu-central-1": 0.4448, + "eu-north-1": 0.3931, + "eu-south-2": 0.412, "eu-west-1": 0.4367, "us-east-1": 0.3629, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.4808, + "us-west-2": 0.3847 }, "c7gd.4xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.4884, + "ap-southeast-1": 0.8467, + "ap-southeast-2": 0.9526, + "eu-central-1": 0.8392, + "eu-north-1": 0.8334, + "eu-south-2": 0.824, + "eu-west-1": 0.8734, + "us-east-1": 0.7258, "us-east-2": 0.7258, + "us-west-1": 0.9616, "us-west-2": 0.7693 }, "c7gd.8xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.9769, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.0196, + "eu-central-1": 1.6784, + "eu-north-1": 0.0, + "eu-south-2": 1.747, "eu-west-1": 1.648, "us-east-1": 1.5386, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 1.5386 }, "c7gd.12xlarge": { - "eu-west-1": 2.472, - "us-east-1": 0.0, + "ap-northeast-1": 2.7672, + "ap-south-1": 1.4653, + "ap-southeast-1": 2.5402, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 2.6203, + "us-east-1": 2.308, "us-east-2": 2.1773, + "us-west-1": 2.7216, "us-west-2": 2.1773 }, "c7gd.16xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 3.3869, + "ap-southeast-2": 3.8106, + "eu-central-1": 3.3568, + "eu-north-1": 3.145, + "eu-south-2": 3.2962, "eu-west-1": 3.296, "us-east-1": 2.903, "us-east-2": 0.0, + "us-west-1": 3.6288, "us-west-2": 2.903 }, "c7gn": { + "ap-northeast-1": 16.621, "eu-west-1": 14.89, "us-east-1": 13.179, "us-east-2": 13.179, "us-west-2": 13.179 }, "c7gn.medium": { - "eu-west-1": 0.0747, - "us-east-1": 0.0661, + "ap-northeast-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0661, "us-west-2": 0.0624 }, "c7gn.large": { - "eu-west-1": 0.1494, - "us-east-1": 0.0, - "us-east-2": 0.0, + "ap-northeast-1": 0.0, + "eu-west-1": 0.141, + "us-east-1": 0.1248, + "us-east-2": 0.1248, "us-west-2": 0.0 }, "c7gn.xlarge": { - "eu-west-1": 0.282, + "ap-northeast-1": 0.3335, + "eu-west-1": 0.2989, + "us-east-1": 0.2496, + "us-east-2": 0.0, + "us-west-2": 0.2646 + }, + "c7gn.metal": { + "ap-northeast-1": 5.0368, + "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.2646, - "us-west-2": 0.2496 + "us-east-2": 3.9936, + "us-west-2": 3.9936 }, "c7gn.2xlarge": { + "ap-northeast-1": 0.6296, "eu-west-1": 0.0, "us-east-1": 0.4992, - "us-east-2": 0.5292, + "us-east-2": 0.4992, "us-west-2": 0.5292 }, "c7gn.4xlarge": { - "eu-west-1": 1.128, + "ap-northeast-1": 1.3341, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.0583, "us-west-2": 0.9984 }, "c7gn.8xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 2.256, "us-east-1": 2.1166, "us-east-2": 0.0, - "us-west-2": 1.9968 + "us-west-2": 0.0 }, "c7gn.12xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 0.0, "us-east-1": 3.1749, - "us-east-2": 3.1749, + "us-east-2": 0.0, "us-west-2": 3.1749 }, "c7gn.16xlarge": { + "ap-northeast-1": 5.0368, "eu-west-1": 4.512, "us-east-1": 0.0, "us-east-2": 3.9936, "us-west-2": 3.9936 }, + "c7i": { + "ap-northeast-1": 11.864, + "ap-northeast-2": 10.644, + "ap-south-1": 9.425, + "ap-southeast-1": 10.866, + "ap-southeast-2": 12.308, + "ca-central-1": 10.312, + "eu-central-1": 10.755, + "eu-north-1": 10.09, + "eu-south-2": 10.644, + "eu-west-1": 10.112, + "eu-west-2": 11.199, + "eu-west-3": 11.199, + "sa-east-1": 14.525, + "us-east-1": 9.425, + "us-east-2": 9.425, + "us-gov-east-1": 11.31, + "us-west-1": 11.753, + "us-west-2": 9.425 + }, + "c7i.large": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.11088, + "ap-south-1": 0.09818, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.11655, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.11088, + "eu-west-1": 0.10534, + "eu-west-2": 0.11666, + "eu-west-3": 0.10605, + "sa-east-1": 0.13755, + "us-east-1": 0.09818, + "us-east-2": 0.0, + "us-gov-east-1": 0.11781, + "us-west-1": 0.12243, + "us-west-2": 0.09818 + }, + "c7i.xlarge": { + "ap-northeast-1": 0.24717, + "ap-northeast-2": 0.0, + "ap-south-1": 0.1785, + "ap-southeast-1": 0.22638, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.22407, + "eu-north-1": 0.0, + "eu-south-2": 0.22176, + "eu-west-1": 0.21067, + "eu-west-2": 0.0, + "eu-west-3": 0.2121, + "sa-east-1": 0.2751, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.2226, + "us-west-2": 0.0 + }, + "c7i.metal-24xl": { + "ap-northeast-1": 5.93208, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 4.9392, + "ap-southeast-2": 0.0, + "ca-central-1": 4.6872, + "eu-central-1": 0.0, + "eu-north-1": 5.04504, + "eu-south-2": 5.32224, + "eu-west-1": 5.05613, + "eu-west-2": 5.59944, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 4.284, + "us-gov-east-1": 5.65488, + "us-west-1": 5.3424, + "us-west-2": 4.284 + }, + "c7i.metal-48xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 9.8784, + "ap-southeast-2": 11.1888, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 9.1728, + "eu-south-2": 9.6768, + "eu-west-1": 9.19296, + "eu-west-2": 10.1808, + "eu-west-3": 10.1808, + "sa-east-1": 13.2048, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 10.2816, + "us-west-1": 10.6848, + "us-west-2": 8.568 + }, + "c7i.2xlarge": { + "ap-northeast-1": 0.49434, + "ap-northeast-2": 0.4032, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.3906, + "eu-central-1": 0.44814, + "eu-north-1": 0.3822, + "eu-south-2": 0.4032, + "eu-west-1": 0.38304, + "eu-west-2": 0.0, + "eu-west-3": 0.4242, + "sa-east-1": 0.60522, + "us-east-1": 0.357, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.357 + }, + "c7i.4xlarge": { + "ap-northeast-1": 0.8988, + "ap-northeast-2": 0.0, + "ap-south-1": 0.7854, + "ap-southeast-1": 0.8232, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.7644, + "eu-south-2": 0.0, + "eu-west-1": 0.76608, + "eu-west-2": 0.8484, + "eu-west-3": 0.8484, + "sa-east-1": 0.0, + "us-east-1": 0.7854, + "us-east-2": 0.714, + "us-gov-east-1": 0.8568, + "us-west-1": 0.8904, + "us-west-2": 0.0 + }, + "c7i.8xlarge": { + "ap-northeast-1": 1.97736, + "ap-northeast-2": 1.6128, + "ap-south-1": 1.5708, + "ap-southeast-1": 1.6464, + "ap-southeast-2": 2.05128, + "ca-central-1": 0.0, + "eu-central-1": 1.79256, + "eu-north-1": 0.0, + "eu-south-2": 1.77408, + "eu-west-1": 1.68538, + "eu-west-2": 0.0, + "eu-west-3": 1.86648, + "sa-east-1": 2.2008, + "us-east-1": 1.428, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 1.5708 + }, + "c7i.12xlarge": { + "ap-northeast-1": 2.96604, + "ap-northeast-2": 2.4192, + "ap-south-1": 2.3562, + "ap-southeast-1": 2.4696, + "ap-southeast-2": 3.07692, + "ca-central-1": 2.3436, + "eu-central-1": 0.0, + "eu-north-1": 2.52252, + "eu-south-2": 0.0, + "eu-west-1": 2.29824, + "eu-west-2": 0.0, + "eu-west-3": 2.79972, + "sa-east-1": 3.3012, + "us-east-1": 2.3562, + "us-east-2": 0.0, + "us-gov-east-1": 2.82744, + "us-west-1": 2.6712, + "us-west-2": 2.3562 + }, + "c7i.16xlarge": { + "ap-northeast-1": 3.5952, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.7296, + "ca-central-1": 3.1248, + "eu-central-1": 0.0, + "eu-north-1": 3.0576, + "eu-south-2": 3.2256, + "eu-west-1": 3.06432, + "eu-west-2": 3.3936, + "eu-west-3": 3.73296, + "sa-east-1": 4.4016, + "us-east-1": 0.0, + "us-east-2": 2.856, + "us-gov-east-1": 3.4272, + "us-west-1": 3.91776, + "us-west-2": 3.1416 + }, + "c7i.24xlarge": { + "ap-northeast-1": 5.3928, + "ap-northeast-2": 0.0, + "ap-south-1": 4.7124, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 4.6872, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 5.0904, + "eu-west-3": 0.0, + "sa-east-1": 7.26264, + "us-east-1": 0.0, + "us-east-2": 4.7124, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 4.284 + }, + "c7i.48xlarge": { + "ap-northeast-1": 10.7856, + "ap-northeast-2": 9.6768, + "ap-south-1": 0.0, + "ap-southeast-1": 9.8784, + "ap-southeast-2": 11.1888, + "ca-central-1": 9.3744, + "eu-central-1": 0.0, + "eu-north-1": 9.1728, + "eu-south-2": 9.6768, + "eu-west-1": 9.19296, + "eu-west-2": 0.0, + "eu-west-3": 10.1808, + "sa-east-1": 0.0, + "us-east-1": 8.568, + "us-east-2": 0.0, + "us-gov-east-1": 10.2816, + "us-west-1": 10.6848, + "us-west-2": 8.568 + }, + "c7i-flex.large": { + "ap-south-1": 0.08479, + "ap-southeast-1": 0.09778, + "ca-central-1": 0.09277, + "eu-north-1": 0.09077, + "eu-south-2": 0.09576, + "eu-west-1": 0.09097, + "eu-west-2": 0.10075, + "eu-west-3": 0.10075, + "sa-east-1": 0.13067, + "us-west-1": 0.10574 + }, + "c7i-flex.xlarge": { + "ap-south-1": 0.16958, + "ap-southeast-1": 0.19555, + "ca-central-1": 0.18554, + "eu-north-1": 0.18155, + "eu-south-2": 0.19152, + "eu-west-1": 0.18194, + "eu-west-2": 0.2015, + "eu-west-3": 0.2015, + "sa-east-1": 0.26135, + "us-west-1": 0.21147 + }, + "c7i-flex.2xlarge": { + "ap-south-1": 0.33915, + "ap-southeast-1": 0.3911, + "ca-central-1": 0.37107, + "eu-north-1": 0.36309, + "eu-south-2": 0.38304, + "eu-west-1": 0.36389, + "eu-west-2": 0.40299, + "eu-west-3": 0.40299, + "sa-east-1": 0.52269, + "us-west-1": 0.42294 + }, + "c7i-flex.4xlarge": { + "ap-south-1": 0.6783, + "ap-southeast-1": 0.7822, + "ca-central-1": 0.74214, + "eu-north-1": 0.72618, + "eu-south-2": 0.76608, + "eu-west-1": 0.72778, + "eu-west-2": 0.80598, + "eu-west-3": 0.80598, + "sa-east-1": 1.04538, + "us-west-1": 0.84588 + }, + "c7i-flex.8xlarge": { + "ap-south-1": 1.3566, + "ap-southeast-1": 1.56441, + "ca-central-1": 1.48428, + "eu-north-1": 1.45236, + "eu-south-2": 1.53216, + "eu-west-1": 1.45555, + "eu-west-2": 1.61196, + "eu-west-3": 1.61196, + "sa-east-1": 2.09076, + "us-west-1": 1.69176 + }, "cc2.8xlarge": { "ap-northeast-1": 2.349, "eu-west-1": 2.25, @@ -38135,34 +38994,34 @@ "d2.xlarge": { "af-south-1": 0.875, "ap-east-1": 1.053, - "ap-northeast-1": 0.928, - "ap-northeast-2": 0.844, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.9284, "ap-northeast-3": 0.844, - "ap-south-1": 0.91, + "ap-south-1": 0.827, "ap-southeast-1": 0.957, "ap-southeast-2": 0.87, "ca-central-1": 0.835, "eu-central-1": 0.794, "eu-north-1": 0.698, "eu-south-1": 0.772, - "eu-west-1": 0.809, + "eu-west-1": 0.735, "eu-west-2": 0.849, - "eu-west-3": 0.849, - "me-south-1": 0.809, + "eu-west-3": 0.772, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.759, + "us-east-1": 0.69, "us-east-2": 0.69, - "us-gov-east-1": 0.828, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.859, "us-west-2": 0.0 }, "d2.2xlarge": { - "af-south-1": 1.925, + "af-south-1": 0.0, "ap-east-1": 2.105, - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.688, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.857, + "ap-northeast-3": 1.688, "ap-south-1": 1.653, "ap-southeast-1": 1.74, "ap-southeast-2": 1.74, @@ -38171,58 +39030,58 @@ "eu-north-1": 0.0, "eu-south-1": 1.544, "eu-west-1": 1.617, - "eu-west-2": 1.544, + "eu-west-2": 1.698, "eu-west-3": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 1.38, - "us-east-2": 1.38, + "us-east-1": 1.518, + "us-east-2": 0.0, "us-gov-east-1": 1.822, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 1.518 + "us-west-1": 1.563, + "us-west-2": 1.38 }, "d2.4xlarge": { "af-south-1": 0.0, "ap-east-1": 4.211, "ap-northeast-1": 3.714, - "ap-northeast-2": 3.376, + "ap-northeast-2": 3.7136, "ap-northeast-3": 0.0, "ap-south-1": 3.637, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 3.036, + "ap-southeast-2": 3.828, + "ca-central-1": 3.34, "eu-central-1": 0.0, "eu-north-1": 2.792, "eu-south-1": 0.0, "eu-west-1": 3.234, "eu-west-2": 3.396, "eu-west-3": 3.397, - "me-south-1": 0.0, + "me-south-1": 3.234, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 3.036, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.643, - "us-west-1": 0.0, + "us-gov-west-1": 3.312, + "us-west-1": 3.438, "us-west-2": 2.76 }, "d2.8xlarge": { - "af-south-1": 0.0, - "ap-east-1": 7.656, + "af-south-1": 7.0, + "ap-east-1": 0.0, "ap-northeast-1": 6.752, "ap-northeast-2": 6.752, "ap-northeast-3": 6.752, "ap-south-1": 6.612, "ap-southeast-1": 6.96, - "ap-southeast-2": 6.96, + "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 6.352, "eu-north-1": 0.0, "eu-south-1": 6.176, "eu-west-1": 5.88, "eu-west-2": 6.174, - "eu-west-3": 0.0, + "eu-west-3": 6.176, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 5.52, @@ -38239,6 +39098,7 @@ "ap-southeast-2": 0.626, "ca-central-1": 0.55, "eu-central-1": 0.658, + "eu-central-2": 0.724, "eu-west-1": 0.609, "eu-west-2": 0.64, "il-central-1": 0.64, @@ -38254,6 +39114,7 @@ "ap-southeast-2": 1.252, "ca-central-1": 1.1, "eu-central-1": 1.316, + "eu-central-2": 1.448, "eu-west-1": 1.219, "eu-west-2": 1.28, "il-central-1": 1.28, @@ -38269,6 +39130,7 @@ "ap-southeast-2": 2.504, "ca-central-1": 2.201, "eu-central-1": 2.632, + "eu-central-2": 2.895, "eu-west-1": 2.437, "eu-west-2": 2.559, "il-central-1": 2.559, @@ -38284,6 +39146,7 @@ "ap-southeast-2": 5.00808, "ca-central-1": 4.40112, "eu-central-1": 5.26448, + "eu-central-2": 5.79096, "eu-west-1": 4.87448, "eu-west-2": 5.11824, "il-central-1": 5.11824, @@ -38293,31 +39156,49 @@ "us-west-2": 3.99552 }, "d3en.xlarge": { + "ap-northeast-1": 0.762, + "ap-southeast-1": 0.659, + "eu-central-1": 0.693, "eu-west-1": 0.641, "us-east-1": 0.526, "us-west-2": 0.526 }, "d3en.2xlarge": { + "ap-northeast-1": 1.525, + "ap-southeast-1": 1.318, + "eu-central-1": 1.385, "eu-west-1": 1.283, "us-east-1": 1.051, "us-west-2": 1.051 }, "d3en.4xlarge": { + "ap-northeast-1": 3.049, + "ap-southeast-1": 2.636, + "eu-central-1": 2.771, "eu-west-1": 2.566, "us-east-1": 2.103, "us-west-2": 2.103 }, "d3en.6xlarge": { + "ap-northeast-1": 4.574, + "ap-southeast-1": 3.954, + "eu-central-1": 4.156, "eu-west-1": 3.848, "us-east-1": 3.154, "us-west-2": 3.154 }, "d3en.8xlarge": { + "ap-northeast-1": 6.0984, + "ap-southeast-1": 5.27168, + "eu-central-1": 5.54152, "eu-west-1": 5.13104, "us-east-1": 4.20576, "us-west-2": 4.20576 }, "d3en.12xlarge": { + "ap-northeast-1": 9.1476, + "ap-southeast-1": 7.90752, + "eu-central-1": 8.31228, "eu-west-1": 7.69656, "us-east-1": 6.30864, "us-west-2": 6.30864 @@ -38330,6 +39211,14 @@ "us-east-1": 0.0, "us-west-2": 13.10904 }, + "dl2q": { + "eu-central-1": 12.755, + "us-west-2": 9.811 + }, + "dl2q.24xlarge": { + "eu-central-1": 0.0, + "us-west-2": 0.0 + }, "f1": { "eu-central-1": 15.259, "eu-west-1": 15.972, @@ -38339,28 +39228,28 @@ }, "f1.2xlarge": { "ap-southeast-2": 1.981, - "eu-central-1": 0.0, - "eu-west-1": 1.9965, + "eu-central-1": 1.9074, + "eu-west-1": 0.0, "eu-west-2": 1.906, "us-east-1": 1.65, "us-gov-west-1": 2.178, - "us-west-2": 0.0 + "us-west-2": 1.815 }, "f1.4xlarge": { "ap-southeast-2": 3.962, "eu-central-1": 3.815, "eu-west-1": 3.993, "eu-west-2": 3.812, - "us-east-1": 3.63, + "us-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 3.63 + "us-west-2": 3.3 }, "f1.16xlarge": { "ap-southeast-2": 15.848, "eu-west-1": 14.52, - "us-east-1": 13.2, + "us-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 13.2 + "us-west-2": 0.0 }, "g2": { "ap-northeast-1": 3.951, @@ -38375,21 +39264,21 @@ "g2.2xlarge": { "ap-northeast-1": 0.898, "ap-northeast-2": 0.898, - "ap-southeast-1": 1.1, + "ap-southeast-1": 1.0, "ap-southeast-2": 0.898, - "eu-central-1": 0.0, + "eu-central-1": 0.772, "eu-west-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.65, "us-west-1": 0.702, - "us-west-2": 0.715 + "us-west-2": 0.0 }, "g2.8xlarge": { "ap-northeast-1": 3.592, "ap-northeast-2": 3.592, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.0, "ap-southeast-2": 3.592, - "eu-central-1": 0.0, + "eu-central-1": 3.088, "eu-west-1": 0.0, "sa-east-1": 0.0, "us-east-1": 2.6, @@ -38413,32 +39302,32 @@ }, "g3.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.42, "ap-southeast-1": 1.837, "ap-southeast-2": 0.0, - "ca-central-1": 1.416, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 1.425, "eu-west-1": 1.21, - "eu-west-2": 1.429, + "eu-west-2": 1.5719, "us-east-1": 1.254, "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-1": 1.6874, - "us-west-2": 1.254 + "us-west-2": 0.0 }, "g3.8xlarge": { "ap-northeast-1": 3.476, "ap-northeast-2": 2.84, "ap-southeast-1": 3.674, - "ap-southeast-2": 3.508, - "ca-central-1": 2.832, + "ap-southeast-2": 0.0, + "ca-central-1": 3.1152, "eu-central-1": 0.0, "eu-west-1": 2.662, "eu-west-2": 3.1438, "us-east-1": 2.28, "us-east-2": 2.508, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 2.904, + "us-west-1": 3.068, "us-west-2": 2.508 }, "g3.16xlarge": { @@ -38446,15 +39335,15 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 6.68, "ap-southeast-2": 7.016, - "ca-central-1": 5.664, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 4.84, - "eu-west-2": 0.0, + "eu-west-2": 5.716, "us-east-1": 4.56, "us-east-2": 4.56, "us-gov-west-1": 5.28, "us-west-1": 0.0, - "us-west-2": 4.56 + "us-west-2": 0.0 }, "g3s.xlarge": { "ap-northeast-1": 1.04, @@ -38480,10 +39369,10 @@ }, "g4ad.xlarge": { "ap-northeast-1": 0.51082, - "ca-central-1": 0.42263, - "eu-central-1": 0.47327, + "ca-central-1": 0.46489, + "eu-central-1": 0.0, "eu-west-1": 0.46489, - "eu-west-2": 0.44271, + "eu-west-2": 0.48698, "us-east-1": 0.37853, "us-east-2": 0.41638, "us-west-2": 0.37853 @@ -38493,29 +39382,29 @@ "ca-central-1": 0.66463, "eu-central-1": 0.74428, "eu-west-1": 0.60421, - "eu-west-2": 0.63292, - "us-east-1": 0.54117, + "eu-west-2": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.59529 + "us-west-2": 0.54117 }, "g4ad.4xlarge": { "ap-northeast-1": 1.287, "ca-central-1": 0.0, "eu-central-1": 1.1924, - "eu-west-1": 0.968, - "eu-west-2": 0.0, - "us-east-1": 0.9537, - "us-east-2": 0.9537, + "eu-west-1": 0.0, + "eu-west-2": 1.014, + "us-east-1": 0.0, + "us-east-2": 0.867, "us-west-2": 0.9537 }, "g4ad.8xlarge": { - "ap-northeast-1": 0.0, - "ca-central-1": 1.936, - "eu-central-1": 0.0, - "eu-west-1": 1.936, - "eu-west-2": 0.0, + "ap-northeast-1": 2.34, + "ca-central-1": 0.0, + "eu-central-1": 2.168, + "eu-west-1": 0.0, + "eu-west-2": 2.028, "us-east-1": 1.9074, - "us-east-2": 1.734, + "us-east-2": 0.0, "us-west-2": 0.0 }, "g4ad.16xlarge": { @@ -38525,7 +39414,7 @@ "eu-west-1": 4.2592, "eu-west-2": 0.0, "us-east-1": 3.468, - "us-east-2": 3.468, + "us-east-2": 3.8148, "us-west-2": 3.8148 }, "g4dn": { @@ -38553,181 +39442,181 @@ "af-south-1": 0.0, "ap-east-1": 0.81, "ap-northeast-1": 0.71, - "ap-northeast-2": 0.647, - "ap-northeast-3": 0.756, + "ap-northeast-2": 0.686, + "ap-northeast-3": 0.0, "ap-south-1": 0.579, "ap-southeast-1": 0.736, "ap-southeast-2": 0.725, "ca-central-1": 0.0, - "eu-central-1": 0.7, - "eu-north-1": 0.558, - "eu-south-1": 0.656, + "eu-central-1": 0.658, + "eu-north-1": 0.0, + "eu-south-1": 0.616, "eu-west-1": 0.587, "eu-west-2": 0.655, "eu-west-3": 0.615, "me-south-1": 0.0, "sa-east-1": 0.952, "us-east-1": 0.558, - "us-east-2": 0.0, - "us-gov-east-1": 0.703, - "us-gov-west-1": 0.663, - "us-west-1": 0.631, - "us-west-2": 0.526, - "us-west-2-lax-1": 0.631 + "us-east-2": 0.526, + "us-gov-east-1": 0.663, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0, + "us-west-2-lax-1": 0.0 }, "g4dn.metal": { "af-south-1": 10.381, "ap-east-1": 12.048, - "ap-northeast-1": 0.0, + "ap-northeast-1": 10.562, "ap-northeast-2": 9.624, - "ap-northeast-3": 0.0, + "ap-northeast-3": 10.562, "ap-south-1": 8.612, "ap-southeast-1": 0.0, "ap-southeast-2": 10.174, "ca-central-1": 8.687, "eu-central-1": 0.0, - "eu-north-1": 8.3, + "eu-north-1": 0.0, "eu-south-1": 9.16, "eu-west-1": 8.724, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "me-south-1": 0.0, - "sa-east-1": 13.298, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "eu-west-3": 9.148, + "me-south-1": 9.596, + "sa-east-1": 0.0, + "us-east-1": 7.824, + "us-east-2": 7.824, + "us-gov-west-1": 9.862, "us-west-1": 9.389, "us-west-2": 0.0, "us-west-2-lax-1": 9.389 }, "g4dn.2xlarge": { - "af-south-1": 0.998, + "af-south-1": 1.063, "ap-east-1": 1.228, - "ap-northeast-1": 1.015, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 1.081, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.037, - "ca-central-1": 0.835, + "ap-southeast-2": 0.978, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 0.798, + "eu-north-1": 0.846, "eu-south-1": 0.938, - "eu-west-1": 0.0, + "eu-west-1": 0.838, "eu-west-2": 0.88, "eu-west-3": 0.0, - "me-south-1": 0.0, + "me-south-1": 0.982, "sa-east-1": 1.361, "us-east-1": 0.797, "us-east-2": 0.752, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.963, + "us-west-1": 0.0, "us-west-2": 0.752, "us-west-2-lax-1": 0.902 }, "g4dn.4xlarge": { - "af-south-1": 1.597, + "af-south-1": 1.701, "ap-east-1": 1.965, "ap-northeast-1": 1.731, "ap-northeast-2": 1.481, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 1.786, - "ap-southeast-2": 1.566, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.66, "ca-central-1": 1.417, "eu-central-1": 1.505, "eu-north-1": 0.0, "eu-south-1": 1.41, "eu-west-1": 0.0, - "eu-west-2": 1.409, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "me-south-1": 0.0, - "sa-east-1": 2.179, + "me-south-1": 1.573, + "sa-east-1": 2.046, "us-east-1": 1.276, - "us-east-2": 1.204, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 1.609, + "us-gov-west-1": 0.0, "us-west-1": 1.445, - "us-west-2": 1.276, + "us-west-2": 0.0, "us-west-2-lax-1": 1.445 }, "g4dn.8xlarge": { "af-south-1": 3.075, "ap-east-1": 3.351, "ap-northeast-1": 2.938, - "ap-northeast-2": 2.677, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.129, "ap-south-1": 0.0, "ap-southeast-1": 3.045, "ap-southeast-2": 2.83, - "ca-central-1": 0.0, + "ca-central-1": 2.416, "eu-central-1": 2.72, "eu-north-1": 2.447, - "eu-south-1": 2.547, + "eu-south-1": 2.713, "eu-west-1": 2.584, - "eu-west-2": 0.0, - "eu-west-3": 2.697, - "me-south-1": 2.842, + "eu-west-2": 2.711, + "eu-west-3": 2.544, + "me-south-1": 0.0, "sa-east-1": 3.698, "us-east-1": 2.307, "us-east-2": 0.0, "us-gov-east-1": 2.743, "us-gov-west-1": 2.907, "us-west-1": 2.786, - "us-west-2": 0.0, + "us-west-2": 2.307, "us-west-2-lax-1": 2.611 }, "g4dn.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 5.528, "ap-east-1": 6.386, "ap-northeast-1": 5.624, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 4.306, "ap-southeast-1": 5.802, - "ap-southeast-2": 5.087, - "ca-central-1": 0.0, - "eu-central-1": 5.208, - "eu-north-1": 4.15, - "eu-south-1": 0.0, + "ap-southeast-2": 5.392, + "ca-central-1": 4.343, + "eu-central-1": 4.89, + "eu-north-1": 0.0, + "eu-south-1": 4.58, "eu-west-1": 4.362, "eu-west-2": 4.577, "eu-west-3": 4.848, - "me-south-1": 5.11, - "sa-east-1": 6.649, + "me-south-1": 4.798, + "sa-east-1": 7.081, "us-east-1": 4.147, - "us-east-2": 3.912, + "us-east-2": 0.0, "us-gov-east-1": 4.931, "us-gov-west-1": 5.227, - "us-west-1": 0.0, - "us-west-2": 3.912, + "us-west-1": 4.694, + "us-west-2": 4.147, "us-west-2-lax-1": 4.694 }, "g4dn.16xlarge": { - "af-south-1": 6.15, + "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.875, "ap-northeast-2": 0.0, - "ap-northeast-3": 5.875, + "ap-northeast-3": 6.257, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 5.999, + "ap-southeast-1": 6.089, + "ap-southeast-2": 0.0, "ca-central-1": 5.122, - "eu-central-1": 5.794, - "eu-north-1": 4.894, + "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 4.853, + "eu-west-2": 5.092, "eu-west-3": 5.394, - "me-south-1": 5.685, - "sa-east-1": 7.397, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 4.613, "us-east-2": 4.352, "us-gov-east-1": 5.815, "us-gov-west-1": 5.815, - "us-west-1": 5.222, - "us-west-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 4.352, "us-west-2-lax-1": 5.222 }, "g5": { @@ -38752,52 +39641,52 @@ "g5.xlarge": { "ap-northeast-1": 1.459, "ap-northeast-2": 1.237, - "ap-south-1": 1.3288, + "ap-south-1": 0.0, "ap-southeast-2": 1.308, - "ap-southeast-3": 1.5488, + "ap-southeast-3": 0.0, "ca-central-1": 1.117, - "eu-central-1": 0.0, + "eu-central-1": 1.258, "eu-north-1": 1.067, - "eu-west-1": 0.0, + "eu-west-1": 1.2353, "eu-west-2": 1.4047, "il-central-1": 1.29707, - "me-central-1": 1.234, + "me-central-1": 0.0, "sa-east-1": 1.71, "us-east-1": 1.006, - "us-east-2": 0.0, + "us-east-2": 1.1066, "us-west-2": 0.0 }, "g5.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.63933, "ap-south-1": 1.45536, "ap-southeast-2": 0.0, - "ap-southeast-3": 1.69632, + "ap-southeast-3": 1.86595, "ca-central-1": 1.4803, - "eu-central-1": 0.0, + "eu-central-1": 1.66716, "eu-north-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, - "sa-east-1": 2.06016, - "us-east-1": 1.212, + "sa-east-1": 2.26617, + "us-east-1": 0.0, "us-east-2": 1.3332, "us-west-2": 1.212 }, "g5.4xlarge": { "ap-northeast-1": 2.35528, "ap-northeast-2": 1.99691, - "ap-south-1": 0.0, - "ap-southeast-2": 2.32268, + "ap-south-1": 2.1451, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.50025, "ca-central-1": 0.0, - "eu-central-1": 2.03081, - "eu-north-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 1.89472, "eu-west-1": 1.99416, "eu-west-2": 2.06148, "il-central-1": 2.09387, - "me-central-1": 1.99206, + "me-central-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, @@ -38809,15 +39698,15 @@ "ap-northeast-2": 3.31113, "ap-south-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ap-southeast-3": 3.76885, + "ca-central-1": 2.98992, "eu-central-1": 3.06122, - "eu-north-1": 2.85608, - "eu-west-1": 0.0, + "eu-north-1": 2.59644, + "eu-west-1": 2.73271, "eu-west-2": 3.4182, "il-central-1": 3.15628, "me-central-1": 3.00282, - "sa-east-1": 4.57722, + "sa-east-1": 4.16111, "us-east-1": 2.6928, "us-east-2": 2.448, "us-west-2": 2.448, @@ -38827,61 +39716,61 @@ "ap-northeast-1": 8.22609, "ap-northeast-2": 6.97442, "ap-south-1": 6.81091, - "ap-southeast-2": 0.0, + "ap-southeast-2": 8.1122, "ap-southeast-3": 0.0, "ca-central-1": 6.29784, "eu-central-1": 7.09282, - "eu-north-1": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 6.01593, + "eu-west-1": 6.96483, "eu-west-2": 0.0, "il-central-1": 7.31307, "me-central-1": 7.65325, - "sa-east-1": 10.6054, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 5.672, "us-east-2": 0.0, - "us-west-2": 6.2392 + "us-west-2": 5.672 }, "g5.16xlarge": { "ap-northeast-1": 5.94042, "ap-northeast-2": 5.54019, - "ap-south-1": 5.4103, + "ap-south-1": 4.91846, "ap-southeast-2": 5.32561, - "ap-southeast-3": 5.73277, + "ap-southeast-3": 0.0, "ca-central-1": 5.00274, - "eu-central-1": 5.63424, - "eu-north-1": 0.0, - "eu-west-1": 0.0, + "eu-central-1": 5.12204, + "eu-north-1": 4.7788, + "eu-west-1": 5.02961, "eu-west-2": 5.1994, "il-central-1": 4.80099, "me-central-1": 0.0, "sa-east-1": 0.0, "us-east-1": 4.096, - "us-east-2": 4.096, - "us-west-2": 0.0 + "us-east-2": 4.5056, + "us-west-2": 4.5056 }, "g5.24xlarge": { - "ap-northeast-1": 11.81123, + "ap-northeast-1": 0.0, "ap-northeast-2": 11.01545, "ap-south-1": 0.0, "ap-southeast-2": 11.6477, - "ap-southeast-3": 12.5382, - "ca-central-1": 9.94685, + "ap-southeast-3": 11.39836, + "ca-central-1": 0.0, "eu-central-1": 11.20245, - "eu-north-1": 8.63782, - "eu-west-1": 10.00028, + "eu-north-1": 0.0, + "eu-west-1": 9.09117, "eu-west-2": 0.0, "il-central-1": 0.0, - "me-central-1": 9.98976, + "me-central-1": 10.98873, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 8.144, "us-west-2": 8.144 }, "g5.48xlarge": { "ap-northeast-1": 23.62246, - "ap-northeast-2": 20.02809, + "ap-northeast-2": 0.0, "ap-south-1": 19.55855, - "ap-southeast-2": 21.17764, + "ap-southeast-2": 0.0, "ap-southeast-3": 22.79672, "ca-central-1": 18.08518, "eu-central-1": 0.0, @@ -38906,26 +39795,26 @@ }, "g5g.xlarge": { "ap-northeast-1": 0.5669, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.5166, "ap-southeast-1": 0.0, - "eu-central-1": 0.5254, - "eu-south-2": 0.4992, + "eu-central-1": 0.0, + "eu-south-2": 0.0, "us-east-1": 0.4452, - "us-west-2": 0.42 + "us-west-2": 0.0 }, "g5g.metal": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 3.8395, + "ap-southeast-1": 0.0, "eu-central-1": 3.4326, - "eu-south-2": 3.0622, + "eu-south-2": 0.0, "us-east-1": 2.744, "us-west-2": 2.744 }, "g5g.2xlarge": { "ap-northeast-1": 0.7993, - "ap-northeast-2": 0.6839, - "ap-southeast-1": 0.778, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.0, "eu-central-1": 0.6955, "eu-south-2": 0.6205, "us-east-1": 0.0, @@ -38943,7 +39832,7 @@ "g5g.8xlarge": { "ap-northeast-1": 1.9723, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.9198, "eu-central-1": 1.8278, "eu-south-2": 0.0, "us-east-1": 1.372, @@ -38952,12 +39841,67 @@ "g5g.16xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 3.8395, - "eu-central-1": 0.0, - "eu-south-2": 3.0622, + "ap-southeast-1": 0.0, + "eu-central-1": 3.4326, + "eu-south-2": 0.0, "us-east-1": 0.0, "us-west-2": 2.744 }, + "g6": { + "us-east-1": 14.685, + "us-east-2": 14.685, + "us-west-2": 14.685 + }, + "g6.xlarge": { + "us-east-1": 0.88528, + "us-east-2": 0.0, + "us-west-2": 0.88528 + }, + "g6.2xlarge": { + "us-east-1": 1.07536, + "us-east-2": 1.07536, + "us-west-2": 0.9776 + }, + "g6.4xlarge": { + "us-east-1": 1.3232, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.8xlarge": { + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 2.0144 + }, + "g6.12xlarge": { + "us-east-1": 0.0, + "us-east-2": 5.06176, + "us-west-2": 5.06176 + }, + "g6.16xlarge": { + "us-east-1": 0.0, + "us-east-2": 3.73648, + "us-west-2": 0.0 + }, + "g6.24xlarge": { + "us-east-1": 0.0, + "us-east-2": 7.34272, + "us-west-2": 7.34272 + }, + "g6.48xlarge": { + "us-east-1": 13.3504, + "us-east-2": 13.3504, + "us-west-2": 13.3504 + }, + "gr6.4xlarge": { + "us-east-1": 1.5392, + "us-east-2": 1.5392, + "us-west-2": 1.5392 + }, + "gr6.8xlarge": { + "us-east-1": 2.4464, + "us-east-2": 2.4464, + "us-west-2": 2.4464 + }, "h1": { "eu-west-1": 4.567, "us-east-1": 4.118, @@ -38966,7 +39910,7 @@ }, "h1.2xlarge": { "eu-west-1": 0.653, - "us-east-1": 0.0, + "us-east-1": 0.586, "us-east-2": 0.586, "us-west-2": 0.0 }, @@ -38978,18 +39922,19 @@ }, "h1.8xlarge": { "eu-west-1": 2.612, - "us-east-1": 2.342, - "us-east-2": 2.342, + "us-east-1": 2.2, + "us-east-2": 2.2, "us-west-2": 0.0 }, "h1.16xlarge": { "eu-west-1": 4.888, - "us-east-1": 0.0, + "us-east-1": 4.4, "us-east-2": 0.0, "us-west-2": 0.0 }, "hpc6a.48xlarge": { "ap-southeast-1": 3.3205, + "ap-southeast-2": 3.7609, "eu-north-1": 3.093, "us-east-2": 2.88, "us-gov-east-1": 3.467, @@ -39000,14 +39945,47 @@ "us-east-2": 5.7, "us-gov-west-1": 6.8544 }, + "hpc7a.12xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.24xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.48xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.96xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, "hpc7g.4xlarge": { - "us-east-1": 1.6832 + "ap-northeast-1": 2.1117, + "eu-west-1": 1.8059, + "us-east-1": 1.6832, + "us-gov-west-1": 2.0262 }, "hpc7g.8xlarge": { - "us-east-1": 1.6832 + "ap-northeast-1": 2.1117, + "eu-west-1": 1.8059, + "us-east-1": 1.6832, + "us-gov-west-1": 2.0262 }, "hpc7g.16xlarge": { - "us-east-1": 1.6832 + "ap-northeast-1": 2.1117, + "eu-west-1": 1.8059, + "us-east-1": 1.6832, + "us-gov-west-1": 2.0262 }, "hs1.8xlarge": { "ap-northeast-1": 5.4, @@ -39048,62 +40026,62 @@ }, "i2.xlarge": { "ap-northeast-1": 1.101, - "ap-northeast-2": 1.001, - "ap-south-1": 0.0, + "ap-northeast-2": 1.1011, + "ap-south-1": 0.967, "ap-southeast-1": 1.12, - "ap-southeast-2": 1.12, + "ap-southeast-2": 0.0, "eu-central-1": 1.013, "eu-west-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.938, "us-east-2": 0.853, "us-gov-west-1": 1.023, "us-west-1": 0.938, - "us-west-2": 0.853 + "us-west-2": 0.938 }, "i2.2xlarge": { - "ap-northeast-1": 2.201, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.2011, "ap-south-1": 2.126, - "ap-southeast-1": 2.239, - "ap-southeast-2": 0.0, + "ap-southeast-1": 2.035, + "ap-southeast-2": 2.035, "eu-central-1": 2.228, "eu-west-1": 2.064, "sa-east-1": 0.0, "us-east-1": 1.876, - "us-east-2": 0.0, + "us-east-2": 1.705, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 1.876, "us-west-2": 1.705 }, "i2.4xlarge": { - "ap-northeast-1": 4.402, - "ap-northeast-2": 0.0, - "ap-south-1": 0.0, + "ap-northeast-1": 4.002, + "ap-northeast-2": 4.4022, + "ap-south-1": 4.254, "ap-southeast-1": 0.0, "ap-southeast-2": 4.477, "eu-central-1": 4.051, "eu-west-1": 4.126, "sa-east-1": 0.0, - "us-east-1": 3.41, - "us-east-2": 3.41, + "us-east-1": 3.751, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 3.41 + "us-west-2": 0.0 }, "i2.8xlarge": { "ap-northeast-1": 8.004, "ap-northeast-2": 8.004, "ap-south-1": 7.733, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 8.14, "eu-central-1": 8.102, - "eu-west-1": 0.0, + "eu-west-1": 7.502, "sa-east-1": 0.0, - "us-east-1": 6.82, + "us-east-1": 0.0, "us-east-2": 6.82, - "us-gov-west-1": 8.184, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 7.502, "us-west-2": 6.82 }, "i3": { @@ -39138,54 +40116,54 @@ "us-west-2": 5.491 }, "i3.large": { - "af-south-1": 0.226, - "ap-east-1": 0.227, - "ap-northeast-1": 0.183, - "ap-northeast-2": 0.183, + "af-south-1": 0.0, + "ap-east-1": 0.206, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.201, "ap-northeast-3": 0.183, "ap-south-1": 0.195, - "ap-south-2": 0.177, + "ap-south-2": 0.0, "ap-southeast-1": 0.206, "ap-southeast-2": 0.206, - "ap-southeast-3": 0.187, - "ap-southeast-4": 0.206, - "ca-central-1": 0.189, + "ap-southeast-3": 0.206, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.163, + "eu-north-1": 0.179, "eu-south-1": 0.199, - "eu-south-2": 0.189, - "eu-west-1": 0.0, - "eu-west-2": 0.199, - "eu-west-3": 0.199, - "il-central-1": 0.181, - "me-central-1": 0.189, - "me-south-1": 0.189, + "eu-south-2": 0.0, + "eu-west-1": 0.172, + "eu-west-2": 0.0, + "eu-west-3": 0.181, + "il-central-1": 0.0, + "me-central-1": 0.208, + "me-south-1": 0.208, "sa-east-1": 0.274, - "us-east-1": 0.156, + "us-east-1": 0.172, "us-east-2": 0.0, "us-gov-east-1": 0.188, "us-gov-west-1": 0.188, - "us-west-1": 0.172, + "us-west-1": 0.189, "us-west-2": 0.172 }, "i3.xlarge": { "af-south-1": 0.41, - "ap-east-1": 0.412, + "ap-east-1": 0.0, "ap-northeast-1": 0.403, "ap-northeast-2": 0.366, "ap-northeast-3": 0.0, "ap-south-1": 0.354, "ap-south-2": 0.354, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.374, + "ap-southeast-2": 0.411, + "ap-southeast-3": 0.411, "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.409, - "eu-north-1": 0.326, - "eu-south-1": 0.398, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.344, "eu-west-1": 0.0, "eu-west-2": 0.398, @@ -39196,9 +40174,9 @@ "sa-east-1": 0.548, "us-east-1": 0.343, "us-east-2": 0.343, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-east-1": 0.414, + "us-gov-west-1": 0.414, + "us-west-1": 0.378, "us-west-2": 0.0 }, "i3.metal": { @@ -39211,83 +40189,83 @@ "ap-southeast-1": 5.984, "ap-southeast-2": 5.984, "ca-central-1": 5.504, - "eu-central-1": 0.0, - "eu-north-1": 5.216, + "eu-central-1": 5.952, + "eu-north-1": 0.0, "eu-south-1": 5.792, - "eu-west-1": 0.0, + "eu-west-1": 5.504, "eu-west-2": 0.0, - "eu-west-3": 5.792, + "eu-west-3": 0.0, "me-south-1": 6.054, "sa-east-1": 7.968, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 4.992, "us-gov-east-1": 6.016, "us-gov-west-1": 6.016, - "us-west-1": 5.504, + "us-west-1": 0.0, "us-west-2": 0.0 }, "i3.2xlarge": { "af-south-1": 0.82, "ap-east-1": 0.824, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.805, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.732, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.708, "ap-south-2": 0.708, "ap-southeast-1": 0.0, "ap-southeast-2": 0.823, "ap-southeast-3": 0.823, "ap-southeast-4": 0.0, - "ca-central-1": 0.757, - "eu-central-1": 0.818, - "eu-central-2": 0.0, - "eu-north-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.744, + "eu-central-2": 0.9, + "eu-north-1": 0.652, "eu-south-1": 0.724, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.796, - "eu-west-3": 0.0, + "eu-west-1": 0.757, + "eu-west-2": 0.0, + "eu-west-3": 0.724, "il-central-1": 0.795, "me-central-1": 0.757, "me-south-1": 0.0, "sa-east-1": 0.996, - "us-east-1": 0.686, + "us-east-1": 0.624, "us-east-2": 0.0, - "us-gov-east-1": 0.827, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.688, "us-west-2": 0.624 }, "i3.4xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.804, "ap-east-1": 0.0, - "ap-northeast-1": 1.464, - "ap-northeast-2": 1.464, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.61, - "ap-south-1": 1.416, + "ap-south-1": 0.0, "ap-south-2": 1.558, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.496, "ap-southeast-2": 1.496, "ap-southeast-3": 1.646, "ap-southeast-4": 1.646, "ca-central-1": 1.514, "eu-central-1": 0.0, - "eu-central-2": 1.637, - "eu-north-1": 1.434, + "eu-central-2": 1.8, + "eu-north-1": 0.0, "eu-south-1": 1.593, - "eu-south-2": 0.0, + "eu-south-2": 1.376, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 1.593, + "eu-west-3": 1.448, "il-central-1": 0.0, "me-central-1": 1.514, "me-south-1": 0.0, - "sa-east-1": 2.191, + "sa-east-1": 1.992, "us-east-1": 0.0, "us-east-2": 1.373, "us-gov-east-1": 1.504, "us-gov-west-1": 1.654, - "us-west-1": 1.514, + "us-west-1": 0.0, "us-west-2": 1.373 }, "i3.8xlarge": { @@ -39308,29 +40286,29 @@ "eu-north-1": 2.608, "eu-south-1": 0.0, "eu-south-2": 2.752, - "eu-west-1": 0.0, + "eu-west-1": 3.027, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 2.896, "il-central-1": 0.0, - "me-central-1": 3.33, - "me-south-1": 3.33, + "me-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 4.382, "us-east-1": 2.746, - "us-east-2": 2.746, - "us-gov-east-1": 3.008, + "us-east-2": 0.0, + "us-gov-east-1": 3.309, "us-gov-west-1": 3.309, - "us-west-1": 3.027, - "us-west-2": 2.746 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "i3.16xlarge": { "af-south-1": 6.56, "ap-east-1": 6.592, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.856, "ap-northeast-2": 5.856, "ap-northeast-3": 0.0, "ap-south-1": 5.664, "ap-south-2": 5.664, - "ap-southeast-1": 5.984, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.984, "ap-southeast-3": 5.984, "ap-southeast-4": 5.984, @@ -39338,21 +40316,21 @@ "eu-central-1": 5.952, "eu-central-2": 6.547, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 5.792, "eu-south-2": 5.504, "eu-west-1": 5.504, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 5.792, + "eu-west-3": 5.792, "il-central-1": 0.0, - "me-central-1": 6.054, - "me-south-1": 6.054, - "sa-east-1": 7.968, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 4.992, - "us-east-2": 4.992, + "us-east-2": 0.0, "us-gov-east-1": 6.016, "us-gov-west-1": 6.016, "us-west-1": 5.504, - "us-west-2": 4.992 + "us-west-2": 0.0 }, "i3en": { "af-south-1": 15.682, @@ -39365,6 +40343,7 @@ "ap-southeast-2": 14.309, "ap-southeast-3": 14.309, "ap-southeast-4": 14.309, + "ca-west-1": 13.2, "eu-central-1": 14.256, "eu-central-2": 15.682, "eu-south-1": 13.844, @@ -39390,61 +40369,63 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.274, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.271, + "ap-southeast-2": 0.289, "ap-southeast-3": 0.271, "ap-southeast-4": 0.271, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.27, "eu-central-2": 0.316, "eu-north-1": 0.252, - "eu-south-1": 0.279, - "eu-south-2": 0.25, + "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.25, "eu-west-2": 0.0, "eu-west-3": 0.263, "il-central-1": 0.263, "me-central-1": 0.275, "me-south-1": 0.292, - "sa-east-1": 0.0, + "sa-east-1": 0.383, "us-east-1": 0.241, - "us-east-2": 0.241, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 0.273, + "us-west-1": 0.25, "us-west-2": 0.241, "us-west-2-lax-1": 0.271 }, "i3en.xlarge": { - "af-south-1": 0.633, + "af-south-1": 0.0, "ap-east-1": 0.635, - "ap-northeast-1": 0.532, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.532, "ap-south-1": 0.0, "ap-south-2": 0.547, - "ap-southeast-1": 0.542, - "ap-southeast-2": 0.577, + "ap-southeast-1": 0.577, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.577, + "ap-southeast-4": 0.542, "ca-central-1": 0.5, - "eu-central-1": 0.54, + "ca-west-1": 0.533, + "eu-central-1": 0.0, "eu-central-2": 0.633, "eu-north-1": 0.0, "eu-south-1": 0.559, - "eu-south-2": 0.0, - "eu-west-1": 0.533, + "eu-south-2": 0.533, + "eu-west-1": 0.0, "eu-west-2": 0.526, "eu-west-3": 0.526, "il-central-1": 0.525, - "me-central-1": 0.55, - "me-south-1": 0.548, + "me-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.481, "us-gov-east-1": 0.546, - "us-gov-west-1": 0.546, + "us-gov-west-1": 0.581, "us-west-1": 0.533, "us-west-2": 0.481, "us-west-2-lax-1": 0.542 @@ -39452,21 +40433,22 @@ "i3en.metal": { "af-south-1": 0.0, "ap-east-1": 14.319, - "ap-northeast-1": 12.768, + "ap-northeast-1": 0.0, "ap-northeast-2": 12.768, "ap-northeast-3": 12.768, - "ap-south-1": 12.336, - "ap-south-2": 12.336, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 13.008, - "ap-southeast-2": 0.0, + "ap-southeast-2": 13.008, "ap-southeast-3": 13.008, "ap-southeast-4": 13.008, - "ca-central-1": 12.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 12.96, "eu-central-2": 14.256, "eu-north-1": 0.0, "eu-south-1": 12.586, - "eu-south-2": 0.0, + "eu-south-2": 12.0, "eu-west-1": 12.0, "eu-west-2": 12.624, "eu-west-3": 12.624, @@ -39486,63 +40468,65 @@ "af-south-1": 0.0, "ap-east-1": 1.271, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 1.133, + "ap-northeast-3": 1.064, + "ap-south-1": 1.028, "ap-south-2": 1.095, "ap-southeast-1": 1.155, - "ap-southeast-2": 1.084, - "ap-southeast-3": 0.0, - "ap-southeast-4": 1.084, - "ca-central-1": 1.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.155, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 1.08, - "eu-central-2": 1.188, + "eu-central-2": 0.0, "eu-north-1": 1.01, - "eu-south-1": 1.117, - "eu-south-2": 1.065, + "eu-south-1": 1.049, + "eu-south-2": 1.0, "eu-west-1": 1.0, "eu-west-2": 0.0, "eu-west-3": 1.052, - "il-central-1": 1.118, - "me-central-1": 1.172, + "il-central-1": 0.0, + "me-central-1": 1.1, "me-south-1": 1.095, - "sa-east-1": 0.0, + "sa-east-1": 1.534, "us-east-1": 0.0, - "us-east-2": 0.963, + "us-east-2": 0.904, "us-gov-east-1": 1.092, "us-gov-west-1": 0.0, "us-west-1": 1.065, - "us-west-2": 0.904, - "us-west-2-lax-1": 0.0 + "us-west-2": 0.963, + "us-west-2-lax-1": 1.085 }, "i3en.3xlarge": { "af-south-1": 0.0, - "ap-east-1": 1.906, - "ap-northeast-1": 1.7, + "ap-east-1": 1.79, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.7, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 1.626, + "ap-south-2": 1.542, + "ap-southeast-1": 1.732, "ap-southeast-2": 1.732, "ap-southeast-3": 1.626, "ap-southeast-4": 1.732, - "ca-central-1": 0.0, + "ca-central-1": 1.598, + "ca-west-1": 1.598, "eu-central-1": 1.725, "eu-central-2": 1.898, "eu-north-1": 1.422, - "eu-south-1": 1.676, - "eu-south-2": 1.598, - "eu-west-1": 0.0, + "eu-south-1": 1.573, + "eu-south-2": 0.0, + "eu-west-1": 1.598, "eu-west-2": 1.578, "eu-west-3": 1.578, - "il-central-1": 1.575, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 1.643, + "me-south-1": 0.0, "sa-east-1": 2.16, "us-east-1": 0.0, "us-east-2": 1.356, - "us-gov-east-1": 0.0, + "us-gov-east-1": 1.638, "us-gov-west-1": 1.744, "us-west-1": 0.0, "us-west-2": 1.356, @@ -39551,82 +40535,85 @@ "i3en.6xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 3.4, + "ap-northeast-1": 0.0, "ap-northeast-2": 3.4, - "ap-northeast-3": 3.398, - "ap-south-1": 3.084, + "ap-northeast-3": 3.192, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 3.252, "ap-southeast-2": 3.252, - "ap-southeast-3": 0.0, + "ap-southeast-3": 3.252, "ap-southeast-4": 3.252, "ca-central-1": 3.195, + "ca-west-1": 3.0, "eu-central-1": 3.451, - "eu-central-2": 3.564, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 3.146, + "eu-south-1": 3.352, "eu-south-2": 3.0, - "eu-west-1": 3.195, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.156, "il-central-1": 3.15, - "me-central-1": 3.515, - "me-south-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 3.5, "sa-east-1": 4.32, - "us-east-1": 2.888, - "us-east-2": 2.888, + "us-east-1": 2.712, + "us-east-2": 2.712, "us-gov-east-1": 3.276, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.489, "us-west-1": 0.0, - "us-west-2": 2.888, + "us-west-2": 0.0, "us-west-2-lax-1": 3.254 }, "i3en.12xlarge": { "af-south-1": 7.593, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 7.16, + "ap-northeast-1": 6.799, "ap-northeast-2": 6.384, "ap-northeast-3": 6.796, "ap-south-1": 6.569, "ap-south-2": 0.0, - "ap-southeast-1": 6.928, - "ap-southeast-2": 6.928, + "ap-southeast-1": 0.0, + "ap-southeast-2": 6.504, "ap-southeast-3": 6.928, "ap-southeast-4": 6.928, - "ca-central-1": 6.39, - "eu-central-1": 6.48, + "ca-central-1": 0.0, + "ca-west-1": 6.0, + "eu-central-1": 6.901, "eu-central-2": 7.591, "eu-north-1": 6.058, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 6.39, + "eu-west-1": 6.0, "eu-west-2": 0.0, "eu-west-3": 6.312, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 5.776, + "us-east-1": 5.424, "us-east-2": 0.0, "us-gov-east-1": 6.977, - "us-gov-west-1": 0.0, - "us-west-1": 6.0, - "us-west-2": 0.0, + "us-gov-west-1": 6.977, + "us-west-1": 0.0, + "us-west-2": 5.424, "us-west-2-lax-1": 6.509 }, "i3en.24xlarge": { "af-south-1": 14.256, "ap-east-1": 14.319, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 12.768, + "ap-northeast-2": 12.768, "ap-northeast-3": 12.768, - "ap-south-1": 0.0, + "ap-south-1": 12.336, "ap-south-2": 12.336, "ap-southeast-1": 0.0, - "ap-southeast-2": 13.008, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 12.0, + "ca-central-1": 0.0, + "ca-west-1": 12.0, "eu-central-1": 0.0, "eu-central-2": 14.256, "eu-north-1": 0.0, @@ -39638,19 +40625,20 @@ "il-central-1": 12.6, "me-central-1": 13.2, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 17.28, "us-east-1": 10.848, "us-east-2": 10.848, "us-gov-east-1": 13.104, "us-gov-west-1": 13.104, "us-west-1": 0.0, - "us-west-2": 10.848, + "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "i3p.16xlarge": { "us-gov-west-1": 6.016 }, "i4g": { + "ap-southeast-1": 6.517, "ca-central-1": 5.991, "eu-west-1": 5.991, "us-east-1": 5.436, @@ -39658,27 +40646,31 @@ "us-west-2": 5.436 }, "i4g.large": { + "ap-southeast-1": 0.18513, "ca-central-1": 0.0, "eu-west-1": 0.18722, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.16988, "us-west-2": 0.15444 }, "i4g.xlarge": { - "ca-central-1": 0.37444, - "eu-west-1": 0.0, + "ap-southeast-1": 0.40729, + "ca-central-1": 0.3404, + "eu-west-1": 0.37444, "us-east-1": 0.0, "us-east-2": 0.33977, - "us-west-2": 0.0 + "us-west-2": 0.33977 }, "i4g.2xlarge": { + "ap-southeast-1": 0.81457, "ca-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.74888, "us-east-1": 0.61776, "us-east-2": 0.67954, "us-west-2": 0.61776 }, "i4g.4xlarge": { + "ap-southeast-1": 1.62914, "ca-central-1": 1.36159, "eu-west-1": 1.49775, "us-east-1": 1.23552, @@ -39686,18 +40678,20 @@ "us-west-2": 1.35907 }, "i4g.8xlarge": { + "ap-southeast-1": 2.96208, "ca-central-1": 2.72319, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 2.47104, - "us-west-2": 2.47104 + "eu-west-1": 2.72319, + "us-east-1": 2.71814, + "us-east-2": 0.0, + "us-west-2": 0.0 }, "i4g.16xlarge": { + "ap-southeast-1": 5.92416, "ca-central-1": 0.0, "eu-west-1": 5.44637, "us-east-1": 4.94208, "us-east-2": 4.94208, - "us-west-2": 4.94208 + "us-west-2": 0.0 }, "i4i": { "af-south-1": 15.875, @@ -39706,17 +40700,22 @@ "ap-northeast-2": 14.172, "ap-northeast-3": 14.172, "ap-south-1": 13.707, + "ap-south-2": 13.707, "ap-southeast-1": 14.481, "ap-southeast-2": 14.481, + "ap-southeast-3": 14.481, "ap-southeast-4": 14.481, "ca-central-1": 13.32, + "ca-west-1": 13.32, "eu-central-1": 14.404, + "eu-central-2": 15.844, "eu-north-1": 12.623, "eu-south-1": 14.017, "eu-west-1": 13.32, "eu-west-2": 14.017, "eu-west-3": 14.017, "il-central-1": 13.986, + "me-central-1": 14.636, "me-south-1": 14.636, "sa-east-1": 19.283, "us-east-1": 12.081, @@ -39727,52 +40726,62 @@ "us-west-2": 12.081 }, "i4i.large": { - "af-south-1": 0.226, + "af-south-1": 0.248, "ap-east-1": 0.249, "ap-northeast-1": 0.221, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.195, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.206, + "ap-southeast-2": 0.226, + "ap-southeast-3": 0.226, "ap-southeast-4": 0.0, "ca-central-1": 0.208, + "ca-west-1": 0.189, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.189, "eu-west-2": 0.219, - "eu-west-3": 0.219, + "eu-west-3": 0.199, "il-central-1": 0.199, - "me-south-1": 0.208, - "sa-east-1": 0.301, + "me-central-1": 0.229, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.172, "us-east-2": 0.189, "us-gov-east-1": 0.227, "us-gov-west-1": 0.227, - "us-west-1": 0.208, + "us-west-1": 0.189, "us-west-2": 0.0 }, "i4i.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.499, + "ap-east-1": 0.0, "ap-northeast-1": 0.443, "ap-northeast-2": 0.443, - "ap-northeast-3": 0.403, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.428, "ap-southeast-1": 0.453, - "ap-southeast-2": 0.453, - "ap-southeast-4": 0.453, + "ap-southeast-2": 0.411, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.411, "ca-central-1": 0.0, + "ca-west-1": 0.378, "eu-central-1": 0.45, - "eu-north-1": 0.394, + "eu-central-2": 0.495, + "eu-north-1": 0.359, "eu-south-1": 0.438, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 0.378, + "eu-west-2": 0.438, "eu-west-3": 0.438, "il-central-1": 0.437, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.603, + "sa-east-1": 0.0, "us-east-1": 0.343, "us-east-2": 0.0, "us-gov-east-1": 0.0, @@ -39783,102 +40792,122 @@ "i4i.metal": { "af-south-1": 14.432, "ap-east-1": 14.502, - "ap-northeast-1": 12.883, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 12.883, - "ap-south-1": 0.0, - "ap-southeast-1": 13.165, + "ap-south-1": 12.461, + "ap-south-2": 12.461, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 13.165, "ap-southeast-4": 13.165, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 13.094, + "eu-central-2": 14.404, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 12.109, "eu-west-2": 12.742, "eu-west-3": 12.742, - "il-central-1": 0.0, + "il-central-1": 12.714, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 10.982, "us-east-2": 10.982, "us-gov-east-1": 13.235, - "us-gov-west-1": 0.0, - "us-west-1": 12.109, + "us-gov-west-1": 13.235, + "us-west-1": 0.0, "us-west-2": 10.982 }, "i4i.2xlarge": { - "af-south-1": 0.902, - "ap-east-1": 0.997, + "af-south-1": 0.992, + "ap-east-1": 0.906, "ap-northeast-1": 0.886, "ap-northeast-2": 0.805, "ap-northeast-3": 0.0, "ap-south-1": 0.857, + "ap-south-2": 0.779, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.823, - "ap-southeast-4": 0.905, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.905, + "ap-southeast-4": 0.823, "ca-central-1": 0.757, - "eu-central-1": 0.818, + "ca-west-1": 0.757, + "eu-central-1": 0.0, + "eu-central-2": 0.9, "eu-north-1": 0.789, "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.796, "eu-west-3": 0.876, - "il-central-1": 0.795, + "il-central-1": 0.874, + "me-central-1": 0.0, "me-south-1": 0.915, "sa-east-1": 1.205, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.827, + "us-gov-east-1": 0.827, + "us-gov-west-1": 0.91, "us-west-1": 0.832, "us-west-2": 0.686 }, "i4i.4xlarge": { "af-south-1": 1.804, "ap-east-1": 1.994, - "ap-northeast-1": 1.61, + "ap-northeast-1": 1.771, "ap-northeast-2": 1.61, "ap-northeast-3": 1.61, "ap-south-1": 1.713, - "ap-southeast-1": 1.646, - "ap-southeast-2": 1.81, + "ap-south-2": 1.713, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.646, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 1.578, + "eu-central-2": 1.981, + "eu-north-1": 1.434, "eu-south-1": 1.593, - "eu-west-1": 1.665, + "eu-west-1": 1.514, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 1.593, "il-central-1": 0.0, - "me-south-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 1.83, "sa-east-1": 2.41, - "us-east-1": 1.373, + "us-east-1": 0.0, "us-east-2": 1.51, - "us-gov-east-1": 1.82, + "us-gov-east-1": 1.654, "us-gov-west-1": 0.0, - "us-west-1": 1.514, - "us-west-2": 0.0 + "us-west-1": 1.665, + "us-west-2": 1.373 }, "i4i.8xlarge": { "af-south-1": 3.608, "ap-east-1": 3.988, - "ap-northeast-1": 3.221, - "ap-northeast-2": 3.221, + "ap-northeast-1": 3.543, + "ap-northeast-2": 3.543, "ap-northeast-3": 0.0, "ap-south-1": 3.115, - "ap-southeast-1": 3.291, + "ap-south-2": 0.0, + "ap-southeast-1": 3.62, "ap-southeast-2": 0.0, - "ap-southeast-4": 3.62, + "ap-southeast-3": 0.0, + "ap-southeast-4": 3.291, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 3.027, + "eu-central-1": 3.601, + "eu-central-2": 3.601, "eu-north-1": 2.869, - "eu-south-1": 0.0, - "eu-west-1": 3.027, + "eu-south-1": 3.504, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 3.179, + "me-central-1": 3.326, "me-south-1": 3.659, "sa-east-1": 4.382, "us-east-1": 0.0, @@ -39888,51 +40917,123 @@ "us-west-1": 0.0, "us-west-2": 3.02 }, + "i4i.12xlarge": { + "af-south-1": 0.0, + "ap-east-1": 5.982, + "ap-northeast-1": 0.0, + "ap-northeast-2": 4.831, + "ap-northeast-3": 4.831, + "ap-south-1": 0.0, + "ap-south-2": 4.673, + "ap-southeast-1": 5.43, + "ap-southeast-2": 5.43, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 4.995, + "ca-west-1": 0.0, + "eu-central-1": 4.91, + "eu-central-2": 0.0, + "eu-north-1": 4.734, + "eu-south-1": 4.778, + "eu-west-1": 4.995, + "eu-west-2": 5.256, + "eu-west-3": 4.778, + "me-central-1": 4.99, + "me-south-1": 4.99, + "sa-east-1": 6.574, + "us-east-1": 4.118, + "us-east-2": 4.118, + "us-gov-east-1": 5.46, + "us-gov-west-1": 0.0, + "us-west-1": 4.541, + "us-west-2": 4.53 + }, "i4i.16xlarge": { "af-south-1": 0.0, "ap-east-1": 7.976, - "ap-northeast-1": 0.0, + "ap-northeast-1": 7.086, "ap-northeast-2": 0.0, "ap-northeast-3": 7.086, "ap-south-1": 6.23, + "ap-south-2": 6.853, "ap-southeast-1": 0.0, "ap-southeast-2": 6.582, + "ap-southeast-3": 0.0, "ap-southeast-4": 7.241, "ca-central-1": 6.66, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 7.922, "eu-north-1": 0.0, - "eu-south-1": 6.371, + "eu-south-1": 7.008, "eu-west-1": 6.66, "eu-west-2": 7.008, "eu-west-3": 7.008, "il-central-1": 6.993, - "me-south-1": 6.653, - "sa-east-1": 9.641, - "us-east-1": 6.04, - "us-east-2": 6.04, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 8.765, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 7.279, "us-gov-west-1": 6.618, + "us-west-1": 6.66, + "us-west-2": 0.0 + }, + "i4i.24xlarge": { + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 10.62864, + "ap-northeast-2": 0.0, + "ap-northeast-3": 9.6624, + "ap-south-1": 0.0, + "ap-south-2": 9.3456, + "ap-southeast-1": 9.8736, + "ap-southeast-2": 10.86096, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 9.98976, + "ca-west-1": 9.98976, + "eu-central-1": 10.80288, + "eu-central-2": 10.80288, + "eu-north-1": 0.0, + "eu-south-1": 10.51248, + "eu-west-1": 0.0, + "eu-west-2": 10.51248, + "eu-west-3": 9.5568, + "me-central-1": 9.9792, + "me-south-1": 9.9792, + "sa-east-1": 14.46192, + "us-east-1": 9.06048, + "us-east-2": 9.06048, + "us-gov-east-1": 10.91904, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 6.04 + "us-west-2": 0.0 }, "i4i.32xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 12.8832, "ap-northeast-2": 0.0, "ap-northeast-3": 12.8832, "ap-south-1": 12.4608, + "ap-south-2": 12.4608, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 13.1648, "ap-southeast-4": 13.1648, "ca-central-1": 12.1088, + "ca-west-1": 0.0, "eu-central-1": 13.0944, - "eu-north-1": 11.4752, - "eu-south-1": 12.7424, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 12.1088, "eu-west-2": 0.0, "eu-west-3": 12.7424, "il-central-1": 12.71424, + "me-central-1": 0.0, "me-south-1": 13.3056, "sa-east-1": 17.5296, "us-east-1": 10.9824, @@ -39940,7 +41041,7 @@ "us-gov-east-1": 13.2352, "us-gov-west-1": 0.0, "us-west-1": 12.1088, - "us-west-2": 10.9824 + "us-west-2": 0.0 }, "im4gn": { "ap-northeast-1": 7.511, @@ -39956,62 +41057,62 @@ "us-west-2": 6.403 }, "im4gn.large": { - "ap-northeast-1": 0.23472, + "ap-northeast-1": 0.21338, "ap-southeast-1": 0.23985, - "ap-southeast-2": 0.21804, + "ap-southeast-2": 0.23985, "ca-central-1": 0.0, - "eu-central-1": 0.23856, + "eu-central-1": 0.21688, "eu-west-1": 0.22061, - "eu-west-2": 0.0, + "eu-west-2": 0.21105, "eu-west-3": 0.21105, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.1819, "us-west-2": 0.0 }, "im4gn.xlarge": { - "ap-northeast-1": 0.46943, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.43608, "ap-southeast-2": 0.43608, "ca-central-1": 0.4011, "eu-central-1": 0.43375, - "eu-west-1": 0.4011, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, - "us-east-1": 0.40017, - "us-east-2": 0.0, + "us-east-1": 0.36379, + "us-east-2": 0.36379, "us-west-2": 0.0 }, "im4gn.2xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.87217, + "ap-northeast-1": 0.93886, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 0.88243, - "eu-central-1": 0.95425, - "eu-west-1": 0.0, - "eu-west-2": 0.84418, + "ca-central-1": 0.80221, + "eu-central-1": 0.8675, + "eu-west-1": 0.88243, + "eu-west-2": 0.9286, "eu-west-3": 0.9286, - "us-east-1": 0.72758, - "us-east-2": 0.80034, - "us-west-2": 0.72758 + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.80034 }, "im4gn.4xlarge": { - "ap-northeast-1": 1.70702, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-northeast-1": 1.87773, + "ap-southeast-1": 1.74434, + "ap-southeast-2": 1.74434, "ca-central-1": 1.60442, "eu-central-1": 1.90851, - "eu-west-1": 0.0, - "eu-west-2": 1.68837, + "eu-west-1": 1.76486, + "eu-west-2": 0.0, "eu-west-3": 1.8572, "us-east-1": 1.45517, "us-east-2": 1.45517, - "us-west-2": 0.0 + "us-west-2": 1.60068 }, "im4gn.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.75545, "ap-southeast-1": 3.48867, "ap-southeast-2": 3.83754, - "ca-central-1": 0.0, + "ca-central-1": 3.20883, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 3.71441, @@ -40024,7 +41125,7 @@ "ap-northeast-1": 6.8281, "ap-southeast-1": 6.97734, "ap-southeast-2": 6.97734, - "ca-central-1": 0.0, + "ca-central-1": 6.41766, "eu-central-1": 6.94003, "eu-west-1": 6.41766, "eu-west-2": 0.0, @@ -40059,54 +41160,54 @@ "inf1.xlarge": { "ap-east-1": 0.352, "ap-northeast-1": 0.327, - "ap-northeast-2": 0.298, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.285, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 0.285, "eu-north-1": 0.0, "eu-south-1": 0.285, "eu-west-1": 0.0, - "eu-west-2": 0.267, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.283, "me-south-1": 0.28, "sa-east-1": 0.4, - "us-east-1": 0.242, + "us-east-1": 0.228, "us-east-2": 0.228, "us-gov-east-1": 0.288, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.288, "us-west-1": 0.0, "us-west-2": 0.0 }, "inf1.2xlarge": { - "ap-east-1": 0.0, + "ap-east-1": 0.558, "ap-northeast-1": 0.489, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.381, "ap-southeast-1": 0.518, "ap-southeast-2": 0.0, - "ca-central-1": 0.403, - "eu-central-1": 0.48, - "eu-north-1": 0.408, - "eu-south-1": 0.452, - "eu-west-1": 0.403, + "ca-central-1": 0.428, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.423, "me-south-1": 0.444, "sa-east-1": 0.634, - "us-east-1": 0.384, - "us-east-2": 0.0, - "us-gov-east-1": 0.484, + "us-east-1": 0.362, + "us-east-2": 0.384, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.456, - "us-west-1": 0.461, + "us-west-1": 0.435, "us-west-2": 0.384 }, "inf1.6xlarge": { "ap-east-1": 1.819, - "ap-northeast-1": 1.69, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.453, "ap-northeast-3": 0.0, "ap-south-1": 1.316, @@ -40115,21 +41216,21 @@ "ca-central-1": 1.394, "eu-central-1": 1.475, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 1.382, "eu-west-1": 0.0, - "eu-west-2": 1.465, + "eu-west-2": 0.0, "eu-west-3": 1.379, "me-south-1": 0.0, - "sa-east-1": 2.067, + "sa-east-1": 1.95, "us-east-1": 1.18, - "us-east-2": 0.0, + "us-east-2": 1.18, "us-gov-east-1": 1.488, "us-gov-west-1": 1.578, "us-west-1": 1.503, "us-west-2": 0.0 }, "inf1.24xlarge": { - "af-south-1": 6.624, + "af-south-1": 6.249, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 5.812, @@ -40140,7 +41241,7 @@ "ca-central-1": 5.576, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 5.889, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 5.53, "eu-west-3": 0.0, @@ -40149,32 +41250,88 @@ "us-east-1": 5.005, "us-east-2": 4.721, "us-gov-east-1": 5.953, - "us-gov-west-1": 5.953, - "us-west-1": 0.0, - "us-west-2": 4.721 + "us-gov-west-1": 0.0, + "us-west-1": 5.671, + "us-west-2": 0.0 }, "inf2": { + "ap-northeast-1": 21.419, + "ap-south-1": 18.563, + "ap-southeast-1": 19.991, + "ap-southeast-2": 18.563, + "eu-central-1": 21.419, + "eu-north-1": 15.707, + "eu-west-1": 17.849, + "eu-west-2": 21.419, + "eu-west-3": 19.991, + "sa-east-1": 24.275, "us-east-1": 14.279, - "us-east-2": 14.279 + "us-east-2": 14.279, + "us-west-2": 14.279 }, "inf2.xlarge": { - "us-east-1": 0.0, - "us-east-2": 0.83402 + "ap-northeast-1": 1.1373, + "ap-south-1": 0.0, + "ap-southeast-1": 1.06148, + "ap-southeast-2": 0.98566, + "eu-central-1": 1.1373, + "eu-north-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 1.06148, + "sa-east-1": 1.28894, + "us-east-1": 0.83402, + "us-east-2": 0.83402, + "us-west-2": 0.83402 }, "inf2.8xlarge": { + "ap-northeast-1": 2.95179, + "ap-south-1": 2.55822, + "ap-southeast-1": 3.0305, + "ap-southeast-2": 2.81404, + "eu-central-1": 0.0, + "eu-north-1": 2.16465, + "eu-west-1": 0.0, + "eu-west-2": 2.95179, + "eu-west-3": 0.0, + "sa-east-1": 3.34536, "us-east-1": 2.16465, - "us-east-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 0.0 }, "inf2.24xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 8.43782, + "ap-southeast-1": 9.08689, + "ap-southeast-2": 8.43782, + "eu-central-1": 9.73595, + "eu-north-1": 0.0, + "eu-west-1": 8.92462, + "eu-west-2": 0.0, + "eu-west-3": 9.08689, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 7.1397 }, "inf2.48xlarge": { - "us-east-1": 0.0, - "us-east-2": 0.0 + "ap-northeast-1": 19.4719, + "ap-south-1": 16.87565, + "ap-southeast-1": 19.99115, + "ap-southeast-2": 18.56321, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 16.22658, + "eu-west-2": 0.0, + "eu-west-3": 19.99115, + "sa-east-1": 0.0, + "us-east-1": 12.98127, + "us-east-2": 0.0, + "us-west-2": 14.27939 }, "is4gen.medium": { "ap-northeast-1": 0.16958, + "ap-south-1": 0.16375, "ap-southeast-1": 0.17276, "ap-southeast-2": 0.17276, "ca-central-1": 0.15938, @@ -40188,6 +41345,7 @@ }, "is4gen.large": { "ap-northeast-1": 0.33915, + "ap-south-1": 0.3275, "ap-southeast-1": 0.34553, "ap-southeast-2": 0.34553, "ca-central-1": 0.31875, @@ -40201,6 +41359,7 @@ }, "is4gen.xlarge": { "ap-northeast-1": 0.6783, + "ap-south-1": 0.655, "ap-southeast-1": 0.69105, "ap-southeast-2": 0.69105, "ca-central-1": 0.6375, @@ -40214,6 +41373,7 @@ }, "is4gen.2xlarge": { "ap-northeast-1": 1.3566, + "ap-south-1": 1.31, "ap-southeast-1": 1.3821, "ap-southeast-2": 1.3821, "ca-central-1": 1.275, @@ -40227,6 +41387,7 @@ }, "is4gen.4xlarge": { "ap-northeast-1": 2.7132, + "ap-south-1": 2.62, "ap-southeast-1": 2.76421, "ap-southeast-2": 2.76421, "ca-central-1": 2.55, @@ -40240,6 +41401,7 @@ }, "is4gen.8xlarge": { "ap-northeast-1": 5.4264, + "ap-south-1": 5.24, "ap-southeast-1": 5.52842, "ap-southeast-2": 5.52842, "ca-central-1": 5.1, @@ -40343,25 +41505,25 @@ }, "m3.medium": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.098, + "ap-northeast-2": 0.091, + "ap-southeast-1": 0.108, "ap-southeast-2": 0.093, "eu-central-1": 0.0, - "eu-west-1": 0.08, + "eu-west-1": 0.0, "sa-east-1": 0.105, - "us-east-1": 0.074, - "us-gov-west-1": 0.084, + "us-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.077, "us-west-2": 0.0 }, "m3.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.201685, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.186, + "ap-northeast-2": 0.183, + "ap-southeast-1": 0.196, + "ap-southeast-2": 0.205, "eu-central-1": 0.0, "eu-west-1": 0.146, - "sa-east-1": 0.19, + "sa-east-1": 0.209, "us-east-1": 0.0, "us-gov-west-1": 0.168, "us-west-1": 0.0, @@ -40369,24 +41531,24 @@ }, "m3.xlarge": { "ap-northeast-1": 0.385, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.431, - "ap-southeast-2": 0.0, - "eu-central-1": 0.347, + "ap-northeast-2": 0.366, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.372, + "eu-central-1": 0.0, "eu-west-1": 0.0, "sa-east-1": 0.419, "us-east-1": 0.266, "us-gov-west-1": 0.37, - "us-west-1": 0.339, + "us-west-1": 0.0, "us-west-2": 0.293 }, "m3.2xlarge": { - "ap-northeast-1": 0.847, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.80465, "ap-southeast-1": 0.862, "ap-southeast-2": 0.0, "eu-central-1": 0.632, - "eu-west-1": 0.585, + "eu-west-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-gov-west-1": 0.739, @@ -40413,60 +41575,60 @@ }, "m4.large": { "ap-northeast-1": 0.129, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.123, "ap-northeast-3": 0.0, - "ap-south-1": 0.1155, - "ap-southeast-1": 0.125, - "ap-southeast-2": 0.1375, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 0.111, "eu-central-1": 0.0, "eu-west-1": 0.111, "eu-west-2": 0.116, "sa-east-1": 0.159, - "us-east-1": 0.1, - "us-east-2": 0.0, + "us-east-1": 0.11, + "us-east-2": 0.11, "us-gov-west-1": 0.126, "us-west-1": 0.117, "us-west-2": 0.11 }, "m4.xlarge": { - "ap-northeast-1": 0.2838, - "ap-northeast-2": 0.246, - "ap-northeast-3": 0.0, + "ap-northeast-1": 0.258, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.258, "ap-south-1": 0.21, "ap-southeast-1": 0.275, - "ap-southeast-2": 0.275, + "ap-southeast-2": 0.0, "ca-central-1": 0.2442, "eu-central-1": 0.264, "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 0.3498, "us-east-1": 0.2, "us-east-2": 0.2, "us-gov-west-1": 0.0, - "us-west-1": 0.234, + "us-west-1": 0.2574, "us-west-2": 0.0 }, "m4.2xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.5412, + "ap-northeast-1": 0.5676, + "ap-northeast-2": 0.492, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.5, + "ap-southeast-1": 0.55, "ap-southeast-2": 0.55, - "ca-central-1": 0.444, + "ca-central-1": 0.4884, "eu-central-1": 0.528, "eu-west-1": 0.4884, "eu-west-2": 0.464, "sa-east-1": 0.6996, - "us-east-1": 0.44, + "us-east-1": 0.4, "us-east-2": 0.44, "us-gov-west-1": 0.0, - "us-west-1": 0.5148, + "us-west-1": 0.0, "us-west-2": 0.4 }, "m4.4xlarge": { - "ap-northeast-1": 1.1352, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.0824, "ap-northeast-3": 1.032, "ap-south-1": 0.0, @@ -40475,9 +41637,9 @@ "ca-central-1": 0.9768, "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "sa-east-1": 1.3992, - "us-east-1": 0.0, + "eu-west-2": 0.928, + "sa-east-1": 0.0, + "us-east-1": 0.88, "us-east-2": 0.88, "us-gov-west-1": 1.008, "us-west-1": 0.936, @@ -40487,7 +41649,7 @@ "ap-northeast-1": 2.58, "ap-northeast-2": 2.46, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.5, "ap-southeast-2": 2.5, "ca-central-1": 2.22, "eu-central-1": 2.4, @@ -40497,13 +41659,13 @@ "us-east-1": 2.0, "us-east-2": 0.0, "us-gov-west-1": 2.52, - "us-west-1": 2.34, + "us-west-1": 0.0, "us-west-2": 2.0 }, "m4.16xlarge": { "ap-northeast-1": 4.128, "ap-northeast-2": 3.936, - "ap-northeast-3": 0.0, + "ap-northeast-3": 4.128, "ap-south-1": 3.36, "ap-southeast-1": 4.0, "ap-southeast-2": 0.0, @@ -40515,7 +41677,7 @@ "us-east-1": 3.2, "us-east-2": 3.2, "us-gov-west-1": 4.032, - "us-west-1": 3.744, + "us-west-1": 0.0, "us-west-2": 3.2 }, "m5": { @@ -40531,6 +41693,7 @@ "ap-southeast-3": 6.336, "ap-southeast-4": 6.336, "ca-central-1": 5.65, + "ca-west-1": 5.65, "eu-central-1": 6.072, "eu-central-2": 6.679, "eu-north-1": 5.386, @@ -40552,159 +41715,164 @@ "us-west-2-lax-1": 6.083 }, "m5.large": { - "af-south-1": 0.127, + "af-south-1": 0.0, "ap-east-1": 0.14, "ap-northeast-1": 0.0, "ap-northeast-2": 0.118, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 0.124, + "ap-south-1": 0.107, "ap-south-2": 0.0, - "ap-southeast-1": 0.12, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.12, "ca-central-1": 0.0, + "ca-west-1": 0.107, "eu-central-1": 0.115, "eu-central-2": 0.0, "eu-north-1": 0.102, - "eu-south-1": 0.112, + "eu-south-1": 0.0, "eu-south-2": 0.107, - "eu-west-1": 0.114, + "eu-west-1": 0.0, "eu-west-2": 0.111, "eu-west-3": 0.112, "il-central-1": 0.124, "me-central-1": 0.118, - "me-south-1": 0.126, - "sa-east-1": 0.153, + "me-south-1": 0.118, + "sa-east-1": 0.162, "us-east-1": 0.102, "us-east-2": 0.102, "us-gov-east-1": 0.121, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.121, "us-west-1": 0.112, "us-west-2": 0.102, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.115 }, "m5.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.28, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.236, - "ap-northeast-3": 0.248, - "ap-south-1": 0.202, - "ap-south-2": 0.202, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.263, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.24, "ap-southeast-2": 0.24, "ap-southeast-3": 0.0, "ap-southeast-4": 0.24, "ca-central-1": 0.227, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.246, "eu-central-2": 0.0, "eu-north-1": 0.218, - "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-1": 0.224, + "eu-south-2": 0.214, "eu-west-1": 0.0, "eu-west-2": 0.222, "eu-west-3": 0.224, - "il-central-1": 0.247, + "il-central-1": 0.225, "me-central-1": 0.25, - "me-south-1": 0.235, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.204, "us-east-2": 0.204, "us-gov-east-1": 0.258, - "us-gov-west-1": 0.258, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.204, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.23 }, "m5.metal": { "af-south-1": 6.096, "ap-east-1": 6.336, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.952, "ap-northeast-2": 5.664, "ap-northeast-3": 5.952, "ap-south-1": 4.848, "ap-south-2": 4.848, "ap-southeast-1": 5.76, - "ap-southeast-2": 5.76, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.76, + "ap-southeast-4": 5.76, "ca-central-1": 5.136, + "ca-west-1": 5.136, "eu-central-1": 5.52, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 5.376, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 5.136, + "eu-west-2": 5.328, "eu-west-3": 5.376, "il-central-1": 5.393, "me-central-1": 5.65, "me-south-1": 5.65, "sa-east-1": 0.0, - "us-east-1": 4.608, + "us-east-1": 0.0, "us-east-2": 4.608, "us-gov-east-1": 5.808, - "us-gov-west-1": 5.808, + "us-gov-west-1": 0.0, "us-west-1": 5.376, - "us-west-2": 4.608, + "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "m5.2xlarge": { - "af-south-1": 0.538, - "ap-east-1": 0.528, + "af-south-1": 0.0, + "ap-east-1": 0.561, "ap-northeast-1": 0.529, "ap-northeast-2": 0.472, "ap-northeast-3": 0.496, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.48, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.48, - "ap-southeast-4": 0.48, - "ca-central-1": 0.0, - "eu-central-1": 0.46, + "ap-southeast-4": 0.0, + "ca-central-1": 0.428, + "ca-west-1": 0.428, + "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.435, + "eu-north-1": 0.408, "eu-south-1": 0.448, - "eu-south-2": 0.454, - "eu-west-1": 0.428, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.474, "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.499, + "il-central-1": 0.494, + "me-central-1": 0.471, "me-south-1": 0.471, - "sa-east-1": 0.0, - "us-east-1": 0.384, + "sa-east-1": 0.646, + "us-east-1": 0.407, "us-east-2": 0.407, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.516, "us-west-1": 0.448, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.461 + "us-west-2": 0.407, + "us-west-2-lax-1": 0.489 }, "m5.4xlarge": { "af-south-1": 0.0, "ap-east-1": 1.056, - "ap-northeast-1": 1.058, - "ap-northeast-2": 0.944, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.052, "ap-south-1": 0.0, "ap-south-2": 0.808, - "ap-southeast-1": 0.96, - "ap-southeast-2": 1.023, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.96, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "ca-central-1": 0.908, + "ap-southeast-4": 1.056, + "ca-central-1": 0.856, + "ca-west-1": 0.856, "eu-central-1": 0.92, "eu-central-2": 0.0, - "eu-north-1": 0.871, - "eu-south-1": 0.95, - "eu-south-2": 0.907, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.947, "eu-west-3": 0.896, - "il-central-1": 0.899, + "il-central-1": 0.989, "me-central-1": 0.0, "me-south-1": 1.005, "sa-east-1": 1.224, @@ -40713,37 +41881,38 @@ "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.815, - "us-west-2-lax-1": 0.922 + "us-west-2": 0.768, + "us-west-2-lax-1": 0.977 }, "m5.8xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 1.984, "ap-northeast-2": 2.0, - "ap-northeast-3": 2.103, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 1.616, "ap-south-2": 1.616, "ap-southeast-1": 2.038, - "ap-southeast-2": 2.047, + "ap-southeast-2": 1.92, "ap-southeast-3": 0.0, - "ap-southeast-4": 2.112, - "ca-central-1": 0.0, - "eu-central-1": 1.965, + "ap-southeast-4": 1.92, + "ca-central-1": 1.712, + "ca-west-1": 0.0, + "eu-central-1": 1.84, "eu-central-2": 2.145, - "eu-north-1": 1.632, - "eu-south-1": 1.9, + "eu-north-1": 1.741, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 1.826, - "eu-west-2": 1.894, - "eu-west-3": 1.912, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "il-central-1": 1.798, "me-central-1": 1.883, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 2.063, "us-gov-west-1": 1.936, "us-west-1": 1.792, "us-west-2": 1.629, @@ -40751,29 +41920,30 @@ }, "m5.12xlarge": { "af-south-1": 3.231, - "ap-east-1": 0.0, + "ap-east-1": 3.168, "ap-northeast-1": 3.173, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 2.424, - "ap-south-2": 0.0, - "ap-southeast-1": 2.88, - "ap-southeast-2": 0.0, - "ap-southeast-3": 3.053, + "ap-south-2": 2.424, + "ap-southeast-1": 3.058, + "ap-southeast-2": 3.07, + "ap-southeast-3": 2.88, "ap-southeast-4": 0.0, - "ca-central-1": 2.723, + "ca-central-1": 2.568, + "ca-west-1": 0.0, "eu-central-1": 2.947, "eu-central-2": 3.218, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-1": 2.688, + "eu-south-2": 2.568, "eu-west-1": 2.568, - "eu-west-2": 0.0, + "eu-west-2": 2.842, "eu-west-3": 2.868, "il-central-1": 2.696, "me-central-1": 0.0, "me-south-1": 2.825, - "sa-east-1": 0.0, + "sa-east-1": 3.672, "us-east-1": 2.444, "us-east-2": 2.304, "us-gov-east-1": 3.094, @@ -40783,19 +41953,20 @@ "us-west-2-lax-1": 2.932 }, "m5.16xlarge": { - "af-south-1": 4.064, - "ap-east-1": 4.484, + "af-south-1": 0.0, + "ap-east-1": 4.224, "ap-northeast-1": 0.0, "ap-northeast-2": 4.0, "ap-northeast-3": 3.968, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 4.077, - "ap-southeast-2": 3.84, + "ap-southeast-2": 4.093, "ap-southeast-3": 4.07, "ap-southeast-4": 0.0, - "ca-central-1": 3.424, - "eu-central-1": 3.93, + "ca-central-1": 3.631, + "ca-west-1": 3.424, + "eu-central-1": 3.68, "eu-central-2": 4.291, "eu-north-1": 0.0, "eu-south-1": 3.584, @@ -40803,33 +41974,34 @@ "eu-west-1": 3.653, "eu-west-2": 3.552, "eu-west-3": 3.824, - "il-central-1": 3.595, + "il-central-1": 0.0, "me-central-1": 3.766, "me-south-1": 3.766, - "sa-east-1": 5.171, + "sa-east-1": 0.0, "us-east-1": 3.259, "us-east-2": 3.072, "us-gov-east-1": 3.872, - "us-gov-west-1": 4.126, + "us-gov-west-1": 3.872, "us-west-1": 3.84, "us-west-2": 3.259, "us-west-2-lax-1": 3.91 }, "m5.24xlarge": { - "af-south-1": 0.0, + "af-south-1": 6.096, "ap-east-1": 0.0, "ap-northeast-1": 5.952, "ap-northeast-2": 5.664, "ap-northeast-3": 5.952, "ap-south-1": 4.848, "ap-south-2": 4.848, - "ap-southeast-1": 5.76, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.76, "ap-southeast-3": 0.0, "ap-southeast-4": 5.76, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 5.52, - "eu-central-2": 6.072, + "eu-central-2": 0.0, "eu-north-1": 4.896, "eu-south-1": 0.0, "eu-south-2": 5.136, @@ -40839,12 +42011,12 @@ "il-central-1": 5.393, "me-central-1": 5.65, "me-south-1": 5.65, - "sa-east-1": 7.344, + "sa-east-1": 0.0, "us-east-1": 4.608, "us-east-2": 4.608, - "us-gov-east-1": 0.0, + "us-gov-east-1": 5.808, "us-gov-west-1": 5.808, - "us-west-1": 0.0, + "us-west-1": 5.376, "us-west-2": 4.608, "us-west-2-lax-1": 5.53 }, @@ -41165,6 +42337,7 @@ "ap-southeast-3": 7.445, "ap-southeast-4": 7.498, "ca-central-1": 6.653, + "ca-west-1": 6.653, "eu-central-1": 7.181, "eu-central-2": 7.899, "eu-north-1": 6.336, @@ -41185,97 +42358,100 @@ "us-west-2": 5.966 }, "m5d.large": { - "af-south-1": 0.159, + "af-south-1": 0.15, "ap-east-1": 0.165, "ap-northeast-1": 0.0, "ap-northeast-2": 0.139, "ap-northeast-3": 0.155, "ap-south-1": 0.0, - "ap-south-2": 0.129, - "ap-southeast-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.15, "ap-southeast-2": 0.151, - "ap-southeast-3": 0.149, - "ap-southeast-4": 0.151, - "ca-central-1": 0.134, + "ap-southeast-3": 0.141, + "ap-southeast-4": 0.0, + "ca-central-1": 0.126, + "ca-west-1": 0.0, "eu-central-1": 0.136, "eu-central-2": 0.159, - "eu-north-1": 0.128, + "eu-north-1": 0.12, "eu-south-1": 0.0, "eu-south-2": 0.134, "eu-west-1": 0.134, "eu-west-2": 0.14, - "eu-west-3": 0.0, + "eu-west-3": 0.141, "il-central-1": 0.132, "me-central-1": 0.147, "me-south-1": 0.0, - "sa-east-1": 0.19, + "sa-east-1": 0.18, "us-east-1": 0.12, - "us-east-2": 0.12, + "us-east-2": 0.113, "us-gov-east-1": 0.152, "us-gov-west-1": 0.152, "us-west-1": 0.142, "us-west-2": 0.0 }, "m5d.xlarge": { - "af-south-1": 0.3, + "af-south-1": 0.318, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.292, + "ap-northeast-2": 0.295, + "ap-northeast-3": 0.31, "ap-south-1": 0.0, "ap-south-2": 0.259, - "ap-southeast-1": 0.282, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.303, - "ap-southeast-3": 0.282, + "ap-southeast-3": 0.299, "ap-southeast-4": 0.301, - "ca-central-1": 0.0, + "ca-central-1": 0.267, + "ca-west-1": 0.0, "eu-central-1": 0.272, "eu-central-2": 0.299, "eu-north-1": 0.24, "eu-south-1": 0.0, "eu-south-2": 0.267, "eu-west-1": 0.269, - "eu-west-2": 0.262, - "eu-west-3": 0.264, + "eu-west-2": 0.279, + "eu-west-3": 0.282, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 0.277, "sa-east-1": 0.36, - "us-east-1": 0.226, + "us-east-1": 0.24, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.285, + "us-west-1": 0.266, "us-west-2": 0.24 }, "m5d.metal": { - "af-south-1": 0.0, + "af-south-1": 7.2, "ap-east-1": 7.44, "ap-northeast-1": 7.008, - "ap-northeast-2": 6.672, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 5.856, + "ap-south-2": 0.0, "ap-southeast-1": 6.768, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-2": 6.816, + "ap-southeast-3": 6.768, "ap-southeast-4": 6.816, "ca-central-1": 6.048, + "ca-west-1": 6.048, "eu-central-1": 6.528, "eu-central-2": 7.181, "eu-north-1": 5.76, "eu-south-1": 0.0, "eu-south-2": 6.048, - "eu-west-1": 0.0, + "eu-west-1": 6.048, "eu-west-2": 0.0, - "eu-west-3": 6.336, - "il-central-1": 6.35, - "me-central-1": 6.653, + "eu-west-3": 0.0, + "il-central-1": 0.0, + "me-central-1": 0.0, "me-south-1": 6.653, - "sa-east-1": 8.64, + "sa-east-1": 0.0, "us-east-1": 5.424, "us-east-2": 5.424, - "us-gov-east-1": 6.864, + "us-gov-east-1": 0.0, "us-gov-west-1": 6.864, "us-west-1": 6.384, "us-west-2": 0.0 @@ -41284,62 +42460,64 @@ "af-south-1": 0.636, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.589, "ap-northeast-3": 0.619, "ap-south-1": 0.0, "ap-south-2": 0.488, "ap-southeast-1": 0.564, - "ap-southeast-2": 0.605, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.602, "ca-central-1": 0.535, - "eu-central-1": 0.581, + "ca-west-1": 0.534, + "eu-central-1": 0.544, "eu-central-2": 0.598, - "eu-north-1": 0.0, + "eu-north-1": 0.48, "eu-south-1": 0.528, "eu-south-2": 0.534, "eu-west-1": 0.504, - "eu-west-2": 0.0, + "eu-west-2": 0.524, "eu-west-3": 0.528, - "il-central-1": 0.0, + "il-central-1": 0.529, "me-central-1": 0.588, - "me-south-1": 0.0, + "me-south-1": 0.554, "sa-east-1": 0.762, - "us-east-1": 0.0, + "us-east-1": 0.479, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.609, - "us-west-1": 0.57, + "us-west-1": 0.532, "us-west-2": 0.0 }, "m5d.4xlarge": { - "af-south-1": 1.2, - "ap-east-1": 1.316, + "af-south-1": 0.0, + "ap-east-1": 1.24, "ap-northeast-1": 0.0, "ap-northeast-2": 1.112, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.238, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.976, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.21, + "ap-southeast-2": 0.0, "ap-southeast-3": 1.128, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ap-southeast-4": 1.136, + "ca-central-1": 1.069, + "ca-west-1": 1.008, "eu-central-1": 1.162, "eu-central-2": 1.269, - "eu-north-1": 0.96, - "eu-south-1": 1.056, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 1.008, + "eu-west-1": 0.0, "eu-west-2": 1.118, - "eu-west-3": 1.056, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 1.109, + "me-central-1": 1.175, "me-south-1": 0.0, "sa-east-1": 1.44, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 1.219, + "us-gov-east-1": 1.144, "us-gov-west-1": 1.144, "us-west-1": 1.139, "us-west-2": 0.959 @@ -41349,23 +42527,24 @@ "ap-east-1": 2.48, "ap-northeast-1": 2.336, "ap-northeast-2": 2.224, - "ap-northeast-3": 2.476, + "ap-northeast-3": 0.0, "ap-south-1": 1.952, - "ap-south-2": 0.0, + "ap-south-2": 1.952, "ap-southeast-1": 2.256, "ap-southeast-2": 2.421, "ap-southeast-3": 0.0, "ap-southeast-4": 2.408, "ca-central-1": 2.139, + "ca-west-1": 0.0, "eu-central-1": 2.176, - "eu-central-2": 2.537, + "eu-central-2": 2.394, "eu-north-1": 1.92, "eu-south-1": 2.112, "eu-south-2": 2.137, - "eu-west-1": 0.0, + "eu-west-1": 2.151, "eu-west-2": 2.096, "eu-west-3": 2.112, - "il-central-1": 0.0, + "il-central-1": 2.244, "me-central-1": 2.351, "me-south-1": 0.0, "sa-east-1": 3.046, @@ -41379,28 +42558,29 @@ "m5d.12xlarge": { "af-south-1": 0.0, "ap-east-1": 3.72, - "ap-northeast-1": 3.736, + "ap-northeast-1": 3.504, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.504, + "ap-northeast-3": 3.714, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 3.104, "ap-southeast-1": 3.592, "ap-southeast-2": 3.408, - "ap-southeast-3": 3.587, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ap-southeast-3": 3.384, + "ap-southeast-4": 3.612, + "ca-central-1": 3.024, + "ca-west-1": 3.205, "eu-central-1": 0.0, - "eu-central-2": 3.806, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 3.358, - "eu-south-2": 3.205, + "eu-south-2": 3.024, "eu-west-1": 3.024, "eu-west-2": 0.0, - "eu-west-3": 3.168, + "eu-west-3": 3.38, "il-central-1": 3.175, - "me-central-1": 3.326, + "me-central-1": 0.0, "me-south-1": 3.326, - "sa-east-1": 4.32, + "sa-east-1": 0.0, "us-east-1": 2.876, "us-east-2": 2.876, "us-gov-east-1": 3.432, @@ -41409,40 +42589,41 @@ "us-west-2": 0.0 }, "m5d.16xlarge": { - "af-south-1": 0.0, + "af-south-1": 4.8, "ap-east-1": 4.96, "ap-northeast-1": 4.672, "ap-northeast-2": 4.448, - "ap-northeast-3": 4.952, + "ap-northeast-3": 0.0, "ap-south-1": 3.904, "ap-south-2": 0.0, "ap-southeast-1": 4.512, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 4.817, + "ap-southeast-3": 4.512, + "ap-southeast-4": 4.544, "ca-central-1": 4.032, + "ca-west-1": 0.0, "eu-central-1": 4.352, "eu-central-2": 0.0, "eu-north-1": 3.84, - "eu-south-1": 0.0, + "eu-south-1": 4.224, "eu-south-2": 0.0, "eu-west-1": 4.032, - "eu-west-2": 4.192, + "eu-west-2": 4.471, "eu-west-3": 4.224, "il-central-1": 4.234, "me-central-1": 4.701, "me-south-1": 4.732, - "sa-east-1": 5.76, + "sa-east-1": 0.0, "us-east-1": 3.616, "us-east-2": 3.616, "us-gov-east-1": 4.576, - "us-gov-west-1": 4.576, + "us-gov-west-1": 4.876, "us-west-1": 4.256, "us-west-2": 3.616 }, "m5d.24xlarge": { "af-south-1": 7.2, - "ap-east-1": 7.44, + "ap-east-1": 0.0, "ap-northeast-1": 7.008, "ap-northeast-2": 6.672, "ap-northeast-3": 7.008, @@ -41453,15 +42634,16 @@ "ap-southeast-3": 6.768, "ap-southeast-4": 6.816, "ca-central-1": 6.048, + "ca-west-1": 6.048, "eu-central-1": 6.528, "eu-central-2": 7.181, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 6.336, "eu-south-2": 0.0, - "eu-west-1": 6.048, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 6.35, + "eu-west-3": 6.336, + "il-central-1": 0.0, "me-central-1": 6.653, "me-south-1": 6.653, "sa-east-1": 0.0, @@ -41484,68 +42666,68 @@ "us-west-2": 7.181 }, "m5dn.large": { - "ap-northeast-1": 0.175, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 0.162, "eu-west-1": 0.152, "us-east-1": 0.0, "us-east-2": 0.136, "us-gov-east-1": 0.181, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.171, "us-west-2": 0.0 }, "m5dn.xlarge": { "ap-northeast-1": 0.373, "ap-southeast-1": 0.334, - "eu-central-1": 0.324, - "eu-west-1": 0.304, + "eu-central-1": 0.346, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.288, "us-gov-east-1": 0.342, - "us-gov-west-1": 0.363, + "us-gov-west-1": 0.342, "us-west-2": 0.272 }, "m5dn.metal": { "ap-northeast-1": 8.4, - "ap-southeast-1": 0.0, - "eu-central-1": 7.776, - "eu-west-1": 7.296, - "us-east-1": 0.0, - "us-east-2": 6.528, - "us-gov-east-1": 8.208, + "ap-southeast-1": 8.016, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 6.528, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 8.208, "us-west-2": 6.528 }, "m5dn.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.668, - "eu-central-1": 0.0, + "ap-southeast-1": 0.71, + "eu-central-1": 0.692, "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 0.544, + "us-gov-east-1": 0.725, "us-gov-west-1": 0.725, "us-west-2": 0.0 }, "m5dn.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.336, "eu-central-1": 1.383, - "eu-west-1": 0.0, - "us-east-1": 1.154, - "us-east-2": 1.088, - "us-gov-east-1": 1.45, + "eu-west-1": 1.297, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.154 }, "m5dn.8xlarge": { - "ap-northeast-1": 2.8, - "ap-southeast-1": 2.838, - "eu-central-1": 0.0, + "ap-northeast-1": 2.987, + "ap-southeast-1": 0.0, + "eu-central-1": 2.766, "eu-west-1": 0.0, "us-east-1": 2.308, - "us-east-2": 2.176, - "us-gov-east-1": 2.9, + "us-east-2": 0.0, + "us-gov-east-1": 2.736, "us-gov-west-1": 2.9, "us-west-2": 2.176 }, @@ -41554,22 +42736,22 @@ "ap-southeast-1": 0.0, "eu-central-1": 3.888, "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 3.264, - "us-gov-east-1": 0.0, - "us-gov-west-1": 4.104, - "us-west-2": 3.462 + "us-east-1": 3.462, + "us-east-2": 0.0, + "us-gov-east-1": 4.35, + "us-gov-west-1": 4.35, + "us-west-2": 3.264 }, "m5dn.16xlarge": { - "ap-northeast-1": 5.6, + "ap-northeast-1": 0.0, "ap-southeast-1": 5.676, "eu-central-1": 5.184, - "eu-west-1": 4.864, - "us-east-1": 0.0, + "eu-west-1": 5.187, + "us-east-1": 4.352, "us-east-2": 4.616, "us-gov-east-1": 5.472, "us-gov-west-1": 5.472, - "us-west-2": 0.0 + "us-west-2": 4.352 }, "m5dn.24xlarge": { "ap-northeast-1": 8.4, @@ -41594,24 +42776,24 @@ "us-west-2": 6.283 }, "m5n.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.153, "ap-southeast-1": 0.155, - "eu-central-1": 0.15, + "eu-central-1": 0.141, "eu-west-1": 0.0, - "us-east-1": 0.119, + "us-east-1": 0.126, "us-east-2": 0.119, - "us-gov-east-1": 0.149, - "us-gov-west-1": 0.158, + "us-gov-east-1": 0.158, + "us-gov-west-1": 0.0, "us-west-2": 0.119 }, "m5n.xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.31, - "eu-central-1": 0.282, + "eu-central-1": 0.301, "eu-west-1": 0.266, "us-east-1": 0.0, "us-east-2": 0.252, - "us-gov-east-1": 0.298, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.316, "us-west-2": 0.252 }, @@ -41619,44 +42801,44 @@ "ap-northeast-1": 7.344, "ap-southeast-1": 0.0, "eu-central-1": 6.768, - "us-east-1": 0.0, + "us-east-1": 5.712, "us-east-2": 5.712, - "us-gov-east-1": 0.0, - "us-gov-west-1": 7.152, + "us-gov-east-1": 7.152, + "us-gov-west-1": 0.0, "us-west-2": 5.712 }, "m5n.2xlarge": { "ap-northeast-1": 0.612, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-southeast-1": 0.62, + "eu-central-1": 0.564, + "eu-west-1": 0.568, + "us-east-1": 0.476, "us-east-2": 0.505, - "us-gov-east-1": 0.632, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.632, - "us-west-2": 0.0 + "us-west-2": 0.476 }, "m5n.4xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 1.241, + "ap-northeast-1": 1.224, + "ap-southeast-1": 0.0, "eu-central-1": 1.204, - "eu-west-1": 0.0, + "eu-west-1": 1.135, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 1.264, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.192, "us-west-2": 0.0 }, "m5n.8xlarge": { "ap-northeast-1": 2.611, - "ap-southeast-1": 0.0, - "eu-central-1": 2.408, - "eu-west-1": 0.0, - "us-east-1": 2.019, + "ap-southeast-1": 2.482, + "eu-central-1": 0.0, + "eu-west-1": 2.128, + "us-east-1": 1.904, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 2.527, "us-gov-west-1": 2.384, - "us-west-2": 1.904 + "us-west-2": 0.0 }, "m5n.12xlarge": { "ap-northeast-1": 3.672, @@ -41666,19 +42848,19 @@ "us-east-1": 0.0, "us-east-2": 3.029, "us-gov-east-1": 3.576, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.576, "us-west-2": 3.029 }, "m5n.16xlarge": { - "ap-northeast-1": 4.896, - "ap-southeast-1": 0.0, + "ap-northeast-1": 5.222, + "ap-southeast-1": 4.672, "eu-central-1": 4.816, - "eu-west-1": 0.0, - "us-east-1": 4.038, + "eu-west-1": 4.256, + "us-east-1": 3.808, "us-east-2": 4.038, "us-gov-east-1": 5.054, - "us-gov-west-1": 4.768, - "us-west-2": 0.0 + "us-gov-west-1": 5.054, + "us-west-2": 3.808 }, "m5n.24xlarge": { "ap-northeast-1": 7.344, @@ -41687,7 +42869,7 @@ "eu-west-1": 0.0, "us-east-1": 5.712, "us-east-2": 5.712, - "us-gov-east-1": 7.152, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-2": 5.712 }, @@ -41706,9 +42888,9 @@ }, "m5zn.large": { "ap-northeast-1": 0.2134, - "ap-northeast-2": 0.2233, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.2065, - "ap-southeast-2": 0.2065, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.2025, "sa-east-1": 0.2896, @@ -41719,42 +42901,42 @@ }, "m5zn.xlarge": { "ap-northeast-1": 0.4694, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.4466, "ap-southeast-1": 0.4543, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.413, "eu-central-1": 0.3957, - "eu-west-1": 0.3682, - "sa-east-1": 0.5265, + "eu-west-1": 0.405, + "sa-east-1": 0.5791, "us-east-1": 0.3634, "us-east-2": 0.0, - "us-west-1": 0.4239, - "us-west-2": 0.3303 + "us-west-1": 0.0, + "us-west-2": 0.3634 }, "m5zn.metal": { "ap-northeast-1": 0.0, "ap-northeast-2": 4.872, "ap-southeast-1": 4.956, "ap-southeast-2": 0.0, - "eu-central-1": 5.2235, + "eu-central-1": 0.0, "eu-west-1": 4.4184, - "sa-east-1": 0.0, + "sa-east-1": 6.3178, "us-east-1": 3.9641, "us-east-2": 0.0, - "us-west-1": 4.6248, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 4.3605 }, "m5zn.2xlarge": { - "ap-northeast-1": 0.8534, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.9086, - "ap-southeast-2": 0.0, - "eu-central-1": 0.7914, + "ap-southeast-1": 0.826, + "ap-southeast-2": 0.826, + "eu-central-1": 0.0, "eu-west-1": 0.81, "sa-east-1": 0.0, - "us-east-1": 0.6607, - "us-east-2": 0.0, + "us-east-1": 0.7267, + "us-east-2": 0.6607, "us-west-1": 0.7708, - "us-west-2": 0.7267 + "us-west-2": 0.6607 }, "m5zn.3xlarge": { "ap-northeast-1": 1.2801, @@ -41763,36 +42945,36 @@ "ap-southeast-2": 1.3629, "eu-central-1": 0.0, "eu-west-1": 1.2151, - "sa-east-1": 0.0, + "sa-east-1": 1.5794, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-1": 1.1562, + "us-west-1": 1.2718, "us-west-2": 1.0901 }, "m5zn.6xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.478, - "eu-central-1": 2.3743, - "eu-west-1": 2.4301, + "ap-southeast-2": 0.0, + "eu-central-1": 2.6118, + "eu-west-1": 0.0, "sa-east-1": 3.1589, - "us-east-1": 2.1802, + "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 0.0, - "us-west-2": 2.1802 + "us-west-2": 0.0 }, "m5zn.12xlarge": { - "ap-northeast-1": 5.6324, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.872, "ap-southeast-1": 0.0, - "ap-southeast-2": 5.4516, + "ap-southeast-2": 0.0, "eu-central-1": 4.7486, "eu-west-1": 0.0, - "sa-east-1": 6.3178, - "us-east-1": 4.3605, + "sa-east-1": 6.9495, + "us-east-1": 3.9641, "us-east-2": 0.0, - "us-west-1": 4.6248, + "us-west-1": 0.0, "us-west-2": 3.9641 }, "m6a": { @@ -41801,7 +42983,9 @@ "ap-south-2": 5.866, "ap-southeast-1": 11.405, "ap-southeast-2": 11.405, + "ca-central-1": 10.169, "eu-central-1": 10.93, + "eu-south-1": 10.644, "eu-west-1": 10.169, "eu-west-2": 10.549, "sa-east-1": 14.541, @@ -41812,43 +42996,49 @@ }, "m6a.large": { "ap-northeast-1": 0.12276, - "ap-south-1": 0.0, + "ap-south-1": 0.06111, "ap-south-2": 0.0, - "ap-southeast-1": 0.1188, + "ap-southeast-1": 0.108, "ap-southeast-2": 0.108, + "ca-central-1": 0.0963, "eu-central-1": 0.11385, - "eu-west-1": 0.0, + "eu-south-1": 0.11088, + "eu-west-1": 0.0963, "eu-west-2": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.09504, + "us-east-2": 0.0864, "us-west-1": 0.0, "us-west-2": 0.0864 }, "m6a.xlarge": { "ap-northeast-1": 0.0, - "ap-south-1": 0.12221, + "ap-south-1": 0.0, "ap-south-2": 0.1111, - "ap-southeast-1": 0.2376, + "ap-southeast-1": 0.216, "ap-southeast-2": 0.216, + "ca-central-1": 0.1926, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-south-1": 0.2016, + "eu-west-1": 0.1926, "eu-west-2": 0.0, "sa-east-1": 0.30294, - "us-east-1": 0.0, + "us-east-1": 0.1728, "us-east-2": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.2016, "us-west-2": 0.0 }, "m6a.metal": { "ap-northeast-1": 10.7136, "ap-south-1": 5.3328, - "ap-south-2": 0.0, + "ap-south-2": 5.3328, "ap-southeast-1": 10.368, "ap-southeast-2": 10.368, + "ca-central-1": 9.2448, "eu-central-1": 9.936, + "eu-south-1": 9.6768, "eu-west-1": 9.2448, - "eu-west-2": 9.5904, + "eu-west-2": 0.0, "sa-east-1": 13.2192, "us-east-1": 8.2944, "us-east-2": 0.0, @@ -41857,42 +43047,48 @@ }, "m6a.2xlarge": { "ap-northeast-1": 0.0, - "ap-south-1": 0.24442, + "ap-south-1": 0.2222, "ap-south-2": 0.24442, "ap-southeast-1": 0.4752, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.4752, + "ca-central-1": 0.3852, "eu-central-1": 0.0, + "eu-south-1": 0.44352, "eu-west-1": 0.42372, "eu-west-2": 0.3996, - "sa-east-1": 0.0, - "us-east-1": 0.3456, - "us-east-2": 0.3456, + "sa-east-1": 0.5508, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-west-1": 0.0, "us-west-2": 0.38016 }, "m6a.4xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 0.4444, + "ap-northeast-1": 0.8928, + "ap-south-1": 0.0, "ap-south-2": 0.48884, "ap-southeast-1": 0.9504, - "ap-southeast-2": 0.864, + "ap-southeast-2": 0.9504, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-south-1": 0.88704, "eu-west-1": 0.0, "eu-west-2": 0.0, "sa-east-1": 1.21176, - "us-east-1": 0.0, + "us-east-1": 0.6912, "us-east-2": 0.76032, "us-west-1": 0.0, - "us-west-2": 0.6912 + "us-west-2": 0.0 }, "m6a.8xlarge": { "ap-northeast-1": 1.96416, - "ap-south-1": 0.97768, + "ap-south-1": 0.8888, "ap-south-2": 0.97768, "ap-southeast-1": 0.0, "ap-southeast-2": 1.9008, - "eu-central-1": 1.8216, - "eu-west-1": 0.0, + "ca-central-1": 1.69488, + "eu-central-1": 0.0, + "eu-south-1": 1.6128, + "eu-west-1": 1.69488, "eu-west-2": 0.0, "sa-east-1": 2.42352, "us-east-1": 1.52064, @@ -41904,75 +43100,85 @@ "ap-northeast-1": 2.6784, "ap-south-1": 0.0, "ap-south-2": 1.46652, - "ap-southeast-1": 2.8512, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.592, - "eu-central-1": 0.0, - "eu-west-1": 0.0, + "ca-central-1": 2.54232, + "eu-central-1": 2.7324, + "eu-south-1": 0.0, + "eu-west-1": 2.3112, "eu-west-2": 2.63736, - "sa-east-1": 3.63528, + "sa-east-1": 0.0, "us-east-1": 2.28096, - "us-east-2": 2.0736, + "us-east-2": 0.0, "us-west-1": 0.0, "us-west-2": 2.28096 }, "m6a.16xlarge": { "ap-northeast-1": 3.92832, "ap-south-1": 1.7776, - "ap-south-2": 1.95536, + "ap-south-2": 1.7776, "ap-southeast-1": 3.456, "ap-southeast-2": 3.456, + "ca-central-1": 0.0, "eu-central-1": 3.312, - "eu-west-1": 3.0816, - "eu-west-2": 3.1968, + "eu-south-1": 3.2256, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "sa-east-1": 0.0, - "us-east-1": 2.7648, + "us-east-1": 0.0, "us-east-2": 3.04128, "us-west-1": 3.2256, - "us-west-2": 2.7648 + "us-west-2": 3.04128 }, "m6a.24xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 2.6664, "ap-south-2": 2.6664, - "ap-southeast-1": 5.7024, - "ap-southeast-2": 5.184, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 5.08464, "eu-central-1": 4.968, + "eu-south-1": 4.8384, "eu-west-1": 5.08464, - "eu-west-2": 5.27472, - "sa-east-1": 6.6096, - "us-east-1": 4.1472, - "us-east-2": 4.1472, - "us-west-1": 4.8384, + "eu-west-2": 4.7952, + "sa-east-1": 7.27056, + "us-east-1": 4.56192, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 4.1472 }, "m6a.32xlarge": { - "ap-northeast-1": 7.1424, - "ap-south-1": 3.91072, + "ap-northeast-1": 0.0, + "ap-south-1": 3.5552, "ap-south-2": 3.91072, - "ap-southeast-1": 0.0, + "ap-southeast-1": 6.912, "ap-southeast-2": 0.0, - "eu-central-1": 6.624, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-south-1": 6.4512, "eu-west-1": 6.1632, "eu-west-2": 6.3936, "sa-east-1": 8.8128, "us-east-1": 6.08256, - "us-east-2": 6.08256, + "us-east-2": 5.5296, "us-west-1": 0.0, "us-west-2": 5.5296 }, "m6a.48xlarge": { "ap-northeast-1": 10.7136, - "ap-south-1": 0.0, + "ap-south-1": 5.3328, "ap-south-2": 5.3328, "ap-southeast-1": 10.368, "ap-southeast-2": 10.368, + "ca-central-1": 9.2448, "eu-central-1": 9.936, + "eu-south-1": 9.6768, "eu-west-1": 0.0, "eu-west-2": 9.5904, "sa-east-1": 13.2192, "us-east-1": 8.2944, "us-east-2": 8.2944, - "us-west-1": 0.0, + "us-west-1": 9.6768, "us-west-2": 8.2944 }, "m6g": { @@ -41988,6 +43194,7 @@ "ap-southeast-3": 3.379, "ap-southeast-4": 3.379, "ca-central-1": 3.013, + "ca-west-1": 3.013, "eu-central-1": 3.238, "eu-central-2": 3.562, "eu-north-1": 2.886, @@ -42005,7 +43212,8 @@ "us-gov-east-1": 3.407, "us-gov-west-1": 3.407, "us-west-1": 3.154, - "us-west-2": 2.71 + "us-west-2": 2.71, + "us-west-2-lax-1": 3.252 }, "m6g.medium": { "af-south-1": 0.0508, @@ -42013,15 +43221,16 @@ "ap-northeast-1": 0.0495, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0268, - "ap-south-2": 0.0253, + "ap-south-1": 0.0253, + "ap-south-2": 0.0268, "ap-southeast-1": 0.048, "ap-southeast-2": 0.0, "ap-southeast-3": 0.048, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.048, "ca-central-1": 0.0454, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0506, + "eu-central-2": 0.0536, "eu-north-1": 0.0, "eu-south-1": 0.0475, "eu-south-2": 0.0, @@ -42030,259 +43239,275 @@ "eu-west-3": 0.045, "il-central-1": 0.0, "me-central-1": 0.0501, - "me-south-1": 0.0, + "me-south-1": 0.047, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.0385, "us-gov-east-1": 0.0484, "us-gov-west-1": 0.0, "us-west-1": 0.0448, - "us-west-2": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.0462 }, "m6g.large": { "af-south-1": 0.1077, "ap-east-1": 0.106, "ap-northeast-1": 0.105, - "ap-northeast-2": 0.094, + "ap-northeast-2": 0.0997, "ap-northeast-3": 0.0, "ap-south-1": 0.0536, - "ap-south-2": 0.0536, - "ap-southeast-1": 0.1018, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.1018, - "ap-southeast-4": 0.096, - "ca-central-1": 0.0856, + "ap-south-2": 0.0506, + "ap-southeast-1": 0.096, + "ap-southeast-2": 0.096, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.1018, + "ca-central-1": 0.0907, + "ca-west-1": 0.0907, "eu-central-1": 0.092, "eu-central-2": 0.1073, "eu-north-1": 0.0869, - "eu-south-1": 0.0, + "eu-south-1": 0.0896, "eu-south-2": 0.0911, - "eu-west-1": 0.086, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0903, "me-central-1": 0.0, - "me-south-1": 0.094, - "sa-east-1": 0.1224, - "us-east-1": 0.0816, + "me-south-1": 0.0, + "sa-east-1": 0.1297, + "us-east-1": 0.0, "us-east-2": 0.0816, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0968, - "us-west-1": 0.0, - "us-west-2": 0.0816 + "us-west-1": 0.095, + "us-west-2": 0.0816, + "us-west-2-lax-1": 0.0979 }, "m6g.xlarge": { "af-south-1": 0.2154, "ap-east-1": 0.0, - "ap-northeast-1": 0.21, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.1994, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1984, "ap-south-1": 0.0, - "ap-south-2": 0.1073, + "ap-south-2": 0.0, "ap-southeast-1": 0.192, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.2035, "ap-southeast-3": 0.192, "ap-southeast-4": 0.2035, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.195, "eu-central-2": 0.0, "eu-north-1": 0.1738, "eu-south-1": 0.1899, "eu-south-2": 0.172, - "eu-west-1": 0.0, - "eu-west-2": 0.1883, - "eu-west-3": 0.1908, + "eu-west-1": 0.1822, + "eu-west-2": 0.0, + "eu-west-3": 0.18, "il-central-1": 0.1806, "me-central-1": 0.2004, - "me-south-1": 0.1994, - "sa-east-1": 0.2595, - "us-east-1": 0.0, + "me-south-1": 0.188, + "sa-east-1": 0.2448, + "us-east-1": 0.154, "us-east-2": 0.0, "us-gov-east-1": 0.1936, "us-gov-west-1": 0.2052, "us-west-1": 0.0, - "us-west-2": 0.154 + "us-west-2": 0.154, + "us-west-2-lax-1": 0.1848 }, "m6g.metal": { - "af-south-1": 0.0, + "af-south-1": 3.4463, "ap-east-1": 3.5936, - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.36, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.3649, + "ap-northeast-3": 3.1744, "ap-south-1": 0.0, "ap-south-2": 1.7164, "ap-southeast-1": 3.072, "ap-southeast-2": 3.2563, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.0, + "ca-central-1": 2.7392, + "ca-west-1": 0.0, + "eu-central-1": 2.944, + "eu-central-2": 3.2384, "eu-north-1": 2.624, "eu-south-1": 3.0387, "eu-south-2": 2.9152, - "eu-west-1": 0.0, + "eu-west-1": 2.752, "eu-west-2": 3.0121, - "eu-west-3": 2.88, + "eu-west-3": 3.0528, "il-central-1": 2.8896, - "me-central-1": 3.0272, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 3.9168, + "sa-east-1": 0.0, "us-east-1": 2.6112, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.2835, + "us-gov-west-1": 3.0976, "us-west-1": 0.0, - "us-west-2": 2.6112 + "us-west-2": 2.464, + "us-west-2-lax-1": 3.1334 }, "m6g.2xlarge": { - "af-south-1": 0.4308, + "af-south-1": 0.0, "ap-east-1": 0.4492, "ap-northeast-1": 0.42, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.2024, - "ap-south-2": 0.0, + "ap-northeast-3": 0.3968, + "ap-south-1": 0.2145, + "ap-south-2": 0.2024, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.407, + "ap-southeast-2": 0.384, "ap-southeast-3": 0.0, "ap-southeast-4": 0.407, "ca-central-1": 0.3629, + "ca-west-1": 0.3629, "eu-central-1": 0.0, "eu-central-2": 0.4048, - "eu-north-1": 0.328, + "eu-north-1": 0.3476, "eu-south-1": 0.3584, - "eu-south-2": 0.0, + "eu-south-2": 0.344, "eu-west-1": 0.3644, - "eu-west-2": 0.3552, + "eu-west-2": 0.0, "eu-west-3": 0.36, - "il-central-1": 0.0, + "il-central-1": 0.3826, "me-central-1": 0.4008, "me-south-1": 0.376, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.3264, - "us-gov-east-1": 0.4104, + "us-gov-east-1": 0.3872, "us-gov-west-1": 0.3872, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.308, + "us-west-2-lax-1": 0.3696 }, "m6g.4xlarge": { "af-south-1": 0.8128, - "ap-east-1": 0.848, + "ap-east-1": 0.8984, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.8412, - "ap-south-1": 0.0, + "ap-northeast-3": 0.7936, + "ap-south-1": 0.4291, "ap-south-2": 0.4291, "ap-southeast-1": 0.8141, "ap-southeast-2": 0.768, "ap-southeast-3": 0.768, "ap-southeast-4": 0.0, "ca-central-1": 0.7259, - "eu-central-1": 0.736, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 0.8096, "eu-north-1": 0.6952, "eu-south-1": 0.7597, "eu-south-2": 0.7288, "eu-west-1": 0.7288, - "eu-west-2": 0.0, - "eu-west-3": 0.72, + "eu-west-2": 0.753, + "eu-west-3": 0.0, "il-central-1": 0.7224, "me-central-1": 0.8017, "me-south-1": 0.7976, "sa-east-1": 0.9792, - "us-east-1": 0.6528, + "us-east-1": 0.616, "us-east-2": 0.616, "us-gov-east-1": 0.8209, "us-gov-west-1": 0.8209, - "us-west-1": 0.7168, - "us-west-2": 0.6528 + "us-west-1": 0.0, + "us-west-2": 0.6528, + "us-west-2-lax-1": 0.7392 }, "m6g.8xlarge": { "af-south-1": 1.7231, "ap-east-1": 1.696, - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.5952, + "ap-northeast-1": 1.68, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.8582, "ap-south-2": 0.8582, "ap-southeast-1": 1.6282, "ap-southeast-2": 1.536, - "ap-southeast-3": 1.536, - "ap-southeast-4": 0.0, + "ap-southeast-3": 1.6282, + "ap-southeast-4": 1.536, "ca-central-1": 1.4518, + "ca-west-1": 1.3696, "eu-central-1": 1.56, "eu-central-2": 1.7164, - "eu-north-1": 0.0, - "eu-south-1": 1.5194, - "eu-south-2": 1.376, + "eu-north-1": 1.3904, + "eu-south-1": 1.4336, + "eu-south-2": 0.0, "eu-west-1": 1.376, "eu-west-2": 1.4208, "eu-west-3": 0.0, - "il-central-1": 1.5305, + "il-central-1": 1.4448, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 2.0759, "us-east-1": 0.0, - "us-east-2": 1.3056, - "us-gov-east-1": 1.6417, - "us-gov-west-1": 0.0, + "us-east-2": 1.232, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.5488, "us-west-1": 0.0, - "us-west-2": 1.232 + "us-west-2": 1.232, + "us-west-2-lax-1": 0.0 }, "m6g.12xlarge": { "af-south-1": 0.0, "ap-east-1": 2.544, - "ap-northeast-1": 2.376, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 2.3808, "ap-south-1": 1.2144, "ap-south-2": 0.0, - "ap-southeast-1": 2.4422, - "ap-southeast-2": 2.304, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.304, "ap-southeast-4": 0.0, "ca-central-1": 2.0544, - "eu-central-1": 0.0, - "eu-central-2": 2.5745, - "eu-north-1": 1.968, + "ca-west-1": 2.1777, + "eu-central-1": 2.34, + "eu-central-2": 0.0, + "eu-north-1": 2.0856, "eu-south-1": 0.0, - "eu-south-2": 2.1864, - "eu-west-1": 2.064, - "eu-west-2": 2.1312, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 2.1672, + "il-central-1": 2.2957, "me-central-1": 0.0, "me-south-1": 2.3928, - "sa-east-1": 0.0, + "sa-east-1": 3.1139, "us-east-1": 0.0, "us-east-2": 1.9584, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.4626, + "us-gov-east-1": 2.4626, + "us-gov-west-1": 2.3232, "us-west-1": 2.1504, - "us-west-2": 1.848 + "us-west-2": 0.0, + "us-west-2-lax-1": 2.3501 }, "m6g.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 3.5936, + "ap-east-1": 0.0, "ap-northeast-1": 3.168, "ap-northeast-2": 3.008, - "ap-northeast-3": 3.3649, - "ap-south-1": 1.6192, - "ap-south-2": 1.6192, - "ap-southeast-1": 3.2563, + "ap-northeast-3": 3.1744, + "ap-south-1": 0.0, + "ap-south-2": 1.7164, + "ap-southeast-1": 3.072, "ap-southeast-2": 3.072, "ap-southeast-3": 3.072, - "ap-southeast-4": 0.0, + "ap-southeast-4": 3.072, "ca-central-1": 0.0, + "ca-west-1": 2.9036, "eu-central-1": 2.944, "eu-central-2": 3.4327, - "eu-north-1": 2.624, + "eu-north-1": 2.7808, "eu-south-1": 2.8672, "eu-south-2": 2.9152, "eu-west-1": 2.752, - "eu-west-2": 0.0, + "eu-west-2": 2.8416, "eu-west-3": 3.0528, "il-central-1": 0.0, "me-central-1": 3.0272, @@ -42290,13 +43515,15 @@ "sa-east-1": 0.0, "us-east-1": 2.6112, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.0976, "us-gov-west-1": 3.2835, "us-west-1": 2.8672, - "us-west-2": 2.6112 + "us-west-2": 2.6112, + "us-west-2-lax-1": 2.9568 }, "m6gd": { "af-south-1": 4.224, + "ap-east-1": 4.365, "ap-northeast-1": 4.118, "ap-northeast-2": 3.914, "ap-northeast-3": 4.111, @@ -42306,172 +43533,228 @@ "ap-southeast-2": 4.013, "ap-southeast-3": 3.978, "ap-southeast-4": 4.013, + "ca-central-1": 3.548, + "ca-west-1": 3.548, "eu-central-1": 3.837, "eu-central-2": 4.22, "eu-north-1": 3.379, + "eu-south-1": 3.717, "eu-south-2": 3.548, "eu-west-1": 3.548, "eu-west-2": 3.689, "eu-west-3": 3.717, "il-central-1": 3.726, "me-central-1": 3.9, + "me-south-1": 3.903, + "sa-east-1": 5.069, "us-east-1": 3.182, "us-east-2": 3.182, + "us-gov-east-1": 4.027, + "us-gov-west-1": 4.027, "us-west-1": 3.731, "us-west-2": 3.182 }, "m6gd.medium": { - "af-south-1": 0.0636, - "ap-northeast-1": 0.062, + "af-south-1": 0.06, + "ap-east-1": 0.0657, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0589, - "ap-northeast-3": 0.0619, + "ap-northeast-3": 0.0, "ap-south-1": 0.0302, "ap-south-2": 0.032, "ap-southeast-1": 0.0565, - "ap-southeast-2": 0.057, + "ap-southeast-2": 0.0604, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "eu-central-1": 0.0, + "ap-southeast-4": 0.0604, + "ca-central-1": 0.0, + "ca-west-1": 0.0534, + "eu-central-1": 0.0577, "eu-central-2": 0.0, - "eu-north-1": 0.048, + "eu-north-1": 0.0509, + "eu-south-1": 0.056, "eu-south-2": 0.0504, "eu-west-1": 0.0504, "eu-west-2": 0.0524, - "eu-west-3": 0.0528, + "eu-west-3": 0.0, "il-central-1": 0.0529, "me-central-1": 0.0554, - "us-east-1": 0.0, - "us-east-2": 0.0452, - "us-west-1": 0.053, + "me-south-1": 0.0554, + "sa-east-1": 0.0762, + "us-east-1": 0.0452, + "us-east-2": 0.0479, + "us-gov-east-1": 0.0572, + "us-gov-west-1": 0.0572, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.large": { "af-south-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 0.1314, + "ap-northeast-1": 0.117, "ap-northeast-2": 0.0, "ap-northeast-3": 0.1168, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.0604, "ap-southeast-1": 0.113, "ap-southeast-2": 0.114, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.1198, "ap-southeast-4": 0.1208, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.1008, + "eu-central-1": 0.109, "eu-central-2": 0.1199, "eu-north-1": 0.096, + "eu-south-1": 0.1119, "eu-south-2": 0.1068, "eu-west-1": 0.1068, "eu-west-2": 0.1111, - "eu-west-3": 0.0, + "eu-west-3": 0.1119, "il-central-1": 0.1058, "me-central-1": 0.1174, + "me-south-1": 0.1109, + "sa-east-1": 0.1523, "us-east-1": 0.0, "us-east-2": 0.0958, - "us-west-1": 0.0, + "us-gov-east-1": 0.1213, + "us-gov-west-1": 0.1144, + "us-west-1": 0.106, "us-west-2": 0.0 }, "m6gd.xlarge": { "af-south-1": 0.2544, - "ap-northeast-1": 0.248, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.2356, "ap-northeast-3": 0.0, "ap-south-1": 0.128, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.2396, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "eu-central-1": 0.0, + "ap-southeast-3": 0.2396, + "ap-southeast-4": 0.228, + "ca-central-1": 0.2137, + "ca-west-1": 0.2016, + "eu-central-1": 0.218, "eu-central-2": 0.2541, - "eu-north-1": 0.2036, - "eu-south-2": 0.0, + "eu-north-1": 0.192, + "eu-south-1": 0.2239, + "eu-south-2": 0.2016, "eu-west-1": 0.2016, - "eu-west-2": 0.2222, - "eu-west-3": 0.2239, - "il-central-1": 0.2117, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.0, "me-central-1": 0.0, + "me-south-1": 0.2351, + "sa-east-1": 0.3046, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 0.0, + "us-east-2": 0.1916, + "us-gov-east-1": 0.2425, + "us-gov-west-1": 0.2425, + "us-west-1": 0.212, "us-west-2": 0.1808 }, "m6gd.metal": { - "af-south-1": 0.0, + "af-south-1": 3.84, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 3.7376, - "ap-south-1": 2.0488, + "ap-south-1": 0.0, "ap-south-2": 1.9328, "ap-southeast-1": 3.8336, "ap-southeast-2": 3.648, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-3": 3.616, + "ap-southeast-4": 3.8656, + "ca-central-1": 0.0, + "ca-west-1": 3.2256, "eu-central-1": 3.488, "eu-central-2": 3.8368, - "eu-north-1": 0.0, + "eu-north-1": 3.072, + "eu-south-1": 0.0, "eu-south-2": 3.2256, "eu-west-1": 3.2256, "eu-west-2": 3.3536, "eu-west-3": 3.3792, "il-central-1": 3.5901, "me-central-1": 3.5456, - "us-east-1": 2.8928, + "me-south-1": 0.0, + "sa-east-1": 4.8739, + "us-east-1": 0.0, "us-east-2": 2.8928, + "us-gov-east-1": 3.6608, + "us-gov-west-1": 3.6608, "us-west-1": 0.0, "us-west-2": 3.0664 }, "m6gd.2xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 0.496, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.4712, "ap-northeast-3": 0.4952, "ap-south-1": 0.2561, - "ap-south-2": 0.2416, - "ap-southeast-1": 0.0, + "ap-south-2": 0.2561, + "ap-southeast-1": 0.4792, "ap-southeast-2": 0.4832, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.4832, + "ap-southeast-3": 0.4792, + "ap-southeast-4": 0.456, + "ca-central-1": 0.4274, + "ca-west-1": 0.0, "eu-central-1": 0.436, - "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-2": 0.0, + "eu-central-2": 0.5082, + "eu-north-1": 0.384, + "eu-south-1": 0.4224, + "eu-south-2": 0.4274, "eu-west-1": 0.4274, - "eu-west-2": 0.4192, + "eu-west-2": 0.4444, "eu-west-3": 0.0, "il-central-1": 0.4488, - "me-central-1": 0.4698, + "me-central-1": 0.4432, + "me-south-1": 0.4435, + "sa-east-1": 0.576, "us-east-1": 0.3616, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.4851, "us-west-1": 0.0, "us-west-2": 0.3616 }, "m6gd.4xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.992, "ap-northeast-1": 0.992, - "ap-northeast-2": 0.9424, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.9344, - "ap-south-1": 0.5122, + "ap-south-1": 0.0, "ap-south-2": 0.4832, "ap-southeast-1": 0.9584, "ap-southeast-2": 0.9664, "ap-southeast-3": 0.904, "ap-southeast-4": 0.912, + "ca-central-1": 0.8064, + "ca-west-1": 0.8064, "eu-central-1": 0.924, "eu-central-2": 1.0164, "eu-north-1": 0.8144, + "eu-south-1": 0.8448, "eu-south-2": 0.8064, - "eu-west-1": 0.8548, + "eu-west-1": 0.8064, "eu-west-2": 0.8887, - "eu-west-3": 0.8448, + "eu-west-3": 0.8955, "il-central-1": 0.8975, "me-central-1": 0.8864, - "us-east-1": 0.0, - "us-east-2": 0.7232, - "us-west-1": 0.8992, + "me-south-1": 0.0, + "sa-east-1": 1.2185, + "us-east-1": 0.7666, + "us-east-2": 0.7666, + "us-gov-east-1": 0.9701, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.8xlarge": { "af-south-1": 2.0352, + "ap-east-1": 0.0, "ap-northeast-1": 1.872, "ap-northeast-2": 1.7792, "ap-northeast-3": 1.9809, @@ -42480,68 +43763,91 @@ "ap-southeast-1": 1.808, "ap-southeast-2": 0.0, "ap-southeast-3": 1.808, - "ap-southeast-4": 0.0, - "eu-central-1": 1.744, - "eu-central-2": 0.0, + "ap-southeast-4": 1.824, + "ca-central-1": 1.7096, + "ca-west-1": 1.7096, + "eu-central-1": 1.848, + "eu-central-2": 1.9184, "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 1.7096, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 1.6934, "me-central-1": 1.7728, - "us-east-1": 0.0, + "me-south-1": 1.8805, + "sa-east-1": 2.437, + "us-east-1": 1.4464, "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.8304, + "us-west-1": 1.696, + "us-west-2": 1.5332 }, "m6gd.12xlarge": { "af-south-1": 3.0528, - "ap-northeast-1": 2.808, + "ap-east-1": 2.976, + "ap-northeast-1": 2.976, "ap-northeast-2": 2.8273, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 2.712, - "ap-southeast-2": 2.736, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.712, "ap-southeast-4": 2.8992, + "ca-central-1": 0.0, + "ca-west-1": 2.4192, "eu-central-1": 0.0, "eu-central-2": 2.8776, "eu-north-1": 2.304, + "eu-south-1": 0.0, "eu-south-2": 2.4192, "eu-west-1": 0.0, "eu-west-2": 2.6661, "eu-west-3": 2.5344, - "il-central-1": 2.6926, - "me-central-1": 0.0, + "il-central-1": 2.5402, + "me-central-1": 2.6592, + "me-south-1": 2.8208, + "sa-east-1": 0.0, "us-east-1": 2.2998, - "us-east-2": 2.2998, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-east-2": 2.1696, + "us-gov-east-1": 2.7456, + "us-gov-west-1": 2.9103, + "us-west-1": 2.544, + "us-west-2": 2.2998 }, "m6gd.16xlarge": { "af-south-1": 3.84, - "ap-northeast-1": 3.968, + "ap-east-1": 4.2061, + "ap-northeast-1": 3.744, "ap-northeast-2": 3.5584, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.7376, "ap-south-1": 1.9328, "ap-south-2": 1.9328, "ap-southeast-1": 3.616, - "ap-southeast-2": 3.8656, - "ap-southeast-3": 3.616, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ap-southeast-4": 3.648, - "eu-central-1": 3.488, + "ca-central-1": 3.2256, + "ca-west-1": 3.4191, + "eu-central-1": 0.0, "eu-central-2": 3.8368, "eu-north-1": 3.072, - "eu-south-2": 3.2256, + "eu-south-1": 3.3792, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 3.3536, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 3.5901, "me-central-1": 0.0, + "me-south-1": 3.761, + "sa-east-1": 4.608, "us-east-1": 3.0664, - "us-east-2": 2.8928, + "us-east-2": 3.0664, + "us-gov-east-1": 3.6608, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, @@ -42557,7 +43863,9 @@ "ap-southeast-2": 8.448, "ap-southeast-3": 8.448, "ca-central-1": 7.533, + "ca-west-1": 7.533, "eu-central-1": 8.096, + "eu-central-2": 8.906, "eu-north-1": 7.181, "eu-south-1": 7.885, "eu-west-1": 7.533, @@ -42576,29 +43884,31 @@ }, "m6i.large": { "af-south-1": 0.1397, - "ap-east-1": 0.1452, + "ap-east-1": 0.0, "ap-northeast-1": 0.1364, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.1298, "ap-northeast-3": 0.0, - "ap-south-1": 0.1111, + "ap-south-1": 0.0, "ap-south-2": 0.101, - "ap-southeast-1": 0.12, - "ap-southeast-2": 0.132, - "ap-southeast-3": 0.132, - "ca-central-1": 0.1177, - "eu-central-1": 0.115, + "ap-southeast-1": 0.132, + "ap-southeast-2": 0.12, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.107, + "eu-central-1": 0.0, + "eu-central-2": 0.1265, "eu-north-1": 0.1122, - "eu-south-1": 0.0, + "eu-south-1": 0.1232, "eu-west-1": 0.1177, - "eu-west-2": 0.111, + "eu-west-2": 0.1221, "eu-west-3": 0.1232, "il-central-1": 0.12359, "me-central-1": 0.12947, "me-south-1": 0.132, - "sa-east-1": 0.1683, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.1056, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.1331, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 @@ -42606,63 +43916,67 @@ "m6i.xlarge": { "af-south-1": 0.0, "ap-east-1": 0.264, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.2728, "ap-northeast-2": 0.2596, "ap-northeast-3": 0.248, "ap-south-1": 0.202, - "ap-south-2": 0.2222, + "ap-south-2": 0.202, "ap-southeast-1": 0.24, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 0.214, + "ca-west-1": 0.214, "eu-central-1": 0.253, + "eu-central-2": 0.253, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.2442, + "eu-west-2": 0.0, "eu-west-3": 0.2464, "il-central-1": 0.2247, "me-central-1": 0.25894, - "me-south-1": 0.264, - "sa-east-1": 0.3366, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.2112, "us-east-2": 0.2112, "us-gov-east-1": 0.242, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.242, "us-west-1": 0.2464, - "us-west-2": 0.192 + "us-west-2": 0.2112 }, "m6i.metal": { - "af-south-1": 0.0, + "af-south-1": 8.128, "ap-east-1": 8.448, "ap-northeast-1": 0.0, - "ap-northeast-2": 7.552, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 7.936, "ap-south-1": 0.0, - "ap-south-2": 6.464, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 7.68, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 6.848, + "ca-west-1": 6.848, "eu-central-1": 7.36, + "eu-central-2": 8.096, "eu-north-1": 6.528, "eu-south-1": 7.168, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 7.168, "il-central-1": 7.1904, - "me-central-1": 7.5328, + "me-central-1": 0.0, "me-south-1": 8.448, "sa-east-1": 0.0, "us-east-1": 6.144, "us-east-2": 0.0, - "us-gov-east-1": 7.744, + "us-gov-east-1": 0.0, "us-gov-west-1": 7.744, "us-west-1": 7.168, "us-west-2": 0.0 }, "m6i.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.508, "ap-east-1": 0.5808, "ap-northeast-1": 0.0, "ap-northeast-2": 0.5192, @@ -42670,72 +43984,78 @@ "ap-south-1": 0.4444, "ap-south-2": 0.404, "ap-southeast-1": 0.48, - "ap-southeast-2": 0.528, - "ap-southeast-3": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.506, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.48, + "ca-central-1": 0.4708, + "ca-west-1": 0.428, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.408, - "eu-south-1": 0.0, + "eu-south-1": 0.4928, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 0.4884, "eu-west-3": 0.4928, "il-central-1": 0.49434, "me-central-1": 0.4708, - "me-south-1": 0.528, + "me-south-1": 0.5808, "sa-east-1": 0.6732, "us-east-1": 0.4224, "us-east-2": 0.384, "us-gov-east-1": 0.5324, - "us-gov-west-1": 0.5324, + "us-gov-west-1": 0.484, "us-west-1": 0.4928, - "us-west-2": 0.384 + "us-west-2": 0.0 }, "m6i.4xlarge": { "af-south-1": 1.1176, "ap-east-1": 1.056, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.0384, + "ap-northeast-2": 0.944, "ap-northeast-3": 0.992, "ap-south-1": 0.808, "ap-south-2": 0.8888, "ap-southeast-1": 0.96, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.056, "ca-central-1": 0.9416, - "eu-central-1": 0.92, + "ca-west-1": 0.0, + "eu-central-1": 1.012, + "eu-central-2": 1.1132, "eu-north-1": 0.0, - "eu-south-1": 0.896, - "eu-west-1": 0.0, - "eu-west-2": 0.888, - "eu-west-3": 0.896, - "il-central-1": 0.98868, - "me-central-1": 1.03576, - "me-south-1": 1.056, - "sa-east-1": 1.3464, - "us-east-1": 0.0, - "us-east-2": 0.768, + "eu-south-1": 0.0, + "eu-west-1": 0.9416, + "eu-west-2": 0.9768, + "eu-west-3": 0.9856, + "il-central-1": 0.8988, + "me-central-1": 0.9416, + "me-south-1": 1.1616, + "sa-east-1": 1.224, + "us-east-1": 0.8448, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.9856, + "us-gov-west-1": 1.0648, + "us-west-1": 0.0, "us-west-2": 0.768 }, "m6i.8xlarge": { - "af-south-1": 2.032, - "ap-east-1": 2.3232, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 1.984, - "ap-northeast-2": 1.888, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.984, - "ap-south-1": 1.616, + "ap-south-1": 0.0, "ap-south-2": 1.616, "ap-southeast-1": 1.92, "ap-southeast-2": 1.92, - "ap-southeast-3": 1.92, - "ca-central-1": 1.712, - "eu-central-1": 1.84, - "eu-north-1": 1.632, - "eu-south-1": 0.0, + "ap-southeast-3": 2.112, + "ca-central-1": 0.0, + "ca-west-1": 1.8832, + "eu-central-1": 2.024, + "eu-central-2": 2.2264, + "eu-north-1": 0.0, + "eu-south-1": 1.9712, "eu-west-1": 1.712, - "eu-west-2": 1.9536, + "eu-west-2": 1.776, "eu-west-3": 1.9712, "il-central-1": 1.97736, "me-central-1": 1.8832, @@ -42750,29 +44070,31 @@ }, "m6i.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 3.4848, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 2.832, - "ap-northeast-3": 3.2736, + "ap-northeast-2": 0.0, + "ap-northeast-3": 2.976, "ap-south-1": 2.424, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.168, "ap-southeast-3": 0.0, - "ca-central-1": 2.8248, - "eu-central-1": 3.036, + "ca-central-1": 0.0, + "ca-west-1": 2.568, + "eu-central-1": 0.0, + "eu-central-2": 3.3396, "eu-north-1": 2.6928, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 2.8248, "eu-west-2": 2.664, - "eu-west-3": 2.9568, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 3.168, - "sa-east-1": 3.672, + "sa-east-1": 0.0, "us-east-1": 2.304, "us-east-2": 0.0, - "us-gov-east-1": 3.1944, + "us-gov-east-1": 0.0, "us-gov-west-1": 2.904, "us-west-1": 2.688, "us-west-2": 2.304 @@ -42784,56 +44106,60 @@ "ap-northeast-2": 3.776, "ap-northeast-3": 0.0, "ap-south-1": 3.5552, - "ap-south-2": 0.0, + "ap-south-2": 3.232, "ap-southeast-1": 3.84, "ap-southeast-2": 3.84, - "ap-southeast-3": 0.0, - "ca-central-1": 3.424, + "ap-southeast-3": 4.224, + "ca-central-1": 3.7664, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 3.5904, + "eu-central-2": 4.4528, + "eu-north-1": 0.0, "eu-south-1": 3.584, - "eu-west-1": 3.424, - "eu-west-2": 3.9072, - "eu-west-3": 3.9424, - "il-central-1": 0.0, + "eu-west-1": 3.7664, + "eu-west-2": 3.552, + "eu-west-3": 0.0, + "il-central-1": 3.5952, "me-central-1": 0.0, "me-south-1": 4.224, "sa-east-1": 0.0, "us-east-1": 3.072, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 4.2592, "us-gov-west-1": 3.872, - "us-west-1": 3.9424, - "us-west-2": 3.3792 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m6i.24xlarge": { "af-south-1": 0.0, "ap-east-1": 6.9696, - "ap-northeast-1": 6.5472, - "ap-northeast-2": 5.664, + "ap-northeast-1": 5.952, + "ap-northeast-2": 6.2304, "ap-northeast-3": 5.952, - "ap-south-1": 0.0, + "ap-south-1": 5.3328, "ap-south-2": 0.0, - "ap-southeast-1": 5.76, + "ap-southeast-1": 0.0, "ap-southeast-2": 6.336, "ap-southeast-3": 5.76, "ca-central-1": 0.0, - "eu-central-1": 5.52, + "ca-west-1": 0.0, + "eu-central-1": 6.072, + "eu-central-2": 6.072, "eu-north-1": 0.0, - "eu-south-1": 5.9136, - "eu-west-1": 5.6496, - "eu-west-2": 0.0, - "eu-west-3": 5.9136, - "il-central-1": 5.93208, + "eu-south-1": 5.376, + "eu-west-1": 0.0, + "eu-west-2": 5.328, + "eu-west-3": 5.376, + "il-central-1": 5.3928, "me-central-1": 5.6496, "me-south-1": 0.0, - "sa-east-1": 8.0784, + "sa-east-1": 7.344, "us-east-1": 4.608, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 5.0688 + "us-west-2": 4.608 }, "m6i.32xlarge": { "af-south-1": 8.128, @@ -42842,22 +44168,24 @@ "ap-northeast-2": 8.3072, "ap-northeast-3": 7.936, "ap-south-1": 0.0, - "ap-south-2": 6.464, - "ap-southeast-1": 8.448, + "ap-south-2": 0.0, + "ap-southeast-1": 7.68, "ap-southeast-2": 7.68, - "ap-southeast-3": 7.68, + "ap-southeast-3": 0.0, "ca-central-1": 6.848, - "eu-central-1": 8.096, + "ca-west-1": 6.848, + "eu-central-1": 7.36, + "eu-central-2": 8.096, "eu-north-1": 6.528, "eu-south-1": 7.168, - "eu-west-1": 6.848, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 7.104, "eu-west-3": 7.168, "il-central-1": 7.1904, - "me-central-1": 7.5328, + "me-central-1": 0.0, "me-south-1": 8.448, "sa-east-1": 9.792, - "us-east-1": 6.7584, + "us-east-1": 6.144, "us-east-2": 6.144, "us-gov-east-1": 7.744, "us-gov-west-1": 7.744, @@ -42866,10 +44194,18 @@ }, "m6id": { "ap-northeast-1": 10.792, + "ap-northeast-2": 10.275, + "ap-south-1": 9.018, + "ap-southeast-1": 10.423, "ap-southeast-2": 10.497, + "ca-central-1": 9.314, + "ca-west-1": 9.314, "eu-central-1": 10.053, + "eu-central-2": 11.058, "eu-west-1": 9.314, + "eu-west-2": 9.684, "il-central-1": 9.78, + "sa-east-1": 13.306, "us-east-1": 8.353, "us-east-2": 8.353, "us-gov-west-1": 10.574, @@ -42877,562 +44213,1357 @@ }, "m6id.large": { "ap-northeast-1": 0.16863, + "ap-northeast-2": 0.16055, + "ap-south-1": 0.0, + "ap-southeast-1": 0.14805, "ap-southeast-2": 0.1491, + "ca-central-1": 0.1323, + "ca-west-1": 0.14553, "eu-central-1": 0.15708, + "eu-central-2": 0.0, "eu-west-1": 0.1323, + "eu-west-2": 0.15131, "il-central-1": 0.15281, + "sa-east-1": 0.189, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.1502, - "us-west-2": 0.11865 + "us-west-2": 0.13052 }, "m6id.xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-2": 0.2982, + "ap-northeast-1": 0.33726, + "ap-northeast-2": 0.2919, + "ap-south-1": 0.0, + "ap-southeast-1": 0.2961, + "ap-southeast-2": 0.0, + "ca-central-1": 0.29106, + "ca-west-1": 0.29106, "eu-central-1": 0.2856, + "eu-central-2": 0.31416, "eu-west-1": 0.2646, + "eu-west-2": 0.2751, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.2373, - "us-east-2": 0.0, + "us-east-2": 0.26103, "us-gov-west-1": 0.3004, - "us-west-2": 0.26103 + "us-west-2": 0.2373 }, "m6id.metal": { "ap-northeast-1": 9.8112, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 9.4752, "ap-southeast-2": 9.5424, + "ca-central-1": 8.4672, + "ca-west-1": 8.4672, "eu-central-1": 9.1392, + "eu-central-2": 0.0, "eu-west-1": 8.4672, + "eu-west-2": 8.8032, "il-central-1": 0.0, - "us-east-1": 0.0, + "sa-east-1": 12.096, + "us-east-1": 7.5936, "us-east-2": 7.5936, "us-gov-west-1": 9.6128, "us-west-2": 7.5936 }, "m6id.2xlarge": { "ap-northeast-1": 0.67452, - "ap-southeast-2": 0.65604, + "ap-northeast-2": 0.5838, + "ap-south-1": 0.5124, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.5964, + "ca-central-1": 0.0, + "ca-west-1": 0.58212, "eu-central-1": 0.62832, + "eu-central-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 0.0, - "us-east-1": 0.4746, + "sa-east-1": 0.0, + "us-east-1": 0.52206, "us-east-2": 0.52206, "us-gov-west-1": 0.0, "us-west-2": 0.52206 }, "m6id.4xlarge": { "ap-northeast-1": 1.2264, + "ap-northeast-2": 1.1676, + "ap-south-1": 1.12728, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.1928, + "ca-central-1": 1.16424, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 1.25664, "eu-west-1": 1.16424, + "eu-west-2": 1.21044, "il-central-1": 1.2225, + "sa-east-1": 1.6632, "us-east-1": 1.04412, "us-east-2": 1.04412, - "us-gov-west-1": 1.2016, + "us-gov-west-1": 0.0, "us-west-2": 0.9492 }, "m6id.8xlarge": { - "ap-northeast-1": 2.4528, - "ap-southeast-2": 2.3856, + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.3352, + "ap-south-1": 2.0496, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.62416, + "ca-central-1": 2.1168, + "ca-west-1": 2.32848, "eu-central-1": 0.0, + "eu-central-2": 2.76461, "eu-west-1": 2.1168, + "eu-west-2": 0.0, "il-central-1": 2.22272, + "sa-east-1": 3.024, "us-east-1": 0.0, "us-east-2": 1.8984, - "us-gov-west-1": 2.4032, + "us-gov-west-1": 0.0, "us-west-2": 1.8984 }, "m6id.12xlarge": { "ap-northeast-1": 4.04712, + "ap-northeast-2": 3.85308, + "ap-south-1": 3.0744, + "ap-southeast-1": 3.90852, "ap-southeast-2": 3.5784, - "eu-central-1": 0.0, + "ca-central-1": 3.1752, + "ca-west-1": 0.0, + "eu-central-1": 3.76992, + "eu-central-2": 4.14691, "eu-west-1": 0.0, + "eu-west-2": 3.3012, "il-central-1": 3.33408, + "sa-east-1": 4.9896, "us-east-1": 3.13236, - "us-east-2": 0.0, + "us-east-2": 2.8476, "us-gov-west-1": 3.96528, "us-west-2": 3.13236 }, "m6id.16xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.39616, + "ap-northeast-2": 5.13744, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.24832, + "ca-central-1": 4.65696, + "ca-west-1": 4.2336, "eu-central-1": 0.0, + "eu-central-2": 5.02656, "eu-west-1": 4.65696, + "eu-west-2": 4.84176, "il-central-1": 4.44544, + "sa-east-1": 6.048, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 4.17648 }, "m6id.24xlarge": { - "ap-northeast-1": 7.3584, + "ap-northeast-1": 0.0, + "ap-northeast-2": 7.70616, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 7.53984, + "ca-central-1": 6.3504, + "ca-west-1": 6.98544, + "eu-central-1": 0.0, + "eu-central-2": 7.53984, "eu-west-1": 6.98544, - "il-central-1": 7.33498, - "us-east-1": 6.26472, + "eu-west-2": 0.0, + "il-central-1": 6.66816, + "sa-east-1": 9.072, + "us-east-1": 5.6952, "us-east-2": 0.0, - "us-gov-west-1": 7.2096, + "us-gov-west-1": 0.0, "us-west-2": 5.6952 }, "m6id.32xlarge": { "ap-northeast-1": 9.8112, + "ap-northeast-2": 9.3408, + "ap-south-1": 0.0, + "ap-southeast-1": 9.4752, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 10.05312, "eu-west-1": 8.4672, + "eu-west-2": 8.8032, "il-central-1": 0.0, + "sa-east-1": 12.096, "us-east-1": 7.5936, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-east-2": 7.5936, + "us-gov-west-1": 9.6128, "us-west-2": 0.0 }, "m6idn": { "ap-northeast-1": 14.414, "ap-southeast-1": 13.755, + "ap-southeast-2": 14.167, "eu-central-1": 13.344, + "eu-north-1": 11.686, + "eu-south-2": 12.262, "eu-west-1": 12.52, "us-east-1": 11.202, "us-east-2": 11.202, "us-gov-west-1": 14.085, + "us-west-1": 12.914, "us-west-2": 11.202 }, "m6idn.large": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.21493, + "ap-southeast-2": 0.0, "eu-central-1": 0.18954, - "eu-west-1": 0.19562, - "us-east-1": 0.0, + "eu-north-1": 0.1826, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.15912, "us-east-2": 0.15912, "us-gov-west-1": 0.0, - "us-west-2": 0.17503 + "us-west-1": 0.18344, + "us-west-2": 0.0 }, "m6idn.xlarge": { "ap-northeast-1": 0.4095, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.44273, "eu-central-1": 0.41699, + "eu-north-1": 0.332, + "eu-south-2": 0.3832, "eu-west-1": 0.0, "us-east-1": 0.31824, - "us-east-2": 0.0, - "us-gov-west-1": 0.40014, + "us-east-2": 0.35006, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6idn.metal": { "ap-northeast-1": 13.104, - "ap-southeast-1": 12.50496, + "ap-southeast-1": 0.0, + "ap-southeast-2": 12.87936, "eu-central-1": 12.13056, + "eu-north-1": 10.624, + "eu-south-2": 11.14752, "eu-west-1": 0.0, "us-east-1": 10.18368, "us-east-2": 10.18368, "us-gov-west-1": 12.80448, + "us-west-1": 11.74016, "us-west-2": 10.18368 }, "m6idn.2xlarge": { "ap-northeast-1": 0.819, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.80496, "eu-central-1": 0.83398, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.71136, "us-east-1": 0.63648, "us-east-2": 0.63648, "us-gov-west-1": 0.0, + "us-west-1": 0.80714, "us-west-2": 0.0 }, "m6idn.4xlarge": { "ap-northeast-1": 1.638, "ap-southeast-1": 1.56312, - "eu-central-1": 1.51632, + "ap-southeast-2": 1.77091, + "eu-central-1": 1.66795, + "eu-north-1": 1.4608, + "eu-south-2": 0.0, "eu-west-1": 1.42272, "us-east-1": 1.40026, "us-east-2": 1.27296, - "us-gov-west-1": 1.76062, + "us-gov-west-1": 0.0, + "us-west-1": 1.61427, "us-west-2": 0.0 }, "m6idn.8xlarge": { "ap-northeast-1": 3.6036, "ap-southeast-1": 3.43886, - "eu-central-1": 3.03264, + "ap-southeast-2": 3.54182, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 3.06557, "eu-west-1": 2.84544, "us-east-1": 0.0, "us-east-2": 2.80051, - "us-gov-west-1": 3.20112, - "us-west-2": 2.80051 + "us-gov-west-1": 0.0, + "us-west-1": 2.93504, + "us-west-2": 0.0 }, "m6idn.12xlarge": { "ap-northeast-1": 5.4054, "ap-southeast-1": 4.68936, + "ap-southeast-2": 0.0, "eu-central-1": 4.54896, + "eu-north-1": 4.3824, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 3.81888, "us-east-2": 3.81888, "us-gov-west-1": 0.0, - "us-west-2": 3.81888 + "us-west-1": 4.40256, + "us-west-2": 4.20077 }, "m6idn.16xlarge": { "ap-northeast-1": 7.2072, - "ap-southeast-1": 6.87773, + "ap-southeast-1": 0.0, + "ap-southeast-2": 7.08365, "eu-central-1": 6.67181, - "eu-west-1": 5.69088, + "eu-north-1": 5.312, + "eu-south-2": 6.13114, + "eu-west-1": 6.25997, "us-east-1": 5.09184, "us-east-2": 0.0, - "us-gov-west-1": 6.40224, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 5.60102 }, "m6idn.24xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-1": 9.37872, + "ap-southeast-2": 0.0, + "eu-central-1": 10.00771, + "eu-north-1": 8.7648, + "eu-south-2": 8.36064, "eu-west-1": 9.38995, - "us-east-1": 8.40154, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 10.5637, - "us-west-2": 7.63776 + "us-west-1": 0.0, + "us-west-2": 8.40154 }, "m6idn.32xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 13.104, "ap-southeast-1": 12.50496, + "ap-southeast-2": 12.87936, "eu-central-1": 0.0, - "eu-west-1": 11.38176, + "eu-north-1": 0.0, + "eu-south-2": 11.14752, + "eu-west-1": 0.0, "us-east-1": 10.18368, "us-east-2": 10.18368, "us-gov-west-1": 0.0, + "us-west-1": 11.74016, "us-west-2": 10.18368 }, "m6in": { "ap-northeast-1": 12.602, "ap-southeast-1": 12.026, + "ap-southeast-2": 12.355, "eu-central-1": 11.614, + "eu-north-1": 10.419, + "eu-south-2": 10.925, "eu-west-1": 10.955, "us-east-1": 9.802, "us-east-2": 9.802, "us-gov-west-1": 12.273, + "us-west-1": 11.436, "us-west-2": 9.802 }, "m6in.large": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.1879, + "ap-southeast-2": 0.0, "eu-central-1": 0.18147, + "eu-north-1": 0.1628, + "eu-south-2": 0.1707, "eu-west-1": 0.17117, "us-east-1": 0.15315, "us-east-2": 0.15315, "us-gov-west-1": 0.19176, + "us-west-1": 0.0, "us-west-2": 0.13923 }, "m6in.xlarge": { "ap-northeast-1": 0.35802, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.351, "eu-central-1": 0.0, + "eu-north-1": 0.3256, + "eu-south-2": 0.3414, "eu-west-1": 0.34234, "us-east-1": 0.0, "us-east-2": 0.30631, "us-gov-west-1": 0.38353, + "us-west-1": 0.32488, "us-west-2": 0.30631 }, "m6in.metal": { "ap-northeast-1": 11.45664, "ap-southeast-1": 10.93248, + "ap-southeast-2": 0.0, "eu-central-1": 10.55808, + "eu-north-1": 9.472, + "eu-south-2": 9.93152, "eu-west-1": 0.0, - "us-east-1": 8.91072, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 11.15712, + "us-west-1": 10.39616, "us-west-2": 0.0 }, "m6in.2xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.75161, - "eu-central-1": 0.72587, - "eu-west-1": 0.68468, - "us-east-1": 0.61261, + "ap-southeast-2": 0.702, + "eu-central-1": 0.0, + "eu-north-1": 0.6512, + "eu-south-2": 0.62072, + "eu-west-1": 0.0, + "us-east-1": 0.55692, "us-east-2": 0.0, "us-gov-west-1": 0.76705, - "us-west-2": 0.55692 + "us-west-1": 0.64976, + "us-west-2": 0.61261 }, "m6in.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.50322, + "ap-southeast-2": 1.404, "eu-central-1": 1.31976, + "eu-north-1": 0.0, + "eu-south-2": 1.36558, "eu-west-1": 1.36937, - "us-east-1": 1.11384, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.22522, "us-gov-west-1": 0.0, + "us-west-1": 1.29952, "us-west-2": 1.11384 }, "m6in.8xlarge": { "ap-northeast-1": 2.86416, "ap-southeast-1": 0.0, - "eu-central-1": 2.63952, + "ap-southeast-2": 3.0888, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.73117, "eu-west-1": 2.48976, - "us-east-1": 2.22768, + "us-east-1": 2.45045, "us-east-2": 2.45045, "us-gov-west-1": 3.06821, + "us-west-1": 0.0, "us-west-2": 2.22768 }, "m6in.12xlarge": { "ap-northeast-1": 4.29624, "ap-southeast-1": 4.09968, + "ap-southeast-2": 4.6332, "eu-central-1": 4.35521, - "eu-west-1": 3.73464, - "us-east-1": 0.0, + "eu-north-1": 3.9072, + "eu-south-2": 0.0, + "eu-west-1": 4.1081, + "us-east-1": 3.34152, "us-east-2": 3.34152, - "us-gov-west-1": 4.60231, + "us-gov-west-1": 4.18392, + "us-west-1": 0.0, "us-west-2": 3.67567 }, "m6in.16xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 5.46624, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, + "eu-north-1": 4.736, + "eu-south-2": 0.0, "eu-west-1": 5.47747, "us-east-1": 4.9009, "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-2": 4.45536 + "us-gov-west-1": 6.13642, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m6in.24xlarge": { "ap-northeast-1": 9.45173, "ap-southeast-1": 9.0193, + "ap-southeast-2": 9.2664, "eu-central-1": 8.71042, - "eu-west-1": 0.0, - "us-east-1": 7.35134, - "us-east-2": 7.35134, + "eu-north-1": 7.104, + "eu-south-2": 7.44864, + "eu-west-1": 8.21621, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 6.68304 }, "m6in.32xlarge": { "ap-northeast-1": 11.45664, "ap-southeast-1": 10.93248, + "ap-southeast-2": 11.232, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 9.472, + "eu-south-2": 9.93152, + "eu-west-1": 9.95904, "us-east-1": 8.91072, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 8.91072 + "us-west-1": 10.39616, + "us-west-2": 0.0 + }, + "m7a": { + "ap-northeast-1": 15.811, + "eu-central-1": 14.664, + "eu-north-1": 13.006, + "eu-south-2": 13.644, + "eu-west-1": 13.644, + "us-east-1": 12.241, + "us-east-2": 12.241, + "us-west-2": 12.241 + }, + "m7a.medium": { + "ap-northeast-1": 0.07487, + "eu-central-1": 0.0, + "eu-north-1": 0.06774, + "eu-south-2": 0.0646, + "eu-west-1": 0.0646, + "us-east-1": 0.06376, + "us-east-2": 0.05796, + "us-west-2": 0.05796 + }, + "m7a.large": { + "ap-northeast-1": 0.14973, + "eu-central-1": 0.15275, + "eu-north-1": 0.12316, + "eu-south-2": 0.1292, + "eu-west-1": 0.1292, + "us-east-1": 0.11592, + "us-east-2": 0.11592, + "us-west-2": 0.11592 + }, + "m7a.xlarge": { + "ap-northeast-1": 0.29946, + "eu-central-1": 0.0, + "eu-north-1": 0.27095, + "eu-south-2": 0.2584, + "eu-west-1": 0.2584, + "us-east-1": 0.0, + "us-east-2": 0.23184, + "us-west-2": 0.23184 + }, + "m7a.metal-48xl": { + "ap-northeast-1": 14.37408, + "eu-central-1": 0.0, + "eu-north-1": 11.82336, + "eu-south-2": 12.4032, + "eu-west-1": 12.4032, + "us-east-1": 11.12832, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "m7a.2xlarge": { + "ap-northeast-1": 0.59892, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.5168, + "eu-west-1": 0.5168, + "us-east-1": 0.46368, + "us-east-2": 0.46368, + "us-west-2": 0.46368 + }, + "m7a.4xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 1.13696, + "eu-west-1": 1.0336, + "us-east-1": 1.0201, + "us-east-2": 0.92736, + "us-west-2": 0.92736 + }, + "m7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 2.22176, + "eu-north-1": 1.97056, + "eu-south-2": 2.27392, + "eu-west-1": 0.0, + "us-east-1": 2.04019, + "us-east-2": 1.85472, + "us-west-2": 0.0 + }, + "m7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 3.1008, + "eu-west-1": 3.1008, + "us-east-1": 3.06029, + "us-east-2": 2.78208, + "us-west-2": 0.0 + }, + "m7a.16xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 4.1344, + "eu-west-1": 4.54784, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 3.70944 + }, + "m7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 5.91168, + "eu-south-2": 0.0, + "eu-west-1": 6.82176, + "us-east-1": 5.56416, + "us-east-2": 5.56416, + "us-west-2": 0.0 + }, + "m7a.32xlarge": { + "ap-northeast-1": 9.58272, + "eu-central-1": 8.88704, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "m7a.48xlarge": { + "ap-northeast-1": 14.37408, + "eu-central-1": 13.33056, + "eu-north-1": 11.82336, + "eu-south-2": 12.4032, + "eu-west-1": 12.4032, + "us-east-1": 0.0, + "us-east-2": 11.12832, + "us-west-2": 0.0 }, "m7g": { "ap-northeast-1": 11.13, + "ap-northeast-2": 10.592, + "ap-south-1": 6.159, + "ap-south-2": 6.159, + "ap-southeast-1": 10.771, "ap-southeast-2": 10.771, - "eu-central-1": 10.323 + "ca-central-1": 9.605, + "eu-central-1": 10.323, + "eu-north-1": 9.156, + "eu-south-2": 9.599, + "eu-west-1": 9.604, + "eu-west-2": 9.964, + "eu-west-3": 10.053, + "me-south-1": 11.848, + "sa-east-1": 13.733, + "us-east-1": 8.617, + "us-east-2": 8.617, + "us-west-1": 10.053, + "us-west-2": 8.617 }, "m7g.medium": { "ap-northeast-1": 0.0527, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0292, + "ap-southeast-1": 0.051, "ap-southeast-2": 0.051, + "ca-central-1": 0.0483, "eu-central-1": 0.0489, + "eu-north-1": 0.0434, + "eu-south-2": 0.0483, "eu-west-1": 0.0455, - "us-east-1": 0.0408, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "me-south-1": 0.0596, + "sa-east-1": 0.0689, + "us-east-1": 0.0434, "us-east-2": 0.0408, - "us-west-2": 0.0408 + "us-west-1": 0.0476, + "us-west-2": 0.0434 }, "m7g.large": { "ap-northeast-1": 0.1054, + "ap-northeast-2": 0.1003, + "ap-south-1": 0.0583, + "ap-south-2": 0.062, + "ap-southeast-1": 0.1084, "ap-southeast-2": 0.0, - "eu-central-1": 0.0978, + "ca-central-1": 0.0967, + "eu-central-1": 0.0, + "eu-north-1": 0.0922, + "eu-south-2": 0.0909, "eu-west-1": 0.091, - "us-east-1": 0.0816, - "us-east-2": 0.0816, - "us-west-2": 0.0816 + "eu-west-2": 0.0, + "eu-west-3": 0.0952, + "me-south-1": 0.1122, + "sa-east-1": 0.0, + "us-east-1": 0.0867, + "us-east-2": 0.0, + "us-west-1": 0.0952, + "us-west-2": 0.0 }, "m7g.xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.2006, + "ap-south-1": 0.124, + "ap-south-2": 0.1166, + "ap-southeast-1": 0.2169, "ap-southeast-2": 0.204, + "ca-central-1": 0.1819, "eu-central-1": 0.1955, + "eu-north-1": 0.1843, + "eu-south-2": 0.1818, "eu-west-1": 0.1819, - "us-east-1": 0.1632, - "us-east-2": 0.1632, - "us-west-2": 0.1632 + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.1735, + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.1735 }, "m7g.metal": { "ap-northeast-1": 3.3728, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 3.264, "ap-southeast-2": 0.0, + "ca-central-1": 2.9107, "eu-central-1": 3.1283, - "eu-west-1": 2.9104, + "eu-north-1": 0.0, + "eu-south-2": 2.9088, + "eu-west-1": 0.0, + "eu-west-2": 3.0195, + "eu-west-3": 3.0464, + "me-south-1": 3.5904, + "sa-east-1": 4.1616, "us-east-1": 2.6112, "us-east-2": 2.6112, + "us-west-1": 3.0464, "us-west-2": 2.6112 }, "m7g.2xlarge": { "ap-northeast-1": 0.4482, + "ap-northeast-2": 0.4012, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.408, "ap-southeast-2": 0.408, + "ca-central-1": 0.3867, "eu-central-1": 0.0, - "eu-west-1": 0.3638, - "us-east-1": 0.3264, - "us-east-2": 0.3264, + "eu-north-1": 0.3468, + "eu-south-2": 0.3865, + "eu-west-1": 0.3867, + "eu-west-2": 0.0, + "eu-west-3": 0.3808, + "me-south-1": 0.4771, + "sa-east-1": 0.5202, + "us-east-1": 0.0, + "us-east-2": 0.347, + "us-west-1": 0.3808, "us-west-2": 0.3264 }, "m7g.4xlarge": { "ap-northeast-1": 0.8964, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.8674, "ap-southeast-2": 0.816, - "eu-central-1": 0.0, + "ca-central-1": 0.7277, + "eu-central-1": 0.8314, + "eu-north-1": 0.6936, + "eu-south-2": 0.773, "eu-west-1": 0.7276, - "us-east-1": 0.6528, - "us-east-2": 0.6528, + "eu-west-2": 0.8024, + "eu-west-3": 0.8094, + "me-south-1": 0.8976, + "sa-east-1": 0.0, + "us-east-1": 0.6939, + "us-east-2": 0.6939, + "us-west-1": 0.0, "us-west-2": 0.6528 }, "m7g.8xlarge": { "ap-northeast-1": 1.7928, + "ap-northeast-2": 1.7048, + "ap-south-1": 0.9331, + "ap-south-2": 0.9331, + "ap-southeast-1": 1.7348, "ap-southeast-2": 0.0, - "eu-central-1": 1.5642, + "ca-central-1": 0.0, + "eu-central-1": 1.6627, + "eu-north-1": 1.3872, + "eu-south-2": 1.5459, "eu-west-1": 1.4552, + "eu-west-2": 0.0, + "eu-west-3": 1.6189, + "me-south-1": 0.0, + "sa-east-1": 2.0808, "us-east-1": 1.3056, - "us-east-2": 1.3056, + "us-east-2": 0.0, + "us-west-1": 1.5232, "us-west-2": 1.3056 }, "m7g.12xlarge": { "ap-northeast-1": 2.6892, - "ap-southeast-2": 2.6022, - "eu-central-1": 0.0, - "eu-west-1": 2.1828, + "ap-northeast-2": 2.4072, + "ap-south-1": 0.0, + "ap-south-2": 1.4879, + "ap-southeast-1": 2.6022, + "ap-southeast-2": 2.448, + "ca-central-1": 2.3201, + "eu-central-1": 2.4941, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 2.3203, + "eu-west-2": 2.4071, + "eu-west-3": 2.2848, + "me-south-1": 2.8624, + "sa-east-1": 3.3054, "us-east-1": 1.9584, - "us-east-2": 1.9584, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 1.9584 }, "m7g.16xlarge": { "ap-northeast-1": 3.3728, + "ap-northeast-2": 3.2096, + "ap-south-1": 1.8662, + "ap-south-2": 1.8662, + "ap-southeast-1": 3.264, "ap-southeast-2": 3.264, + "ca-central-1": 0.0, "eu-central-1": 3.1283, - "eu-west-1": 2.9104, - "us-east-1": 2.6112, + "eu-north-1": 0.0, + "eu-south-2": 2.9088, + "eu-west-1": 0.0, + "eu-west-2": 3.0195, + "eu-west-3": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 2.6112, - "us-west-2": 2.6112 + "us-west-1": 3.0464, + "us-west-2": 0.0 }, "m7gd": { + "ap-northeast-1": 14.57, + "ap-south-1": 7.498, + "ap-southeast-1": 14.071, + "ap-southeast-2": 14.17, + "eu-central-1": 13.572, + "eu-north-1": 11.975, + "eu-south-2": 12.574, "eu-west-1": 12.574, + "eu-west-3": 13.173, + "sa-east-1": 17.963, "us-east-1": 11.276, "us-east-2": 11.276, + "us-west-1": 13.272, "us-west-2": 11.276 }, "m7gd.medium": { - "eu-west-1": 0.0631, + "ap-northeast-1": 0.0731, + "ap-south-1": 0.0355, + "ap-southeast-1": 0.0666, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0643, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.0566 + "us-west-1": 0.0, + "us-west-2": 0.0534 }, "m7gd.large": { - "eu-west-1": 0.1262, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0753, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.1422, + "eu-central-1": 0.1285, + "eu-north-1": 0.1202, + "eu-south-2": 0.1191, + "eu-west-1": 0.1191, + "eu-west-3": 0.1322, + "sa-east-1": 0.1799, "us-east-1": 0.1132, - "us-east-2": 0.1132, - "us-west-2": 0.0 + "us-east-2": 0.1068, + "us-west-1": 0.0, + "us-west-2": 0.1068 }, "m7gd.xlarge": { - "eu-west-1": 0.2524, + "ap-northeast-1": 0.0, + "ap-south-1": 0.142, + "ap-southeast-1": 0.2665, + "ap-southeast-2": 0.0, + "eu-central-1": 0.257, + "eu-north-1": 0.2404, + "eu-south-2": 0.2381, + "eu-west-1": 0.0, + "eu-west-3": 0.2495, + "sa-east-1": 0.0, "us-east-1": 0.2136, - "us-east-2": 0.0, - "us-west-2": 0.2136 + "us-east-2": 0.2136, + "us-west-1": 0.2514, + "us-west-2": 0.0 + }, + "m7gd.metal": { + "ap-northeast-1": 4.415, + "ap-south-1": 2.272, + "ap-southeast-1": 4.2638, + "ap-southeast-2": 4.2941, + "eu-central-1": 4.1126, + "eu-north-1": 3.6288, + "eu-south-2": 0.0, + "eu-west-1": 3.8102, + "eu-west-3": 0.0, + "sa-east-1": 5.4432, + "us-east-1": 0.0, + "us-east-2": 3.4171, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m7gd.2xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.565, + "ap-southeast-2": 0.0, + "eu-central-1": 0.5141, + "eu-north-1": 0.4536, + "eu-south-2": 0.4763, "eu-west-1": 0.4763, - "us-east-1": 0.4271, + "eu-west-3": 0.0, + "sa-east-1": 0.6804, + "us-east-1": 0.4528, "us-east-2": 0.4271, + "us-west-1": 0.0, "us-west-2": 0.4528 }, "m7gd.4xlarge": { - "eu-west-1": 1.0097, + "ap-northeast-1": 1.17, + "ap-south-1": 0.6021, + "ap-southeast-1": 1.1299, + "ap-southeast-2": 1.0735, + "eu-central-1": 1.0282, + "eu-north-1": 0.9072, + "eu-south-2": 0.9526, + "eu-west-1": 0.0, + "eu-west-3": 1.0578, + "sa-east-1": 1.4393, "us-east-1": 0.9055, "us-east-2": 0.8543, - "us-west-2": 0.8543 + "us-west-1": 1.0658, + "us-west-2": 0.9055 }, "m7gd.8xlarge": { - "eu-west-1": 1.9051, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 2.2598, + "ap-southeast-2": 0.0, + "eu-central-1": 2.1797, + "eu-north-1": 1.8144, + "eu-south-2": 0.0, + "eu-west-1": 2.0194, + "eu-west-3": 1.9958, + "sa-east-1": 2.8787, "us-east-1": 1.7086, - "us-east-2": 1.8111, + "us-east-2": 0.0, + "us-west-1": 2.1316, "us-west-2": 0.0 }, "m7gd.12xlarge": { + "ap-northeast-1": 3.3113, + "ap-south-1": 0.0, + "ap-southeast-1": 3.3898, + "ap-southeast-2": 3.4138, + "eu-central-1": 3.2695, + "eu-north-1": 0.0, + "eu-south-2": 2.8577, "eu-west-1": 2.8577, + "eu-west-3": 3.1734, + "sa-east-1": 4.0824, "us-east-1": 2.5628, - "us-east-2": 0.0, + "us-east-2": 2.5628, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m7gd.16xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 4.415, + "ap-south-1": 0.0, + "ap-southeast-1": 4.2638, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.6288, + "eu-south-2": 0.0, + "eu-west-1": 3.8102, + "eu-west-3": 3.9917, + "sa-east-1": 5.4432, "us-east-1": 3.4171, "us-east-2": 3.4171, - "us-west-2": 3.4171 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m7i": { + "ap-northeast-1": 13.749, + "ap-northeast-2": 13.084, + "ap-south-1": 11.199, + "ap-southeast-1": 13.306, + "ap-southeast-2": 13.306, + "ca-central-1": 11.864, + "eu-central-1": 12.751, + "eu-north-1": 11.31, + "eu-south-2": 11.864, "eu-west-1": 11.864, + "eu-west-2": 12.308, + "eu-west-3": 12.419, + "sa-east-1": 16.965, "us-east-1": 10.644, "us-east-2": 10.644, + "us-gov-east-1": 13.416, + "us-gov-west-1": 13.416, + "us-west-1": 12.419, "us-west-2": 10.644 }, "m7i.large": { - "eu-west-1": 0.0, - "us-east-1": 0.1008, - "us-east-2": 0.11088, - "us-west-2": 0.1008 + "ap-northeast-1": 0.14322, + "ap-northeast-2": 0.1239, + "ap-south-1": 0.10605, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.1386, + "ca-central-1": 0.11235, + "eu-central-1": 0.12075, + "eu-north-1": 0.1071, + "eu-south-2": 0.12359, + "eu-west-1": 0.12359, + "eu-west-2": 0.11655, + "eu-west-3": 0.0, + "sa-east-1": 0.16065, + "us-east-1": 0.11088, + "us-east-2": 0.0, + "us-gov-east-1": 0.13976, + "us-gov-west-1": 0.0, + "us-west-1": 0.1176, + "us-west-2": 0.0 }, "m7i.xlarge": { - "eu-west-1": 0.24717, - "us-east-1": 0.2016, + "ap-northeast-1": 0.28644, + "ap-northeast-2": 0.2478, + "ap-south-1": 0.2121, + "ap-southeast-1": 0.252, + "ap-southeast-2": 0.252, + "ca-central-1": 0.24717, + "eu-central-1": 0.0, + "eu-north-1": 0.2142, + "eu-south-2": 0.0, + "eu-west-1": 0.2247, + "eu-west-2": 0.0, + "eu-west-3": 0.25872, + "sa-east-1": 0.0, + "us-east-1": 0.22176, "us-east-2": 0.22176, - "us-west-2": 0.0 + "us-gov-east-1": 0.2541, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.2016 }, - "m7i.2xlarge": { - "eu-west-1": 0.4494, - "us-east-1": 0.0, + "m7i.metal-24xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 6.54192, + "ap-south-1": 5.59944, + "ap-southeast-1": 6.048, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 6.3756, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 5.93208, + "eu-west-2": 6.15384, + "eu-west-3": 0.0, + "sa-east-1": 7.7112, + "us-east-1": 5.32224, "us-east-2": 0.0, + "us-gov-east-1": 6.0984, + "us-gov-west-1": 6.0984, + "us-west-1": 5.6448, + "us-west-2": 5.32224 + }, + "m7i.metal-48xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 10.1808, + "ap-southeast-1": 12.096, + "ap-southeast-2": 12.096, + "ca-central-1": 0.0, + "eu-central-1": 11.592, + "eu-north-1": 10.2816, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 11.1888, + "eu-west-3": 0.0, + "sa-east-1": 15.4224, + "us-east-1": 9.6768, + "us-east-2": 9.6768, + "us-gov-east-1": 0.0, + "us-gov-west-1": 12.1968, + "us-west-1": 11.2896, "us-west-2": 0.0 }, - "m7i.4xlarge": { + "m7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.4956, + "ap-south-1": 0.46662, + "ap-southeast-1": 0.5544, + "ap-southeast-2": 0.5544, + "ca-central-1": 0.49434, + "eu-central-1": 0.483, + "eu-north-1": 0.4284, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.88704, + "eu-west-2": 0.51282, + "eu-west-3": 0.4704, + "sa-east-1": 0.6426, + "us-east-1": 0.44352, + "us-east-2": 0.44352, + "us-gov-east-1": 0.55902, + "us-gov-west-1": 0.5082, + "us-west-1": 0.0, + "us-west-2": 0.44352 + }, + "m7i.4xlarge": { + "ap-northeast-1": 1.0416, + "ap-northeast-2": 0.9912, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.008, + "ca-central-1": 0.8988, + "eu-central-1": 0.0, + "eu-north-1": 0.8568, + "eu-south-2": 0.98868, + "eu-west-1": 0.8988, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.8064, "us-east-2": 0.0, - "us-west-2": 0.88704 + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.0164, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m7i.8xlarge": { + "ap-northeast-1": 2.0832, + "ap-northeast-2": 0.0, + "ap-south-1": 1.6968, + "ap-southeast-1": 2.016, + "ap-southeast-2": 2.016, + "ca-central-1": 1.7976, + "eu-central-1": 0.0, + "eu-north-1": 1.88496, + "eu-south-2": 1.97736, "eu-west-1": 1.7976, + "eu-west-2": 0.0, + "eu-west-3": 2.06976, + "sa-east-1": 2.82744, "us-east-1": 1.6128, "us-east-2": 1.77408, + "us-gov-east-1": 2.0328, + "us-gov-west-1": 0.0, + "us-west-1": 1.8816, "us-west-2": 1.6128 }, "m7i.12xlarge": { - "eu-west-1": 0.0, - "us-east-1": 2.4192, + "ap-northeast-1": 3.1248, + "ap-northeast-2": 2.9736, + "ap-south-1": 2.5452, + "ap-southeast-1": 3.024, + "ap-southeast-2": 3.024, + "ca-central-1": 2.96604, + "eu-central-1": 2.898, + "eu-north-1": 2.5704, + "eu-south-2": 2.6964, + "eu-west-1": 2.96604, + "eu-west-2": 0.0, + "eu-west-3": 3.10464, + "sa-east-1": 4.24116, + "us-east-1": 2.66112, "us-east-2": 2.4192, - "us-west-2": 2.66112 + "us-gov-east-1": 3.35412, + "us-gov-west-1": 3.35412, + "us-west-1": 3.10464, + "us-west-2": 0.0 }, "m7i.16xlarge": { + "ap-northeast-1": 4.1664, + "ap-northeast-2": 3.9648, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.4352, + "ca-central-1": 0.0, + "eu-central-1": 3.864, + "eu-north-1": 3.76992, + "eu-south-2": 0.0, "eu-west-1": 3.5952, - "us-east-1": 3.54816, + "eu-west-2": 3.7296, + "eu-west-3": 0.0, + "sa-east-1": 5.1408, + "us-east-1": 0.0, "us-east-2": 3.2256, + "us-gov-east-1": 4.0656, + "us-gov-west-1": 4.0656, + "us-west-1": 4.13952, "us-west-2": 0.0 }, "m7i.24xlarge": { - "eu-west-1": 5.93208, - "us-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 5.59944, + "ap-southeast-1": 6.6528, + "ap-southeast-2": 0.0, + "ca-central-1": 5.3928, + "eu-central-1": 5.796, + "eu-north-1": 5.65488, + "eu-south-2": 5.93208, + "eu-west-1": 0.0, + "eu-west-2": 6.15384, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 4.8384, "us-east-2": 0.0, + "us-gov-east-1": 6.70824, + "us-gov-west-1": 6.0984, + "us-west-1": 5.6448, "us-west-2": 4.8384 }, "m7i.48xlarge": { + "ap-northeast-1": 12.4992, + "ap-northeast-2": 11.8944, + "ap-south-1": 10.1808, + "ap-southeast-1": 12.096, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 11.592, + "eu-north-1": 0.0, + "eu-south-2": 10.7856, "eu-west-1": 10.7856, + "eu-west-2": 11.1888, + "eu-west-3": 11.2896, + "sa-east-1": 15.4224, "us-east-1": 9.6768, "us-east-2": 9.6768, + "us-gov-east-1": 0.0, + "us-gov-west-1": 12.1968, + "us-west-1": 11.2896, "us-west-2": 9.6768 }, "m7i-flex.large": { + "ap-northeast-1": 0.12369, + "ap-northeast-2": 0.11771, + "ap-south-1": 0.10075, + "ap-southeast-1": 0.1197, + "ap-southeast-2": 0.1197, + "ca-central-1": 0.10673, + "eu-central-1": 0.11471, + "eu-north-1": 0.10175, + "eu-south-2": 0.10673, "eu-west-1": 0.10673, + "eu-west-2": 0.11072, + "eu-west-3": 0.11172, + "sa-east-1": 0.15262, "us-east-1": 0.09576, "us-east-2": 0.09576, + "us-gov-east-1": 0.1207, + "us-gov-west-1": 0.1207, + "us-west-1": 0.11172, "us-west-2": 0.09576 }, "m7i-flex.xlarge": { + "ap-northeast-1": 0.24738, + "ap-northeast-2": 0.23542, + "ap-south-1": 0.2015, + "ap-southeast-1": 0.2394, + "ap-southeast-2": 0.2394, + "ca-central-1": 0.21346, + "eu-central-1": 0.22942, + "eu-north-1": 0.2035, + "eu-south-2": 0.21346, "eu-west-1": 0.21346, + "eu-west-2": 0.22144, + "eu-west-3": 0.22344, + "sa-east-1": 0.30524, "us-east-1": 0.19152, "us-east-2": 0.19152, + "us-gov-east-1": 0.2414, + "us-gov-west-1": 0.2414, + "us-west-1": 0.22344, "us-west-2": 0.19152 }, "m7i-flex.2xlarge": { + "ap-northeast-1": 0.49476, + "ap-northeast-2": 0.47084, + "ap-south-1": 0.403, + "ap-southeast-1": 0.4788, + "ap-southeast-2": 0.4788, + "ca-central-1": 0.42692, + "eu-central-1": 0.45884, + "eu-north-1": 0.407, + "eu-south-2": 0.42692, "eu-west-1": 0.42692, + "eu-west-2": 0.44288, + "eu-west-3": 0.44688, + "sa-east-1": 0.61048, "us-east-1": 0.38304, "us-east-2": 0.38304, + "us-gov-east-1": 0.4828, + "us-gov-west-1": 0.4828, + "us-west-1": 0.44688, "us-west-2": 0.38304 }, "m7i-flex.4xlarge": { + "ap-northeast-1": 0.98952, + "ap-northeast-2": 0.94168, + "ap-south-1": 0.806, + "ap-southeast-1": 0.9576, + "ap-southeast-2": 0.9576, + "ca-central-1": 0.85384, + "eu-central-1": 0.91768, + "eu-north-1": 0.814, + "eu-south-2": 0.85384, "eu-west-1": 0.85384, + "eu-west-2": 0.88576, + "eu-west-3": 0.89376, + "sa-east-1": 1.22096, "us-east-1": 0.76608, "us-east-2": 0.76608, + "us-gov-east-1": 0.9656, + "us-gov-west-1": 0.9656, + "us-west-1": 0.89376, "us-west-2": 0.76608 }, "m7i-flex.8xlarge": { + "ap-northeast-1": 1.97904, + "ap-northeast-2": 1.88336, + "ap-south-1": 1.612, + "ap-southeast-1": 1.9152, + "ap-southeast-2": 1.9152, + "ca-central-1": 1.70768, + "eu-central-1": 1.83536, + "eu-north-1": 1.628, + "eu-south-2": 1.70768, "eu-west-1": 1.70768, + "eu-west-2": 1.77152, + "eu-west-3": 1.78752, + "sa-east-1": 2.44192, "us-east-1": 1.53216, "us-east-2": 1.53216, + "us-gov-east-1": 1.9312, + "us-gov-west-1": 1.9312, + "us-west-1": 1.78752, "us-west-2": 1.53216 }, "mac1": { @@ -43477,6 +45608,32 @@ "us-east-2": 0.0, "us-west-2": 0.0 }, + "mac2-m2": { + "ap-southeast-2": 1.097, + "eu-central-1": 1.052, + "us-east-1": 0.878, + "us-east-2": 0.878, + "us-west-2": 0.878 + }, + "mac2-m2.metal": { + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "mac2-m2pro": { + "ap-southeast-2": 1.95, + "us-east-1": 1.56, + "us-east-2": 1.56, + "us-west-2": 1.56 + }, + "mac2-m2pro.metal": { + "ap-southeast-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, "p2": { "ap-northeast-1": 27.139, "ap-northeast-2": 25.784, @@ -43491,30 +45648,30 @@ "us-west-2": 15.84 }, "p2.xlarge": { - "ap-northeast-1": 1.696, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 1.718, "ap-southeast-2": 0.0, "eu-central-1": 1.326, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-west-1": 0.972, + "us-east-1": 0.99, "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "p2.8xlarge": { - "ap-northeast-1": 13.57, - "ap-northeast-2": 12.892, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 15.118, - "ap-southeast-2": 0.0, + "ap-southeast-1": 13.744, + "ap-southeast-2": 13.57, "eu-central-1": 11.669, - "eu-west-1": 7.776, + "eu-west-1": 8.554, "us-east-1": 7.92, "us-east-2": 0.0, "us-gov-west-1": 8.64, - "us-west-2": 7.92 + "us-west-2": 7.2 }, "p2.16xlarge": { "ap-northeast-1": 0.0, @@ -43527,7 +45684,7 @@ "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 14.4 }, "p3": { "ap-northeast-1": 36.907, @@ -43545,29 +45702,29 @@ }, "p3.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.516, "ap-southeast-1": 4.234, "ap-southeast-2": 4.234, - "ca-central-1": 0.0, + "ca-central-1": 3.585, "eu-central-1": 4.071, "eu-west-1": 0.0, - "eu-west-2": 3.589, + "eu-west-2": 3.822, "us-east-1": 3.259, - "us-east-2": 3.06, + "us-east-2": 3.259, "us-gov-west-1": 3.672, "us-west-2": 0.0 }, "p3.8xlarge": { - "ap-northeast-1": 16.776, + "ap-northeast-1": 17.895, "ap-northeast-2": 16.936, - "ap-southeast-1": 16.936, - "ap-southeast-2": 18.066, + "ap-southeast-1": 0.0, + "ap-southeast-2": 16.936, "ca-central-1": 13.464, "eu-central-1": 0.0, "eu-west-1": 13.22, "eu-west-2": 0.0, - "us-east-1": 0.0, - "us-east-2": 12.24, + "us-east-1": 13.036, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, @@ -43577,13 +45734,13 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 33.872, "ca-central-1": 26.928, - "eu-central-1": 0.0, + "eu-central-1": 30.584, "eu-west-1": 26.44, "eu-west-2": 28.712, - "us-east-1": 0.0, + "us-east-1": 24.48, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 24.48 + "us-west-2": 0.0 }, "p3dn": { "ap-northeast-1": 47.061, @@ -43594,7 +45751,7 @@ }, "p3dn.24xlarge": { "ap-northeast-1": 0.0, - "eu-west-1": 33.711, + "eu-west-1": 0.0, "us-east-1": 31.212, "us-gov-east-1": 37.454, "us-gov-west-1": 37.454, @@ -43603,8 +45760,11 @@ "p4d": { "ap-northeast-1": 49.414, "ap-northeast-2": 49.927, + "ap-southeast-1": 43.26, + "ca-central-1": 41.459, "eu-central-1": 45.039, "eu-west-1": 38.936, + "sa-east-1": 58.377, "us-east-1": 36.05, "us-east-2": 36.05, "us-gov-west-1": 43.263, @@ -43613,26 +45773,36 @@ "p4d.24xlarge": { "ap-northeast-1": 44.92215, "ap-northeast-2": 45.38848, - "eu-central-1": 45.039225, + "ap-southeast-1": 39.3271, + "ca-central-1": 41.459, + "eu-central-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 32.7726, - "us-east-2": 36.04986, - "us-gov-west-1": 39.33, + "sa-east-1": 53.07, + "us-east-1": 36.04986, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "p4de": { + "ap-southeast-1": 54.075, "il-central-1": 58.404, "us-east-1": 45.062, "us-west-2": 45.062 }, "p4de.24xlarge": { - "il-central-1": 0.0, + "ap-southeast-1": 49.159, + "il-central-1": 53.09472, "us-east-1": 45.062325, "us-west-2": 40.96575 }, "p5.48xlarge": { - "us-east-1": 98.32, - "us-west-2": 98.32 + "ap-southeast-2": 127.816, + "ca-central-1": 113.068, + "eu-north-1": 105.2024, + "sa-east-1": 165.1776, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 108.152 }, "r3": { "ap-northeast-1": 3.511, @@ -43651,26 +45821,26 @@ "us-west-2": 2.926 }, "r3.large": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.2, + "ap-northeast-2": 0.22, "ap-south-1": 0.19, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.2, + "ap-southeast-2": 0.2, + "eu-central-1": 0.219, "eu-west-1": 0.204, "sa-east-1": 0.35, - "us-east-1": 0.0, + "us-east-1": 0.166, "us-east-2": 0.0, "us-gov-west-1": 0.2, "us-west-1": 0.0, "us-west-2": 0.0 }, "r3.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.399, "ap-northeast-2": 0.439, "ap-south-1": 0.379, - "ap-southeast-1": 0.439, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.399, + "ap-southeast-2": 0.399, "eu-central-1": 0.44, "eu-west-1": 0.0, "sa-east-1": 0.77, @@ -43682,45 +45852,45 @@ }, "r3.2xlarge": { "ap-northeast-1": 0.878, - "ap-northeast-2": 0.0, - "ap-south-1": 0.834, - "ap-southeast-1": 0.878, + "ap-northeast-2": 0.878, + "ap-south-1": 0.758, + "ap-southeast-1": 0.798, "ap-southeast-2": 0.0, "eu-central-1": 0.88, - "eu-west-1": 0.741, + "eu-west-1": 0.815, "sa-east-1": 1.399, "us-east-1": 0.0, "us-east-2": 0.665, - "us-gov-west-1": 0.798, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.741, "us-west-2": 0.665 }, "r3.4xlarge": { "ap-northeast-1": 1.596, - "ap-northeast-2": 1.596, - "ap-south-1": 1.668, + "ap-northeast-2": 1.756, + "ap-south-1": 1.516, "ap-southeast-1": 1.596, "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.482, - "sa-east-1": 3.079, - "us-east-1": 1.33, + "sa-east-1": 2.799, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 1.596, - "us-west-1": 1.63, - "us-west-2": 1.463 + "us-west-1": 1.482, + "us-west-2": 1.33 }, "r3.8xlarge": { "ap-northeast-1": 3.192, - "ap-northeast-2": 3.192, + "ap-northeast-2": 0.0, "ap-south-1": 3.032, - "ap-southeast-1": 3.192, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 3.201, + "eu-central-1": 0.0, "eu-west-1": 0.0, "sa-east-1": 5.597, "us-east-1": 2.66, - "us-east-2": 2.66, + "us-east-2": 0.0, "us-gov-west-1": 3.192, "us-west-1": 2.964, "us-west-2": 2.66 @@ -43750,22 +45920,22 @@ "ap-northeast-3": 0.0, "ap-south-1": 0.1507, "ap-southeast-1": 0.176, - "ap-southeast-2": 0.176, + "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.176, "eu-west-1": 0.163, - "eu-west-2": 0.156, + "eu-west-2": 0.172, "eu-west-3": 0.0, "sa-east-1": 0.308, - "us-east-1": 0.146, + "us-east-1": 0.0, "us-east-2": 0.133, "us-gov-west-1": 0.0, "us-west-1": 0.163, - "us-west-2": 0.146 + "us-west-2": 0.0 }, "r4.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.352, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.274, "ap-southeast-1": 0.0, @@ -43774,18 +45944,18 @@ "eu-central-1": 0.3201, "eu-west-1": 0.0, "eu-west-2": 0.312, - "eu-west-3": 0.0, - "sa-east-1": 0.616, + "eu-west-3": 0.312, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.293, - "us-gov-west-1": 0.351, + "us-gov-west-1": 0.0, "us-west-1": 0.326, "us-west-2": 0.293 }, "r4.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.704, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.704, "ap-south-1": 0.0, "ap-southeast-1": 0.704, "ap-southeast-2": 0.0, @@ -43793,27 +45963,27 @@ "eu-central-1": 0.704, "eu-west-1": 0.652, "eu-west-2": 0.686, - "eu-west-3": 0.0, + "eu-west-3": 0.624, "sa-east-1": 1.12, "us-east-1": 0.585, "us-east-2": 0.585, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.652, "us-west-2": 0.585 }, "r4.4xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.408, + "ap-northeast-1": 1.28, + "ap-northeast-2": 1.28, "ap-northeast-3": 0.0, "ap-south-1": 1.096, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.404, + "ap-southeast-2": 1.2768, "ca-central-1": 1.285, "eu-central-1": 1.2804, "eu-west-1": 1.304, - "eu-west-2": 1.373, - "eu-west-3": 0.0, - "sa-east-1": 0.0, + "eu-west-2": 1.248, + "eu-west-3": 1.248, + "sa-east-1": 2.464, "us-east-1": 0.0, "us-east-2": 1.064, "us-gov-west-1": 1.404, @@ -43822,14 +45992,14 @@ }, "r4.8xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 2.56, + "ap-northeast-2": 2.816, "ap-northeast-3": 2.816, "ap-south-1": 0.0, - "ap-southeast-1": 2.816, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 2.336, "eu-central-1": 0.0, - "eu-west-1": 2.608, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 0.0, @@ -43837,25 +46007,25 @@ "us-east-2": 2.341, "us-gov-west-1": 2.809, "us-west-1": 2.608, - "us-west-2": 2.128 + "us-west-2": 2.341 }, "r4.16xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 5.12, + "ap-northeast-2": 0.0, "ap-northeast-3": 5.12, "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 5.1072, "ca-central-1": 4.672, "eu-central-1": 5.1216, - "eu-west-1": 4.742, + "eu-west-1": 4.7424, "eu-west-2": 4.992, "eu-west-3": 0.0, "sa-east-1": 8.96, "us-east-1": 4.256, "us-east-2": 4.256, "us-gov-west-1": 5.1072, - "us-west-1": 0.0, + "us-west-1": 4.7424, "us-west-2": 4.256 }, "r5": { @@ -43871,6 +46041,7 @@ "ap-southeast-3": 8.026, "ap-southeast-4": 7.973, "ca-central-1": 7.286, + "ca-west-1": 7.286, "eu-central-1": 8.026, "eu-central-2": 8.828, "eu-north-1": 7.075, @@ -43892,67 +46063,69 @@ "us-west-2-lax-1": 7.983 }, "r5.large": { - "af-south-1": 0.168, - "ap-east-1": 0.167, - "ap-northeast-1": 0.152, + "af-south-1": 0.178, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.161, "ap-south-1": 0.138, - "ap-south-2": 0.0, - "ap-southeast-1": 0.161, - "ap-southeast-2": 0.151, + "ap-south-2": 0.13, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.16, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.16, + "ap-southeast-4": 0.0, "ca-central-1": 0.138, - "eu-central-1": 0.161, + "ca-west-1": 0.146, + "eu-central-1": 0.152, "eu-central-2": 0.167, "eu-north-1": 0.0, "eu-south-1": 0.157, - "eu-south-2": 0.141, - "eu-west-1": 0.141, - "eu-west-2": 0.148, - "eu-west-3": 0.157, - "il-central-1": 0.157, + "eu-south-2": 0.149, + "eu-west-1": 0.0, + "eu-west-2": 0.157, + "eu-west-3": 0.148, + "il-central-1": 0.0, "me-central-1": 0.155, - "me-south-1": 0.164, - "sa-east-1": 0.0, + "me-south-1": 0.155, + "sa-east-1": 0.201, "us-east-1": 0.0, "us-east-2": 0.126, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.16, - "us-west-1": 0.0, + "us-gov-east-1": 0.151, + "us-gov-west-1": 0.151, + "us-west-1": 0.14, "us-west-2": 0.0, - "us-west-2-lax-1": 0.16 + "us-west-2-lax-1": 0.0 }, "r5.xlarge": { "af-south-1": 0.336, "ap-east-1": 0.334, - "ap-northeast-1": 0.304, - "ap-northeast-2": 0.322, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.304, "ap-northeast-3": 0.0, "ap-south-1": 0.26, - "ap-south-2": 0.0, + "ap-south-2": 0.276, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.302, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.322, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.322, + "ca-central-1": 0.293, + "ca-west-1": 0.0, + "eu-central-1": 0.304, "eu-central-2": 0.0, "eu-north-1": 0.284, - "eu-south-1": 0.314, + "eu-south-1": 0.296, "eu-south-2": 0.299, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.314, "il-central-1": 0.0, "me-central-1": 0.329, - "me-south-1": 0.31, + "me-south-1": 0.329, "sa-east-1": 0.402, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.32, - "us-gov-west-1": 0.0, + "us-east-2": 0.252, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.302, "us-west-1": 0.0, "us-west-2": 0.252, "us-west-2-lax-1": 0.302 @@ -43960,8 +46133,8 @@ "r5.metal": { "af-south-1": 8.064, "ap-east-1": 8.016, - "ap-northeast-1": 0.0, - "ap-northeast-2": 7.296, + "ap-northeast-1": 7.296, + "ap-northeast-2": 0.0, "ap-northeast-3": 7.296, "ap-south-1": 6.24, "ap-south-2": 6.24, @@ -43970,121 +46143,125 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 7.248, "ca-central-1": 6.624, + "ca-west-1": 6.624, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 8.026, "eu-north-1": 6.432, "eu-south-1": 0.0, "eu-south-2": 6.768, "eu-west-1": 6.768, - "eu-west-2": 7.104, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 7.106, + "il-central-1": 0.0, "me-central-1": 7.445, "me-south-1": 7.445, "sa-east-1": 0.0, "us-east-1": 6.048, "us-east-2": 0.0, - "us-gov-east-1": 7.248, + "us-gov-east-1": 0.0, "us-gov-west-1": 7.248, - "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-1": 6.72, + "us-west-2": 6.048, "us-west-2-lax-1": 7.258 }, "r5.2xlarge": { "af-south-1": 0.0, "ap-east-1": 0.668, - "ap-northeast-1": 0.644, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.608, + "ap-northeast-2": 0.644, "ap-northeast-3": 0.644, "ap-south-1": 0.52, - "ap-south-2": 0.0, + "ap-south-2": 0.52, "ap-southeast-1": 0.644, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.64, - "ca-central-1": 0.585, - "eu-central-1": 0.0, - "eu-central-2": 0.709, - "eu-north-1": 0.536, + "ca-central-1": 0.552, + "ca-west-1": 0.0, + "eu-central-1": 0.608, + "eu-central-2": 0.669, + "eu-north-1": 0.0, "eu-south-1": 0.628, "eu-south-2": 0.564, - "eu-west-1": 0.564, + "eu-west-1": 0.0, "eu-west-2": 0.628, - "eu-west-3": 0.0, + "eu-west-3": 0.592, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 0.658, "me-south-1": 0.62, "sa-east-1": 0.0, "us-east-1": 0.504, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.604, - "us-west-1": 0.594, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.534, "us-west-2-lax-1": 0.605 }, "r5.4xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, + "af-south-1": 1.425, + "ap-east-1": 1.336, "ap-northeast-1": 1.289, "ap-northeast-2": 1.289, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.216, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 1.216, "ap-southeast-2": 1.28, - "ap-southeast-3": 1.216, + "ap-southeast-3": 0.0, "ap-southeast-4": 1.28, - "ca-central-1": 1.17, - "eu-central-1": 1.289, + "ca-central-1": 1.104, + "ca-west-1": 1.104, + "eu-central-1": 0.0, "eu-central-2": 1.338, "eu-north-1": 1.136, - "eu-south-1": 0.0, + "eu-south-1": 1.184, "eu-south-2": 1.196, "eu-west-1": 0.0, "eu-west-2": 1.255, "eu-west-3": 1.255, - "il-central-1": 1.184, + "il-central-1": 1.255, "me-central-1": 1.315, "me-south-1": 1.241, "sa-east-1": 0.0, - "us-east-1": 1.008, - "us-east-2": 1.068, - "us-gov-east-1": 1.208, + "us-east-1": 1.068, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 1.008, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 1.21 }, "r5.8xlarge": { "af-south-1": 2.688, "ap-east-1": 2.832, - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.432, "ap-northeast-2": 0.0, "ap-northeast-3": 2.578, - "ap-south-1": 0.0, + "ap-south-1": 2.08, "ap-south-2": 2.08, "ap-southeast-1": 2.432, "ap-southeast-2": 2.561, - "ap-southeast-3": 0.0, + "ap-southeast-3": 2.578, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 2.836, + "ca-west-1": 2.208, + "eu-central-1": 2.578, + "eu-central-2": 0.0, "eu-north-1": 2.144, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 2.391, - "eu-west-2": 2.368, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 2.369, "me-central-1": 2.482, - "me-south-1": 0.0, + "me-south-1": 2.482, "sa-east-1": 3.216, - "us-east-1": 0.0, + "us-east-1": 2.016, "us-east-2": 2.137, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.416, "us-west-1": 0.0, "us-west-2": 2.137, "us-west-2-lax-1": 0.0 @@ -44093,39 +46270,40 @@ "af-south-1": 0.0, "ap-east-1": 4.248, "ap-northeast-1": 3.648, - "ap-northeast-2": 3.867, + "ap-northeast-2": 3.648, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 3.306, + "ap-south-2": 0.0, "ap-southeast-1": 3.867, - "ap-southeast-2": 3.841, + "ap-southeast-2": 3.624, "ap-southeast-3": 3.867, "ap-southeast-4": 0.0, "ca-central-1": 3.511, - "eu-central-1": 3.867, - "eu-central-2": 4.013, + "ca-west-1": 0.0, + "eu-central-1": 3.648, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 3.765, + "eu-south-1": 3.552, "eu-south-2": 3.384, "eu-west-1": 3.384, - "eu-west-2": 3.552, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 3.766, + "il-central-1": 3.553, "me-central-1": 3.946, "me-south-1": 0.0, "sa-east-1": 5.113, "us-east-1": 3.205, - "us-east-2": 3.205, + "us-east-2": 3.024, "us-gov-east-1": 3.841, - "us-gov-west-1": 3.624, - "us-west-1": 3.562, + "us-gov-west-1": 0.0, + "us-west-1": 3.36, "us-west-2": 0.0, "us-west-2-lax-1": 3.629 }, "r5.16xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 5.156, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.864, "ap-northeast-3": 4.864, "ap-south-1": 0.0, @@ -44135,45 +46313,47 @@ "ap-southeast-3": 4.864, "ap-southeast-4": 5.122, "ca-central-1": 4.681, + "ca-west-1": 4.681, "eu-central-1": 0.0, "eu-central-2": 5.671, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-1": 5.02, + "eu-south-2": 4.783, "eu-west-1": 4.512, "eu-west-2": 0.0, - "eu-west-3": 4.736, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 5.022, "me-central-1": 4.963, - "me-south-1": 0.0, + "me-south-1": 4.963, "sa-east-1": 6.818, - "us-east-1": 0.0, + "us-east-1": 4.274, "us-east-2": 4.274, "us-gov-east-1": 0.0, - "us-gov-west-1": 5.122, - "us-west-1": 4.48, - "us-west-2": 0.0, + "us-gov-west-1": 4.832, + "us-west-1": 4.749, + "us-west-2": 4.274, "us-west-2-lax-1": 4.838 }, "r5.24xlarge": { "af-south-1": 8.064, - "ap-east-1": 0.0, + "ap-east-1": 8.016, "ap-northeast-1": 7.296, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 6.24, "ap-south-2": 0.0, - "ap-southeast-1": 7.296, + "ap-southeast-1": 0.0, "ap-southeast-2": 7.248, "ap-southeast-3": 0.0, - "ap-southeast-4": 7.248, - "ca-central-1": 0.0, - "eu-central-1": 7.296, + "ap-southeast-4": 0.0, + "ca-central-1": 6.624, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 8.026, "eu-north-1": 6.432, - "eu-south-1": 7.104, + "eu-south-1": 0.0, "eu-south-2": 6.768, - "eu-west-1": 0.0, + "eu-west-1": 6.768, "eu-west-2": 7.104, "eu-west-3": 0.0, "il-central-1": 0.0, @@ -44514,70 +46694,70 @@ "ap-southeast-1": 0.178, "ap-southeast-2": 0.1991, "ca-central-1": 0.163, - "eu-central-1": 0.0, + "eu-central-1": 0.1958, "eu-north-1": 0.173734, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.1837, "eu-west-2": 0.1925, - "sa-east-1": 0.0, + "sa-east-1": 0.2607, "us-east-1": 0.1639, "us-east-2": 0.1639, "us-west-2": 0.1639 }, "r5b.xlarge": { - "ap-northeast-1": 0.3982, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.3916, "ap-southeast-1": 0.356, "ap-southeast-2": 0.362, - "ca-central-1": 0.3586, + "ca-central-1": 0.326, "eu-central-1": 0.3916, - "eu-north-1": 0.347468, + "eu-north-1": 0.31588, "eu-south-1": 0.35, "eu-west-1": 0.3674, - "eu-west-2": 0.385, + "eu-west-2": 0.35, "sa-east-1": 0.5214, "us-east-1": 0.298, - "us-east-2": 0.298, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 0.298 }, "r5b.metal": { "ap-northeast-1": 8.688, - "ap-northeast-2": 9.3984, + "ap-northeast-2": 0.0, "ap-southeast-1": 8.544, "ap-southeast-2": 0.0, "ca-central-1": 8.6064, - "eu-central-1": 8.544, + "eu-central-1": 0.0, "eu-north-1": 8.339232, - "eu-south-1": 9.24, - "eu-west-1": 8.016, + "eu-south-1": 0.0, + "eu-west-1": 8.8176, "eu-west-2": 0.0, "sa-east-1": 12.5136, "us-east-1": 7.152, "us-east-2": 7.8672, - "us-west-2": 7.152 + "us-west-2": 7.8672 }, "r5b.2xlarge": { "ap-northeast-1": 0.724, "ap-northeast-2": 0.7832, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.712, + "ap-southeast-2": 0.724, "ca-central-1": 0.0, "eu-central-1": 0.7832, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 0.7, "eu-west-1": 0.0, - "eu-west-2": 0.77, + "eu-west-2": 0.0, "sa-east-1": 1.0428, - "us-east-1": 0.596, + "us-east-1": 0.6556, "us-east-2": 0.596, - "us-west-2": 0.596 + "us-west-2": 0.0 }, "r5b.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.5928, "ap-northeast-2": 1.5664, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 1.4344, + "ap-southeast-1": 1.5664, + "ap-southeast-2": 1.5928, + "ca-central-1": 1.304, "eu-central-1": 0.0, "eu-north-1": 1.389872, "eu-south-1": 1.54, @@ -44586,20 +46766,20 @@ "sa-east-1": 2.0856, "us-east-1": 1.3112, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.192 }, "r5b.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 2.848, - "ap-southeast-1": 3.1328, - "ap-southeast-2": 2.896, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 2.608, "eu-central-1": 3.1328, - "eu-north-1": 0.0, - "eu-south-1": 2.8, + "eu-north-1": 2.779744, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 2.8, - "sa-east-1": 4.1712, + "sa-east-1": 3.792, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-2": 2.384 @@ -44609,14 +46789,14 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 4.272, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 3.912, "eu-central-1": 4.272, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 4.4088, - "eu-west-2": 0.0, + "eu-west-2": 4.62, "sa-east-1": 5.688, - "us-east-1": 3.576, + "us-east-1": 0.0, "us-east-2": 3.9336, "us-west-2": 3.576 }, @@ -44624,33 +46804,33 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 5.696, "ap-southeast-1": 6.2656, - "ap-southeast-2": 5.792, + "ap-southeast-2": 6.3712, "ca-central-1": 5.216, "eu-central-1": 6.2656, "eu-north-1": 0.0, "eu-south-1": 6.16, - "eu-west-1": 0.0, + "eu-west-1": 5.344, "eu-west-2": 0.0, "sa-east-1": 0.0, - "us-east-1": 4.768, + "us-east-1": 5.2448, "us-east-2": 0.0, "us-west-2": 5.2448 }, "r5b.24xlarge": { - "ap-northeast-1": 9.5568, + "ap-northeast-1": 8.688, "ap-northeast-2": 9.3984, "ap-southeast-1": 9.3984, - "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ap-southeast-2": 8.688, + "ca-central-1": 8.6064, "eu-central-1": 0.0, "eu-north-1": 8.339232, "eu-south-1": 9.24, - "eu-west-1": 8.016, + "eu-west-1": 0.0, "eu-west-2": 8.4, - "sa-east-1": 0.0, + "sa-east-1": 11.376, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 7.8672 + "us-west-2": 7.152 }, "r5d": { "af-south-1": 10.032, @@ -44688,23 +46868,23 @@ "af-south-1": 0.19, "ap-east-1": 0.175, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.184, - "ap-south-1": 0.16, - "ap-south-2": 0.151, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.174, - "ap-southeast-3": 0.174, - "ap-southeast-4": 0.184, + "ap-northeast-2": 0.173, + "ap-northeast-3": 0.174, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.174, + "ap-southeast-2": 0.185, + "ap-southeast-3": 0.184, + "ap-southeast-4": 0.174, "ca-central-1": 0.168, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.178, - "eu-south-2": 0.17, - "eu-west-1": 0.16, - "eu-west-2": 0.0, - "eu-west-3": 0.169, + "eu-central-2": 0.202, + "eu-north-1": 0.161, + "eu-south-1": 0.168, + "eu-south-2": 0.16, + "eu-west-1": 0.0, + "eu-west-2": 0.169, + "eu-west-3": 0.179, "il-central-1": 0.178, "me-central-1": 0.187, "me-south-1": 0.176, @@ -44713,19 +46893,19 @@ "us-east-2": 0.0, "us-gov-east-1": 0.173, "us-gov-west-1": 0.0, - "us-west-1": 0.162, + "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 0.173 + "us-west-2-lax-1": 0.0 }, "r5d.xlarge": { - "af-south-1": 0.38, - "ap-east-1": 0.35, + "af-south-1": 0.403, + "ap-east-1": 0.0, "ap-northeast-1": 0.348, "ap-northeast-2": 0.367, - "ap-northeast-3": 0.369, - "ap-south-1": 0.32, + "ap-northeast-3": 0.348, + "ap-south-1": 0.0, "ap-south-2": 0.32, - "ap-southeast-1": 0.369, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.369, "ap-southeast-3": 0.369, "ap-southeast-4": 0.348, @@ -44734,93 +46914,93 @@ "eu-central-2": 0.403, "eu-north-1": 0.304, "eu-south-1": 0.0, - "eu-south-2": 0.32, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.338, - "il-central-1": 0.336, - "me-central-1": 0.373, + "eu-south-2": 0.0, + "eu-west-1": 0.339, + "eu-west-2": 0.338, + "eu-west-3": 0.358, + "il-central-1": 0.0, + "me-central-1": 0.0, "me-south-1": 0.352, "sa-east-1": 0.484, - "us-east-1": 0.288, + "us-east-1": 0.0, "us-east-2": 0.288, - "us-gov-east-1": 0.367, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.344, - "us-west-2": 0.288, - "us-west-2-lax-1": 0.346 + "us-west-2": 0.305, + "us-west-2-lax-1": 0.0 }, "r5d.metal": { - "af-south-1": 0.0, + "af-south-1": 9.12, "ap-east-1": 8.4, - "ap-northeast-1": 8.352, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 8.352, "ap-south-1": 7.248, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 8.352, + "ap-southeast-2": 0.0, "ap-southeast-3": 8.352, "ap-southeast-4": 8.352, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 9.134, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 8.064, "eu-south-2": 7.68, - "eu-west-1": 7.68, + "eu-west-1": 0.0, "eu-west-2": 8.112, - "eu-west-3": 0.0, + "eu-west-3": 8.112, "il-central-1": 8.064, - "me-central-1": 8.448, + "me-central-1": 0.0, "me-south-1": 8.448, "sa-east-1": 10.944, "us-east-1": 6.912, - "us-east-2": 6.912, + "us-east-2": 0.0, "us-gov-east-1": 8.304, "us-gov-west-1": 0.0, "us-west-1": 7.776, - "us-west-2": 6.912, + "us-west-2": 0.0, "us-west-2-lax-1": 8.294 }, "r5d.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.806, "ap-east-1": 0.7, "ap-northeast-1": 0.738, - "ap-northeast-2": 0.692, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.64, - "ap-south-2": 0.604, + "ap-south-2": 0.0, "ap-southeast-1": 0.696, "ap-southeast-2": 0.696, "ap-southeast-3": 0.738, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.738, "ca-central-1": 0.67, "eu-central-1": 0.692, "eu-central-2": 0.761, "eu-north-1": 0.0, "eu-south-1": 0.672, "eu-south-2": 0.64, - "eu-west-1": 0.679, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.676, + "eu-west-3": 0.717, "il-central-1": 0.672, "me-central-1": 0.704, "me-south-1": 0.747, "sa-east-1": 0.912, - "us-east-1": 0.576, + "us-east-1": 0.0, "us-east-2": 0.576, "us-gov-east-1": 0.692, - "us-gov-west-1": 0.692, + "us-gov-west-1": 0.734, "us-west-1": 0.648, - "us-west-2": 0.576, + "us-west-2": 0.611, "us-west-2-lax-1": 0.0 }, "r5d.4xlarge": { "af-south-1": 1.52, "ap-east-1": 1.484, "ap-northeast-1": 1.392, - "ap-northeast-2": 1.467, + "ap-northeast-2": 1.384, "ap-northeast-3": 1.392, "ap-south-1": 1.208, "ap-south-2": 0.0, @@ -44830,7 +47010,7 @@ "ap-southeast-4": 1.476, "ca-central-1": 1.34, "eu-central-1": 1.468, - "eu-central-2": 1.614, + "eu-central-2": 1.522, "eu-north-1": 0.0, "eu-south-1": 1.425, "eu-south-2": 0.0, @@ -44838,12 +47018,12 @@ "eu-west-2": 0.0, "eu-west-3": 1.352, "il-central-1": 0.0, - "me-central-1": 1.492, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 1.221, - "us-east-2": 0.0, - "us-gov-east-1": 1.468, + "us-east-2": 1.152, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.384, "us-west-1": 0.0, "us-west-2": 1.221, @@ -44860,15 +47040,15 @@ "ap-southeast-1": 2.784, "ap-southeast-2": 2.952, "ap-southeast-3": 2.951, - "ap-southeast-4": 2.784, - "ca-central-1": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 2.528, "eu-central-1": 2.768, - "eu-central-2": 3.227, + "eu-central-2": 3.045, "eu-north-1": 2.432, - "eu-south-1": 0.0, - "eu-south-2": 2.56, - "eu-west-1": 0.0, - "eu-west-2": 2.704, + "eu-south-1": 2.688, + "eu-south-2": 0.0, + "eu-west-1": 2.56, + "eu-west-2": 0.0, "eu-west-3": 2.704, "il-central-1": 2.849, "me-central-1": 2.985, @@ -44883,32 +47063,32 @@ "us-west-2-lax-1": 0.0 }, "r5d.12xlarge": { - "af-south-1": 4.56, + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 4.176, "ap-northeast-2": 0.0, "ap-northeast-3": 4.176, - "ap-south-1": 0.0, + "ap-south-1": 3.841, "ap-south-2": 3.841, - "ap-southeast-1": 4.176, + "ap-southeast-1": 4.427, "ap-southeast-2": 4.176, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 3.792, + "ca-central-1": 4.021, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 3.648, - "eu-south-1": 0.0, + "eu-central-2": 4.841, + "eu-north-1": 0.0, + "eu-south-1": 4.274, "eu-south-2": 3.84, "eu-west-1": 0.0, - "eu-west-2": 4.056, - "eu-west-3": 4.056, - "il-central-1": 4.032, + "eu-west-2": 0.0, + "eu-west-3": 4.3, + "il-central-1": 4.274, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 5.803, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.456, "us-gov-east-1": 4.152, "us-gov-west-1": 4.404, "us-west-1": 4.125, @@ -44922,7 +47102,7 @@ "ap-northeast-2": 5.536, "ap-northeast-3": 5.902, "ap-south-1": 4.832, - "ap-south-2": 5.122, + "ap-south-2": 4.832, "ap-southeast-1": 5.568, "ap-southeast-2": 0.0, "ap-southeast-3": 5.902, @@ -44933,52 +47113,52 @@ "eu-north-1": 4.864, "eu-south-1": 5.376, "eu-south-2": 0.0, - "eu-west-1": 5.12, + "eu-west-1": 0.0, "eu-west-2": 5.408, "eu-west-3": 5.408, - "il-central-1": 5.376, - "me-central-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 5.632, "me-south-1": 0.0, - "sa-east-1": 7.738, + "sa-east-1": 0.0, "us-east-1": 4.608, "us-east-2": 4.608, "us-gov-east-1": 5.536, - "us-gov-west-1": 5.536, + "us-gov-west-1": 5.872, "us-west-1": 5.184, "us-west-2": 4.608, - "us-west-2-lax-1": 5.53 + "us-west-2-lax-1": 5.861 }, "r5d.24xlarge": { "af-south-1": 9.12, "ap-east-1": 8.4, - "ap-northeast-1": 0.0, + "ap-northeast-1": 8.352, "ap-northeast-2": 8.304, - "ap-northeast-3": 0.0, + "ap-northeast-3": 8.352, "ap-south-1": 7.248, - "ap-south-2": 7.248, + "ap-south-2": 0.0, "ap-southeast-1": 8.352, "ap-southeast-2": 8.352, - "ap-southeast-3": 0.0, + "ap-southeast-3": 8.352, "ap-southeast-4": 8.352, "ca-central-1": 7.584, "eu-central-1": 8.304, "eu-central-2": 9.134, - "eu-north-1": 0.0, + "eu-north-1": 7.296, "eu-south-1": 0.0, "eu-south-2": 7.68, "eu-west-1": 7.68, - "eu-west-2": 8.112, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 8.112, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 8.448, "sa-east-1": 10.944, "us-east-1": 6.912, "us-east-2": 6.912, - "us-gov-east-1": 0.0, + "us-gov-east-1": 8.304, "us-gov-west-1": 0.0, "us-west-1": 7.776, - "us-west-2": 6.912, + "us-west-2": 0.0, "us-west-2-lax-1": 8.294 }, "r5dn": { @@ -44999,7 +47179,7 @@ "us-west-2": 8.818 }, "r5dn.large": { - "af-south-1": 0.221, + "af-south-1": 0.23426, "ap-northeast-1": 0.216, "ap-northeast-2": 0.199, "ap-southeast-1": 0.0, @@ -45007,98 +47187,98 @@ "eu-central-1": 0.199, "eu-north-1": 0.177, "eu-south-1": 0.196, - "eu-west-1": 0.0, + "eu-west-1": 0.197, "eu-west-3": 0.0, "us-east-1": 0.167, - "us-east-2": 0.167, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.201, - "us-west-2": 0.177 + "us-east-2": 0.0, + "us-gov-east-1": 0.21306, + "us-gov-west-1": 0.213, + "us-west-2": 0.167 }, "r5dn.xlarge": { "af-south-1": 0.46852, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.42188, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.43248, - "eu-central-1": 0.422, + "eu-central-1": 0.398, "eu-north-1": 0.354, "eu-south-1": 0.41552, - "eu-west-1": 0.395, + "eu-west-1": 0.0, "eu-west-3": 0.0, "us-east-1": 0.354, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.42612, "us-gov-west-1": 0.426, - "us-west-2": 0.334 + "us-west-2": 0.354 }, "r5dn.metal": { "af-south-1": 10.608, "ap-northeast-1": 0.0, "ap-northeast-2": 9.552, "ap-southeast-1": 9.6, - "ap-southeast-2": 9.792, + "ap-southeast-2": 0.0, "eu-central-1": 9.552, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 8.928, "eu-west-3": 9.408, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 9.648, "us-west-2": 8.016 }, "r5dn.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.93704, "ap-northeast-1": 0.862, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.796, "ap-southeast-1": 0.8, - "ap-southeast-2": 0.86496, - "eu-central-1": 0.0, - "eu-north-1": 0.75048, - "eu-south-1": 0.83104, + "ap-southeast-2": 0.816, + "eu-central-1": 0.845, + "eu-north-1": 0.0, + "eu-south-1": 0.784, "eu-west-1": 0.79, "eu-west-3": 0.784, - "us-east-1": 0.668, + "us-east-1": 0.0, "us-east-2": 0.668, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.852, + "us-gov-east-1": 0.85224, + "us-gov-west-1": 0.804, "us-west-2": 0.668 }, "r5dn.4xlarge": { "af-south-1": 0.0, "ap-northeast-1": 1.725, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.72992, - "eu-central-1": 0.0, + "ap-southeast-1": 1.697, + "ap-southeast-2": 0.0, + "eu-central-1": 1.592, "eu-north-1": 1.50096, - "eu-south-1": 1.568, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-3": 1.568, - "us-east-1": 1.336, + "us-east-1": 1.416, "us-east-2": 1.416, - "us-gov-east-1": 1.70448, - "us-gov-west-1": 1.608, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r5dn.8xlarge": { - "af-south-1": 3.74816, - "ap-northeast-1": 0.0, + "af-south-1": 0.0, + "ap-northeast-1": 3.449, "ap-northeast-2": 0.0, "ap-southeast-1": 3.394, - "ap-southeast-2": 3.264, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-south-1": 3.32416, + "eu-west-1": 3.158, "eu-west-3": 0.0, "us-east-1": 2.833, - "us-east-2": 0.0, + "us-east-2": 2.833, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.409, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-2": 2.672 }, "r5dn.12xlarge": { "af-south-1": 5.304, @@ -45108,57 +47288,62 @@ "ap-southeast-2": 0.0, "eu-central-1": 5.069, "eu-north-1": 4.50288, - "eu-south-1": 0.0, + "eu-south-1": 4.98624, "eu-west-1": 4.464, - "eu-west-3": 0.0, - "us-east-1": 4.008, + "eu-west-3": 4.704, + "us-east-1": 0.0, "us-east-2": 4.008, - "us-gov-east-1": 4.824, - "us-gov-west-1": 5.113, - "us-west-2": 4.249 + "us-gov-east-1": 5.11344, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "r5dn.16xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 6.496, + "ap-northeast-1": 6.899, "ap-northeast-2": 0.0, "ap-southeast-1": 6.4, - "ap-southeast-2": 0.0, + "ap-southeast-2": 6.91968, "eu-central-1": 6.368, - "eu-north-1": 0.0, + "eu-north-1": 5.664, "eu-south-1": 6.64832, "eu-west-1": 0.0, "eu-west-3": 6.272, - "us-east-1": 5.665, + "us-east-1": 0.0, "us-east-2": 5.344, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 5.665 + "us-west-2": 5.344 }, "r5dn.24xlarge": { - "af-south-1": 10.608, + "af-south-1": 0.0, "ap-northeast-1": 9.744, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 9.792, - "eu-central-1": 9.552, + "eu-central-1": 0.0, "eu-north-1": 8.496, "eu-south-1": 9.408, "eu-west-1": 0.0, "eu-west-3": 9.408, "us-east-1": 8.016, - "us-east-2": 8.016, + "us-east-2": 0.0, "us-gov-east-1": 9.648, "us-gov-west-1": 9.648, "us-west-2": 8.016 }, "r5n": { "af-south-1": 10.49, + "ap-east-1": 10.666, "ap-northeast-1": 9.557, "ap-northeast-2": 9.398, + "ap-south-1": 8.078, "ap-southeast-1": 9.398, + "ap-southeast-2": 9.557, + "ca-central-1": 8.606, "eu-central-1": 9.398, "eu-south-1": 9.241, "eu-west-1": 8.818, + "eu-west-2": 9.24, "us-east-1": 7.867, "us-east-2": 7.867, "us-gov-east-1": 9.451, @@ -45166,183 +47351,183 @@ "us-west-2": 7.867 }, "r5n.large": { - "af-south-1": 0.211, - "ap-east-1": 0.202, - "ap-northeast-1": 0.192, - "ap-northeast-2": 0.178, + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.189, "ap-south-1": 0.153, - "ap-southeast-1": 0.178, - "ap-southeast-2": 0.181, + "ap-southeast-1": 0.189, + "ap-southeast-2": 0.192, "ca-central-1": 0.163, "eu-central-1": 0.178, - "eu-north-1": 0.159, - "eu-south-1": 0.0, + "eu-north-1": 0.169, + "eu-south-1": 0.175, "eu-west-1": 0.167, - "eu-west-2": 0.175, - "eu-west-3": 0.175, - "sa-east-1": 0.236, - "us-east-1": 0.0, - "us-east-2": 0.0, + "eu-west-2": 0.186, + "eu-west-3": 0.0, + "sa-east-1": 0.25, + "us-east-1": 0.149, + "us-east-2": 0.149, "us-gov-east-1": 0.179, - "us-gov-west-1": 0.19, + "us-gov-west-1": 0.0, "us-west-1": 0.169, - "us-west-2": 0.0 + "us-west-2": 0.158 }, "r5n.xlarge": { "af-south-1": 0.397, - "ap-east-1": 0.404, + "ap-east-1": 0.428, "ap-northeast-1": 0.384, "ap-northeast-2": 0.0, - "ap-south-1": 0.306, - "ap-southeast-1": 0.0, + "ap-south-1": 0.324, + "ap-southeast-1": 0.378, "ap-southeast-2": 0.362, "ca-central-1": 0.326, "eu-central-1": 0.0, - "eu-north-1": 0.318, + "eu-north-1": 0.337, "eu-south-1": 0.371, - "eu-west-1": 0.334, + "eu-west-1": 0.0, "eu-west-2": 0.35, - "eu-west-3": 0.35, + "eu-west-3": 0.371, "sa-east-1": 0.472, "us-east-1": 0.298, - "us-east-2": 0.0, + "us-east-2": 0.298, "us-gov-east-1": 0.379, - "us-gov-west-1": 0.0, - "us-west-1": 0.338, + "us-gov-west-1": 0.358, + "us-west-1": 0.0, "us-west-2": 0.316 }, "r5n.metal": { "af-south-1": 0.0, - "ap-east-1": 9.696, + "ap-east-1": 0.0, "ap-northeast-1": 8.688, - "ap-northeast-2": 0.0, + "ap-northeast-2": 8.544, "ap-south-1": 7.344, - "ap-southeast-1": 0.0, + "ap-southeast-1": 8.544, "ap-southeast-2": 8.688, "ca-central-1": 7.824, "eu-central-1": 0.0, "eu-north-1": 7.632, - "eu-south-1": 0.0, + "eu-south-1": 8.401, "eu-west-1": 8.016, - "eu-west-2": 8.4, + "eu-west-2": 0.0, "eu-west-3": 8.4, - "sa-east-1": 11.328, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 7.152, "us-east-2": 7.152, "us-gov-east-1": 8.592, "us-gov-west-1": 8.592, "us-west-1": 8.112, - "us-west-2": 7.152 + "us-west-2": 0.0 }, "r5n.2xlarge": { "af-south-1": 0.842, "ap-east-1": 0.808, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.768, "ap-northeast-2": 0.0, "ap-south-1": 0.612, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.724, - "ca-central-1": 0.652, + "ap-southeast-1": 0.712, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.755, - "eu-north-1": 0.636, - "eu-south-1": 0.742, + "eu-north-1": 0.674, + "eu-south-1": 0.0, "eu-west-1": 0.708, - "eu-west-2": 0.7, - "eu-west-3": 0.7, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "sa-east-1": 0.944, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.716, "us-gov-west-1": 0.759, - "us-west-1": 0.676, - "us-west-2": 0.632 + "us-west-1": 0.717, + "us-west-2": 0.0 }, "r5n.4xlarge": { "af-south-1": 1.685, - "ap-east-1": 1.616, - "ap-northeast-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 1.448, "ap-northeast-2": 1.424, - "ap-south-1": 1.224, + "ap-south-1": 1.297, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.448, - "ca-central-1": 1.304, + "ap-southeast-2": 0.0, + "ca-central-1": 1.382, "eu-central-1": 1.51, - "eu-north-1": 1.272, + "eu-north-1": 0.0, "eu-south-1": 1.484, "eu-west-1": 1.416, "eu-west-2": 1.4, "eu-west-3": 1.4, - "sa-east-1": 1.888, - "us-east-1": 1.192, + "sa-east-1": 0.0, + "us-east-1": 1.264, "us-east-2": 1.264, "us-gov-east-1": 1.518, - "us-gov-west-1": 0.0, - "us-west-1": 1.352, + "us-gov-west-1": 1.518, + "us-west-1": 1.433, "us-west-2": 1.192 }, "r5n.8xlarge": { - "af-south-1": 3.179, - "ap-east-1": 3.232, - "ap-northeast-1": 3.074, + "af-south-1": 0.0, + "ap-east-1": 3.426, + "ap-northeast-1": 2.896, "ap-northeast-2": 2.848, - "ap-south-1": 2.448, + "ap-south-1": 0.0, "ap-southeast-1": 3.021, - "ap-southeast-2": 2.896, - "ca-central-1": 2.608, - "eu-central-1": 0.0, - "eu-north-1": 2.544, + "ap-southeast-2": 3.07, + "ca-central-1": 2.765, + "eu-central-1": 3.021, + "eu-north-1": 2.696, "eu-south-1": 2.968, "eu-west-1": 2.672, - "eu-west-2": 2.8, - "eu-west-3": 2.8, - "sa-east-1": 3.776, - "us-east-1": 2.384, + "eu-west-2": 0.0, + "eu-west-3": 2.969, + "sa-east-1": 4.003, + "us-east-1": 0.0, "us-east-2": 2.527, "us-gov-east-1": 3.036, "us-gov-west-1": 3.036, - "us-west-1": 2.704, + "us-west-1": 2.867, "us-west-2": 0.0 }, "r5n.12xlarge": { "af-south-1": 5.054, - "ap-east-1": 4.848, - "ap-northeast-1": 4.61, + "ap-east-1": 5.138, + "ap-northeast-1": 4.344, "ap-northeast-2": 4.528, - "ap-south-1": 3.672, + "ap-south-1": 3.892, "ap-southeast-1": 4.272, "ap-southeast-2": 4.344, "ca-central-1": 3.912, "eu-central-1": 4.531, - "eu-north-1": 3.816, - "eu-south-1": 4.453, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 4.248, - "eu-west-2": 4.2, - "eu-west-3": 4.2, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "sa-east-1": 5.664, - "us-east-1": 0.0, + "us-east-1": 3.791, "us-east-2": 3.576, "us-gov-east-1": 4.554, - "us-gov-west-1": 0.0, - "us-west-1": 4.056, + "us-gov-west-1": 4.554, + "us-west-1": 4.3, "us-west-2": 3.791 }, "r5n.16xlarge": { - "af-south-1": 0.0, - "ap-east-1": 6.464, - "ap-northeast-1": 0.0, + "af-south-1": 6.357, + "ap-east-1": 0.0, + "ap-northeast-1": 5.792, "ap-northeast-2": 0.0, "ap-south-1": 4.896, - "ap-southeast-1": 5.696, - "ap-southeast-2": 5.792, - "ca-central-1": 5.216, - "eu-central-1": 6.041, - "eu-north-1": 5.088, - "eu-south-1": 0.0, + "ap-southeast-1": 6.041, + "ap-southeast-2": 0.0, + "ca-central-1": 5.53, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 5.937, "eu-west-1": 5.344, - "eu-west-2": 5.6, + "eu-west-2": 0.0, "eu-west-3": 5.6, - "sa-east-1": 7.552, - "us-east-1": 4.768, + "sa-east-1": 8.005, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 6.072, "us-gov-west-1": 0.0, @@ -45354,16 +47539,16 @@ "ap-east-1": 9.696, "ap-northeast-1": 0.0, "ap-northeast-2": 8.544, - "ap-south-1": 7.344, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 8.688, - "ca-central-1": 7.824, + "ca-central-1": 0.0, "eu-central-1": 8.544, - "eu-north-1": 7.632, - "eu-south-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 8.401, "eu-west-1": 0.0, "eu-west-2": 8.4, - "eu-west-3": 8.4, + "eu-west-3": 0.0, "sa-east-1": 11.328, "us-east-1": 0.0, "us-east-2": 7.152, @@ -45373,99 +47558,147 @@ "us-west-2": 7.152 }, "r6a": { + "ap-northeast-1": 14.446, "ap-south-1": 7.55, + "ap-southeast-1": 14.446, + "ap-southeast-2": 14.351, "eu-central-1": 14.446, "eu-west-1": 13.401, "us-east-1": 11.975, "us-east-2": 11.975, + "us-west-1": 13.306, "us-west-2": 11.975 }, "r6a.large": { - "ap-south-1": 0.07865, + "ap-northeast-1": 0.15048, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1368, + "ap-southeast-2": 0.1359, "eu-central-1": 0.0, "eu-west-1": 0.1269, - "us-east-1": 0.0, - "us-east-2": 0.12474, - "us-west-2": 0.12474 + "us-east-1": 0.12474, + "us-east-2": 0.1134, + "us-west-1": 0.1386, + "us-west-2": 0.1134 }, "r6a.xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.29898, "eu-central-1": 0.2736, "eu-west-1": 0.2538, "us-east-1": 0.24948, - "us-east-2": 0.2268, + "us-east-2": 0.24948, + "us-west-1": 0.2772, "us-west-2": 0.0 }, "r6a.metal": { + "ap-northeast-1": 0.0, "ap-south-1": 6.864, - "eu-central-1": 13.1328, + "ap-southeast-1": 13.1328, + "ap-southeast-2": 13.0464, + "eu-central-1": 0.0, "eu-west-1": 12.1824, "us-east-1": 10.8864, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 10.8864 }, "r6a.2xlarge": { - "ap-south-1": 0.0, - "eu-central-1": 0.5472, - "eu-west-1": 0.5076, + "ap-northeast-1": 0.0, + "ap-south-1": 0.3146, + "ap-southeast-1": 0.5472, + "ap-southeast-2": 0.0, + "eu-central-1": 0.60192, + "eu-west-1": 0.55836, "us-east-1": 0.49896, - "us-east-2": 0.0, + "us-east-2": 0.4536, + "us-west-1": 0.5544, "us-west-2": 0.4536 }, "r6a.4xlarge": { + "ap-northeast-1": 1.0944, "ap-south-1": 0.572, + "ap-southeast-1": 1.0944, + "ap-southeast-2": 1.19592, "eu-central-1": 0.0, "eu-west-1": 1.11672, - "us-east-1": 0.9072, + "us-east-1": 0.99792, "us-east-2": 0.99792, - "us-west-2": 0.9072 + "us-west-1": 1.1088, + "us-west-2": 0.0 }, "r6a.8xlarge": { - "ap-south-1": 1.144, + "ap-northeast-1": 2.40768, + "ap-south-1": 1.2584, + "ap-southeast-1": 2.1888, + "ap-southeast-2": 2.39184, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 2.2176, "us-west-2": 1.99584 }, "r6a.12xlarge": { + "ap-northeast-1": 3.61152, "ap-south-1": 0.0, + "ap-southeast-1": 3.61152, + "ap-southeast-2": 3.58776, "eu-central-1": 0.0, - "eu-west-1": 3.35016, - "us-east-1": 2.7216, + "eu-west-1": 0.0, + "us-east-1": 2.99376, "us-east-2": 2.99376, + "us-west-1": 3.3264, "us-west-2": 2.99376 }, "r6a.16xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 2.5168, + "ap-southeast-1": 4.81536, + "ap-southeast-2": 4.78368, "eu-central-1": 4.81536, "eu-west-1": 4.0608, "us-east-1": 3.6288, "us-east-2": 3.99168, + "us-west-1": 4.032, "us-west-2": 3.6288 }, "r6a.24xlarge": { - "ap-south-1": 3.7752, + "ap-northeast-1": 6.5664, + "ap-south-1": 0.0, + "ap-southeast-1": 7.22304, + "ap-southeast-2": 7.17552, "eu-central-1": 6.5664, "eu-west-1": 6.70032, - "us-east-1": 5.4432, + "us-east-1": 0.0, "us-east-2": 5.98752, + "us-west-1": 6.048, "us-west-2": 0.0 }, "r6a.32xlarge": { + "ap-northeast-1": 9.63072, "ap-south-1": 5.0336, + "ap-southeast-1": 9.63072, + "ap-southeast-2": 8.6976, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-west-1": 8.93376, + "us-east-1": 7.2576, "us-east-2": 7.2576, + "us-west-1": 8.064, "us-west-2": 7.2576 }, "r6a.48xlarge": { + "ap-northeast-1": 13.1328, "ap-south-1": 6.864, + "ap-southeast-1": 13.1328, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 12.1824, "us-east-1": 10.8864, "us-east-2": 0.0, + "us-west-1": 12.096, "us-west-2": 10.8864 }, "r6g": { @@ -45481,6 +47714,7 @@ "ap-southeast-3": 4.28, "ap-southeast-4": 4.252, "ca-central-1": 3.886, + "ca-west-1": 3.886, "eu-central-1": 4.28, "eu-central-2": 4.708, "eu-north-1": 3.766, @@ -45501,8 +47735,8 @@ "us-west-2": 3.548 }, "r6g.medium": { - "af-south-1": 0.0712, - "ap-east-1": 0.067, + "af-south-1": 0.0, + "ap-east-1": 0.071, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, @@ -45512,39 +47746,41 @@ "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0604, - "ca-central-1": 0.0, + "ca-central-1": 0.0585, + "ca-west-1": 0.0, "eu-central-1": 0.0644, "eu-central-2": 0.0709, "eu-north-1": 0.0535, - "eu-south-1": 0.0592, - "eu-south-2": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0598, "eu-west-1": 0.0564, "eu-west-2": 0.0592, - "eu-west-3": 0.059, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 0.0658, - "me-south-1": 0.0658, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0504, - "us-gov-east-1": 0.0604, + "me-central-1": 0.0, + "me-south-1": 0.062, + "sa-east-1": 0.0804, + "us-east-1": 0.0534, + "us-east-2": 0.0534, + "us-gov-east-1": 0.064, "us-gov-west-1": 0.064, "us-west-1": 0.0, "us-west-2": 0.0504 }, "r6g.large": { - "af-south-1": 0.1344, + "af-south-1": 0.0, "ap-east-1": 0.142, "ap-northeast-1": 0.1289, "ap-northeast-2": 0.122, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1289, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.065, "ap-southeast-1": 0.1216, "ap-southeast-2": 0.1208, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.1104, + "ca-west-1": 0.117, "eu-central-1": 0.1289, "eu-central-2": 0.1418, "eu-north-1": 0.107, @@ -45552,12 +47788,12 @@ "eu-south-2": 0.0, "eu-west-1": 0.1196, "eu-west-2": 0.1184, - "eu-west-3": 0.0, - "il-central-1": 0.1184, + "eu-west-3": 0.1251, + "il-central-1": 0.1255, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.1608, - "us-east-1": 0.1068, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.1208, @@ -45565,60 +47801,62 @@ "us-west-2": 0.0 }, "r6g.xlarge": { - "af-south-1": 0.2849, + "af-south-1": 0.2688, "ap-east-1": 0.284, "ap-northeast-1": 0.2432, "ap-northeast-2": 0.244, - "ap-northeast-3": 0.2578, + "ap-northeast-3": 0.0, "ap-south-1": 0.13, - "ap-south-2": 0.0, + "ap-south-2": 0.1378, "ap-southeast-1": 0.2578, - "ap-southeast-2": 0.2561, + "ap-southeast-2": 0.2416, "ap-southeast-3": 0.2432, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.2416, "ca-central-1": 0.2208, - "eu-central-1": 0.2578, + "ca-west-1": 0.2208, + "eu-central-1": 0.2432, "eu-central-2": 0.0, "eu-north-1": 0.2268, "eu-south-1": 0.251, - "eu-south-2": 0.2391, - "eu-west-1": 0.2256, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.251, "eu-west-3": 0.236, "il-central-1": 0.2511, - "me-central-1": 0.263, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.3409, "us-east-1": 0.2016, - "us-east-2": 0.0, - "us-gov-east-1": 0.2561, + "us-east-2": 0.2137, + "us-gov-east-1": 0.2416, "us-gov-west-1": 0.2561, - "us-west-1": 0.2374, + "us-west-1": 0.224, "us-west-2": 0.2016 }, "r6g.metal": { "af-south-1": 4.3008, - "ap-east-1": 4.288, + "ap-east-1": 4.544, "ap-northeast-1": 4.1247, - "ap-northeast-2": 3.904, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 2.08, "ap-south-2": 2.08, - "ap-southeast-1": 4.1247, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.8656, "ap-southeast-3": 3.8912, - "ap-southeast-4": 0.0, + "ap-southeast-4": 3.8656, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 3.5328, + "eu-central-1": 3.8912, "eu-central-2": 4.2803, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 3.6096, "eu-west-1": 3.8262, "eu-west-2": 3.7888, - "eu-west-3": 4.0032, - "il-central-1": 3.7901, - "me-central-1": 0.0, + "eu-west-3": 3.776, + "il-central-1": 0.0, + "me-central-1": 3.9706, "me-south-1": 3.9706, "sa-east-1": 0.0, "us-east-1": 0.0, @@ -45630,64 +47868,66 @@ }, "r6g.2xlarge": { "af-south-1": 0.5699, - "ap-east-1": 0.568, + "ap-east-1": 0.0, "ap-northeast-1": 0.4864, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.26, + "ap-northeast-3": 0.4864, + "ap-south-1": 0.2756, "ap-south-2": 0.26, - "ap-southeast-1": 0.5156, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.4832, "ca-central-1": 0.4681, + "ca-west-1": 0.4681, "eu-central-1": 0.0, "eu-central-2": 0.535, "eu-north-1": 0.428, "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.4512, + "eu-south-2": 0.4512, + "eu-west-1": 0.4783, "eu-west-2": 0.502, "eu-west-3": 0.0, "il-central-1": 0.4738, - "me-central-1": 0.5261, + "me-central-1": 0.4963, "me-south-1": 0.4963, - "sa-east-1": 0.6818, - "us-east-1": 0.4032, - "us-east-2": 0.4032, + "sa-east-1": 0.6432, + "us-east-1": 0.4274, + "us-east-2": 0.0, "us-gov-east-1": 0.5122, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.4832, "us-west-1": 0.448, - "us-west-2": 0.4274 + "us-west-2": 0.4032 }, "r6g.4xlarge": { - "af-south-1": 1.1397, + "af-south-1": 1.0752, "ap-east-1": 1.136, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.0344, - "ap-northeast-3": 1.0312, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.9728, "ap-south-1": 0.0, "ap-south-2": 0.52, - "ap-southeast-1": 1.0312, + "ap-southeast-1": 0.9728, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 1.0244, - "ca-central-1": 0.0, + "ap-southeast-3": 1.0312, + "ap-southeast-4": 0.9664, + "ca-central-1": 0.8832, + "ca-west-1": 0.9362, "eu-central-1": 0.0, "eu-central-2": 1.0701, "eu-north-1": 0.9072, "eu-south-1": 0.9472, "eu-south-2": 0.0, "eu-west-1": 0.9024, - "eu-west-2": 0.0, + "eu-west-2": 1.004, "eu-west-3": 0.0, "il-central-1": 1.0044, "me-central-1": 0.9926, "me-south-1": 0.9926, - "sa-east-1": 0.0, - "us-east-1": 0.8064, + "sa-east-1": 1.3636, + "us-east-1": 0.0, "us-east-2": 0.8064, - "us-gov-east-1": 1.0244, + "us-gov-east-1": 0.9664, "us-gov-west-1": 0.9664, "us-west-1": 0.896, "us-west-2": 0.8064 @@ -45697,69 +47937,71 @@ "ap-east-1": 2.144, "ap-northeast-1": 1.9456, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.9456, + "ap-northeast-3": 0.0, "ap-south-1": 1.1024, - "ap-south-2": 1.1024, + "ap-south-2": 0.0, "ap-southeast-1": 1.9456, - "ap-southeast-2": 2.0488, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.0623, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 1.8724, + "ca-west-1": 1.8724, "eu-central-1": 2.0623, "eu-central-2": 2.1402, "eu-north-1": 0.0, "eu-south-1": 1.8944, - "eu-south-2": 0.0, - "eu-west-1": 1.8048, + "eu-south-2": 1.9131, + "eu-west-1": 0.0, "eu-west-2": 2.0081, - "eu-west-3": 2.0016, + "eu-west-3": 1.888, "il-central-1": 2.0087, "me-central-1": 0.0, - "me-south-1": 1.9853, + "me-south-1": 0.0, "sa-east-1": 2.7272, "us-east-1": 1.7096, "us-east-2": 1.7096, "us-gov-east-1": 2.0488, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.7096 + "us-west-2": 0.0 }, "r6g.12xlarge": { "af-south-1": 3.2256, - "ap-east-1": 0.0, + "ap-east-1": 3.216, "ap-northeast-1": 3.0935, - "ap-northeast-2": 2.928, + "ap-northeast-2": 3.1032, "ap-northeast-3": 3.0935, "ap-south-1": 1.56, - "ap-south-2": 0.0, - "ap-southeast-1": 3.0935, - "ap-southeast-2": 3.0732, - "ap-southeast-3": 3.0935, - "ap-southeast-4": 2.8992, + "ap-south-2": 1.56, + "ap-southeast-1": 2.9184, + "ap-southeast-2": 2.8992, + "ap-southeast-3": 0.0, + "ap-southeast-4": 3.0732, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 3.0935, "eu-central-2": 3.4029, "eu-north-1": 2.7216, "eu-south-1": 2.8416, - "eu-south-2": 2.8696, + "eu-south-2": 2.7072, "eu-west-1": 2.7072, "eu-west-2": 2.8416, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 2.9779, - "me-south-1": 2.9779, - "sa-east-1": 3.8592, + "eu-west-3": 3.0024, + "il-central-1": 3.0131, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.4192, "us-gov-east-1": 3.0732, "us-gov-west-1": 0.0, - "us-west-1": 2.688, + "us-west-1": 2.8493, "us-west-2": 2.5644 }, "r6g.16xlarge": { "af-south-1": 4.3008, "ap-east-1": 0.0, - "ap-northeast-1": 4.1247, + "ap-northeast-1": 3.8912, "ap-northeast-2": 3.904, "ap-northeast-3": 3.8912, "ap-south-1": 2.08, @@ -45769,23 +48011,24 @@ "ap-southeast-3": 3.8912, "ap-southeast-4": 3.8656, "ca-central-1": 3.7448, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 4.2803, - "eu-north-1": 0.0, + "eu-north-1": 3.424, "eu-south-1": 4.0164, "eu-south-2": 3.6096, "eu-west-1": 3.6096, - "eu-west-2": 4.0161, + "eu-west-2": 3.7888, "eu-west-3": 3.776, - "il-central-1": 3.7901, - "me-central-1": 3.9706, + "il-central-1": 0.0, + "me-central-1": 0.0, "me-south-1": 3.9706, - "sa-east-1": 0.0, + "sa-east-1": 5.4543, "us-east-1": 3.2256, - "us-east-2": 0.0, + "us-east-2": 3.2256, "us-gov-east-1": 4.0975, "us-gov-west-1": 4.0975, - "us-west-1": 3.584, + "us-west-1": 3.799, "us-west-2": 3.2256 }, "r6gd": { @@ -45798,6 +48041,7 @@ "ap-southeast-3": 4.893, "ca-central-1": 4.449, "eu-central-1": 4.858, + "eu-central-2": 5.343, "eu-north-1": 4.28, "eu-west-1": 4.506, "eu-west-2": 4.759, @@ -45805,6 +48049,8 @@ "sa-east-1": 6.42, "us-east-1": 4.055, "us-east-2": 4.055, + "us-gov-east-1": 4.872, + "us-gov-west-1": 4.872, "us-west-1": 4.576, "us-west-2": 4.055 }, @@ -45813,40 +48059,46 @@ "ap-northeast-2": 0.0733, "ap-northeast-3": 0.0738, "ap-south-1": 0.0396, - "ap-southeast-1": 0.0737, + "ap-southeast-1": 0.0695, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0759, "eu-north-1": 0.0608, "eu-west-1": 0.064, - "eu-west-2": 0.0, + "eu-west-2": 0.0717, "eu-west-3": 0.0676, "sa-east-1": 0.0, "us-east-1": 0.0611, - "us-east-2": 0.0, - "us-west-1": 0.065, + "us-east-2": 0.0611, + "us-gov-east-1": 0.0734, + "us-gov-west-1": 0.0692, + "us-west-1": 0.0, "us-west-2": 0.0576 }, "r6gd.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.1467, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.1384, + "ap-northeast-3": 0.1476, "ap-south-1": 0.0, "ap-southeast-1": 0.139, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.139, "ca-central-1": 0.134, "eu-central-1": 0.138, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 0.1352, "eu-west-3": 0.1433, "sa-east-1": 0.0, "us-east-1": 0.1152, "us-east-2": 0.1221, + "us-gov-east-1": 0.1467, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.1152 }, "r6gd.xlarge": { "ap-northeast-1": 0.0, @@ -45856,68 +48108,78 @@ "ap-southeast-1": 0.2948, "ap-southeast-2": 0.2948, "ap-southeast-3": 0.0, - "ca-central-1": 0.2528, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.2714, "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 0.3867, "us-east-1": 0.2304, - "us-east-2": 0.2442, + "us-east-2": 0.0, + "us-gov-east-1": 0.2768, + "us-gov-west-1": 0.0, "us-west-1": 0.2756, - "us-west-2": 0.0 + "us-west-2": 0.2304 }, "r6gd.metal": { - "ap-northeast-1": 4.448, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.4288, - "ap-northeast-3": 4.4544, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 2.3917, "ap-southeast-1": 4.448, - "ap-southeast-2": 4.7168, - "ap-southeast-3": 4.448, - "ca-central-1": 4.0448, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 4.8576, "eu-north-1": 3.8912, - "eu-west-1": 0.0, + "eu-west-1": 4.096, "eu-west-2": 4.3264, - "eu-west-3": 4.3264, + "eu-west-3": 0.0, "sa-east-1": 5.8368, "us-east-1": 0.0, - "us-east-2": 3.6864, + "us-east-2": 3.9076, + "us-gov-east-1": 4.4288, + "us-gov-west-1": 4.4288, "us-west-1": 0.0, "us-west-2": 0.0 }, "r6gd.2xlarge": { "ap-northeast-1": 0.556, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.5536, "ap-northeast-3": 0.0, "ap-south-1": 0.299, "ap-southeast-1": 0.556, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.5896, - "ca-central-1": 0.0, - "eu-central-1": 0.5852, + "ap-southeast-2": 0.5896, + "ap-southeast-3": 0.0, + "ca-central-1": 0.5359, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.4864, "eu-west-1": 0.5427, "eu-west-2": 0.5408, "eu-west-3": 0.5408, "sa-east-1": 0.7734, - "us-east-1": 0.0, + "us-east-1": 0.4608, "us-east-2": 0.0, - "us-west-1": 0.5512, - "us-west-2": 0.4884 + "us-gov-east-1": 0.5868, + "us-gov-west-1": 0.5536, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r6gd.4xlarge": { - "ap-northeast-1": 1.1792, + "ap-northeast-1": 1.112, "ap-northeast-2": 1.1735, "ap-northeast-3": 1.1804, - "ap-south-1": 0.5979, - "ap-southeast-1": 1.112, + "ap-south-1": 0.6338, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.1792, "ap-southeast-3": 1.1792, "ca-central-1": 0.0, "eu-central-1": 1.1704, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 1.1465, @@ -45925,66 +48187,77 @@ "sa-east-1": 1.4592, "us-east-1": 0.9769, "us-east-2": 0.9769, + "us-gov-east-1": 1.1736, + "us-gov-west-1": 0.0, "us-west-1": 1.1024, "us-west-2": 0.9769 }, "r6gd.8xlarge": { - "ap-northeast-1": 2.224, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.2144, "ap-northeast-3": 2.2272, "ap-south-1": 0.0, - "ap-southeast-1": 2.3584, - "ap-southeast-2": 2.3584, - "ap-southeast-3": 2.224, + "ap-southeast-1": 2.224, + "ap-southeast-2": 2.224, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-north-1": 2.0623, + "eu-central-1": 2.3408, + "eu-central-2": 0.0, + "eu-north-1": 1.9456, "eu-west-1": 2.1709, "eu-west-2": 2.1632, - "eu-west-3": 0.0, - "sa-east-1": 0.0, + "eu-west-3": 2.1632, + "sa-east-1": 2.9184, "us-east-1": 0.0, "us-east-2": 1.9538, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.2144, "us-west-1": 0.0, "us-west-2": 1.9538 }, "r6gd.12xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 3.5205, - "ap-northeast-3": 3.5412, - "ap-south-1": 1.9014, + "ap-northeast-3": 3.3408, + "ap-south-1": 0.0, "ap-southeast-1": 3.336, - "ap-southeast-2": 3.336, - "ap-southeast-3": 3.5376, + "ap-southeast-2": 0.0, + "ap-southeast-3": 3.336, "ca-central-1": 3.0336, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 3.072, - "eu-west-2": 3.4395, + "eu-west-2": 3.2448, "eu-west-3": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "sa-east-1": 4.3776, + "us-east-1": 2.9307, "us-east-2": 2.7648, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 3.12, - "us-west-2": 2.7648 + "us-west-2": 0.0 }, "r6gd.16xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 4.448, + "ap-northeast-2": 4.4288, "ap-northeast-3": 4.4544, - "ap-south-1": 0.0, + "ap-south-1": 2.3917, "ap-southeast-1": 4.7168, "ap-southeast-2": 4.448, "ap-southeast-3": 4.448, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 4.0448, + "eu-central-1": 4.416, + "eu-central-2": 4.8576, "eu-north-1": 0.0, - "eu-west-1": 4.096, - "eu-west-2": 4.3264, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 4.3264, "sa-east-1": 5.8368, "us-east-1": 0.0, "us-east-2": 3.9076, + "us-gov-east-1": 4.4288, + "us-gov-west-1": 4.4288, "us-west-1": 4.4096, "us-west-2": 3.6864 }, @@ -45999,7 +48272,9 @@ "ap-southeast-1": 10.701, "ap-southeast-2": 10.63, "ca-central-1": 9.715, + "ca-west-1": 9.715, "eu-central-1": 10.701, + "eu-central-2": 11.771, "eu-north-1": 9.434, "eu-south-1": 10.419, "eu-west-1": 9.926, @@ -46019,56 +48294,60 @@ "r6i.large": { "af-south-1": 0.1848, "ap-east-1": 0.167, - "ap-northeast-1": 0.1672, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.152, - "ap-northeast-3": 0.1672, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.13, "ap-south-2": 0.143, "ap-southeast-1": 0.1672, "ap-southeast-2": 0.1661, - "ca-central-1": 0.138, + "ca-central-1": 0.1518, + "ca-west-1": 0.1518, "eu-central-1": 0.0, - "eu-north-1": 0.1474, - "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-central-2": 0.1672, + "eu-north-1": 0.134, + "eu-south-1": 0.1628, + "eu-west-1": 0.141, "eu-west-2": 0.1628, - "eu-west-3": 0.148, - "il-central-1": 0.14805, + "eu-west-3": 0.0, + "il-central-1": 0.16286, "me-central-1": 0.17061, - "me-south-1": 0.1551, - "sa-east-1": 0.2211, - "us-east-1": 0.1386, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.1386, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.154, + "us-gov-east-1": 0.1661, + "us-gov-west-1": 0.1661, + "us-west-1": 0.0, "us-west-2": 0.1386 }, "r6i.xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.3696, "ap-east-1": 0.334, "ap-northeast-1": 0.0, "ap-northeast-2": 0.3344, "ap-northeast-3": 0.304, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.286, "ap-southeast-1": 0.3344, - "ap-southeast-2": 0.302, - "ca-central-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.3036, + "ca-west-1": 0.3036, "eu-central-1": 0.0, + "eu-central-2": 0.3344, "eu-north-1": 0.268, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.3102, "eu-west-2": 0.296, - "eu-west-3": 0.0, - "il-central-1": 0.32571, - "me-central-1": 0.0, - "me-south-1": 0.34122, + "eu-west-3": 0.3256, + "il-central-1": 0.2961, + "me-central-1": 0.3102, + "me-south-1": 0.3102, "sa-east-1": 0.402, - "us-east-1": 0.2772, + "us-east-1": 0.252, "us-east-2": 0.0, "us-gov-east-1": 0.302, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.3322, "us-west-1": 0.28, "us-west-2": 0.252 }, @@ -46079,52 +48358,56 @@ "ap-northeast-2": 9.728, "ap-northeast-3": 9.728, "ap-south-1": 0.0, - "ap-south-2": 8.32, - "ap-southeast-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 9.728, "ap-southeast-2": 9.664, "ca-central-1": 0.0, + "ca-west-1": 8.832, "eu-central-1": 9.728, + "eu-central-2": 10.7008, "eu-north-1": 8.576, - "eu-south-1": 9.472, + "eu-south-1": 0.0, "eu-west-1": 9.024, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 9.4752, "me-central-1": 9.9264, - "me-south-1": 0.0, + "me-south-1": 9.9264, "sa-east-1": 0.0, - "us-east-1": 8.064, + "us-east-1": 0.0, "us-east-2": 8.064, "us-gov-east-1": 9.664, "us-gov-west-1": 9.664, "us-west-1": 0.0, - "us-west-2": 8.064 + "us-west-2": 0.0 }, "r6i.2xlarge": { "af-south-1": 0.672, "ap-east-1": 0.7348, "ap-northeast-1": 0.6688, "ap-northeast-2": 0.608, - "ap-northeast-3": 0.608, - "ap-south-1": 0.0, + "ap-northeast-3": 0.6688, + "ap-south-1": 0.572, "ap-south-2": 0.52, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.604, - "ca-central-1": 0.6072, + "ap-southeast-2": 0.6644, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.5896, "eu-south-1": 0.0, "eu-west-1": 0.6204, - "eu-west-2": 0.0, + "eu-west-2": 0.592, "eu-west-3": 0.592, "il-central-1": 0.0, - "me-central-1": 0.6204, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.804, + "sa-east-1": 0.8844, "us-east-1": 0.504, "us-east-2": 0.504, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.6644, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.5544 }, @@ -46132,27 +48415,29 @@ "af-south-1": 1.344, "ap-east-1": 1.4696, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.3376, - "ap-northeast-3": 1.216, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.3376, "ap-south-1": 0.0, "ap-south-2": 1.144, "ap-southeast-1": 1.216, - "ap-southeast-2": 1.208, + "ap-southeast-2": 1.3288, "ca-central-1": 0.0, - "eu-central-1": 1.3376, + "ca-west-1": 1.104, + "eu-central-1": 1.216, + "eu-central-2": 1.3376, "eu-north-1": 0.0, - "eu-south-1": 1.184, - "eu-west-1": 0.0, + "eu-south-1": 1.3024, + "eu-west-1": 1.2408, "eu-west-2": 1.3024, "eu-west-3": 1.3024, - "il-central-1": 1.30284, - "me-central-1": 0.0, + "il-central-1": 1.1844, + "me-central-1": 1.2408, "me-south-1": 1.36488, "sa-east-1": 1.7688, "us-east-1": 1.1088, "us-east-2": 0.0, - "us-gov-east-1": 1.208, - "us-gov-west-1": 1.3288, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.208, "us-west-1": 0.0, "us-west-2": 0.0 }, @@ -46166,126 +48451,136 @@ "ap-south-2": 2.288, "ap-southeast-1": 2.6752, "ap-southeast-2": 0.0, - "ca-central-1": 2.208, + "ca-central-1": 0.0, + "ca-west-1": 2.4288, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 2.368, "eu-west-1": 2.4816, - "eu-west-2": 2.6048, - "eu-west-3": 2.6048, - "il-central-1": 2.60568, - "me-central-1": 2.4816, - "me-south-1": 0.0, - "sa-east-1": 3.216, + "eu-west-2": 0.0, + "eu-west-3": 2.368, + "il-central-1": 2.3688, + "me-central-1": 2.72976, + "me-south-1": 2.72976, + "sa-east-1": 3.5376, "us-east-1": 0.0, - "us-east-2": 2.2176, + "us-east-2": 2.016, "us-gov-east-1": 2.6576, - "us-gov-west-1": 2.6576, + "us-gov-west-1": 2.416, "us-west-1": 2.464, - "us-west-2": 2.2176 + "us-west-2": 2.016 }, "r6i.12xlarge": { - "af-south-1": 4.032, + "af-south-1": 4.4352, "ap-east-1": 0.0, "ap-northeast-1": 4.0128, - "ap-northeast-2": 0.0, - "ap-northeast-3": 4.0128, - "ap-south-1": 3.12, - "ap-south-2": 3.432, + "ap-northeast-2": 4.0128, + "ap-northeast-3": 3.648, + "ap-south-1": 0.0, + "ap-south-2": 3.12, "ap-southeast-1": 4.0128, "ap-southeast-2": 3.9864, - "ca-central-1": 3.312, - "eu-central-1": 4.0128, - "eu-north-1": 3.5376, - "eu-south-1": 3.9072, + "ca-central-1": 3.6432, + "ca-west-1": 3.312, + "eu-central-1": 3.648, + "eu-central-2": 4.41408, + "eu-north-1": 3.216, + "eu-south-1": 3.552, "eu-west-1": 3.384, - "eu-west-2": 3.552, + "eu-west-2": 0.0, "eu-west-3": 3.9072, "il-central-1": 0.0, - "me-central-1": 4.09464, + "me-central-1": 3.7224, "me-south-1": 0.0, "sa-east-1": 4.824, - "us-east-1": 0.0, - "us-east-2": 3.024, - "us-gov-east-1": 3.9864, + "us-east-1": 3.024, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 3.696, "us-west-2": 3.024 }, "r6i.16xlarge": { - "af-south-1": 0.0, - "ap-east-1": 5.344, + "af-south-1": 5.9136, + "ap-east-1": 5.8784, "ap-northeast-1": 0.0, - "ap-northeast-2": 4.864, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.864, "ap-south-1": 0.0, - "ap-south-2": 4.576, + "ap-south-2": 4.16, "ap-southeast-1": 0.0, "ap-southeast-2": 4.832, - "ca-central-1": 4.8576, + "ca-central-1": 4.416, + "ca-west-1": 0.0, "eu-central-1": 4.864, - "eu-north-1": 0.0, - "eu-south-1": 4.736, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 5.2096, - "il-central-1": 4.7376, + "eu-central-2": 0.0, + "eu-north-1": 4.288, + "eu-south-1": 5.2096, + "eu-west-1": 4.9632, + "eu-west-2": 5.2096, + "eu-west-3": 4.736, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 4.9632, + "me-south-1": 5.45952, "sa-east-1": 6.432, - "us-east-1": 4.4352, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-1": 4.032, + "us-east-2": 4.4352, + "us-gov-east-1": 5.3152, "us-gov-west-1": 4.832, - "us-west-1": 4.48, + "us-west-1": 0.0, "us-west-2": 4.4352 }, "r6i.24xlarge": { - "af-south-1": 8.064, - "ap-east-1": 0.0, + "af-south-1": 8.8704, + "ap-east-1": 8.8176, "ap-northeast-1": 8.0256, "ap-northeast-2": 7.296, - "ap-northeast-3": 0.0, + "ap-northeast-3": 8.0256, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 7.296, - "ap-southeast-2": 7.9728, - "ca-central-1": 7.2864, + "ap-southeast-1": 8.0256, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 6.432, + "eu-central-2": 0.0, + "eu-north-1": 7.0752, "eu-south-1": 7.104, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 7.8144, "eu-west-3": 7.104, - "il-central-1": 0.0, + "il-central-1": 7.1064, "me-central-1": 8.18928, "me-south-1": 8.18928, - "sa-east-1": 9.648, + "sa-east-1": 10.6128, "us-east-1": 6.6528, - "us-east-2": 6.048, - "us-gov-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 7.248, "us-gov-west-1": 7.248, - "us-west-1": 0.0, - "us-west-2": 6.048 + "us-west-1": 7.392, + "us-west-2": 0.0 }, "r6i.32xlarge": { "af-south-1": 0.0, "ap-east-1": 10.688, "ap-northeast-1": 9.728, "ap-northeast-2": 9.728, - "ap-northeast-3": 9.728, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 8.32, "ap-southeast-1": 9.728, "ap-southeast-2": 9.664, "ca-central-1": 8.832, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-central-2": 10.7008, + "eu-north-1": 8.576, + "eu-south-1": 9.472, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 9.4752, + "eu-west-2": 9.472, + "eu-west-3": 9.472, + "il-central-1": 0.0, "me-central-1": 9.9264, "me-south-1": 9.9264, "sa-east-1": 12.864, @@ -46293,8 +48588,8 @@ "us-east-2": 8.064, "us-gov-east-1": 9.664, "us-gov-west-1": 9.664, - "us-west-1": 8.96, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 8.064 }, "r6id": { "ap-northeast-1": 12.862, @@ -46302,6 +48597,7 @@ "ap-south-1": 11.165, "ap-southeast-1": 12.862, "ap-southeast-2": 12.25, + "ca-west-1": 11.679, "eu-central-1": 12.788, "eu-west-1": 11.827, "eu-west-2": 12.492, @@ -46317,9 +48613,10 @@ "ap-south-1": 0.1586, "ap-southeast-1": 0.20097, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.168, - "eu-west-2": 0.17745, + "eu-west-1": 0.1848, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 0.16632, "us-east-2": 0.0, @@ -46332,13 +48629,14 @@ "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.348, + "ca-west-1": 0.3318, "eu-central-1": 0.3633, "eu-west-1": 0.0, - "eu-west-2": 0.39039, - "il-central-1": 0.3528, + "eu-west-2": 0.3549, + "il-central-1": 0.38808, "us-east-1": 0.33264, "us-east-2": 0.0, - "us-gov-west-1": 0.3634, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6id.metal": { @@ -46347,12 +48645,13 @@ "ap-south-1": 10.1504, "ap-southeast-1": 11.6928, "ap-southeast-2": 11.136, + "ca-west-1": 10.6176, "eu-central-1": 0.0, "eu-west-1": 10.752, "eu-west-2": 11.3568, "il-central-1": 11.2896, "us-east-1": 9.6768, - "us-east-2": 0.0, + "us-east-2": 9.6768, "us-gov-west-1": 11.6288, "us-west-2": 9.6768 }, @@ -46361,101 +48660,108 @@ "ap-northeast-2": 0.7268, "ap-south-1": 0.69784, "ap-southeast-1": 0.80388, - "ap-southeast-2": 0.696, - "eu-central-1": 0.79926, + "ap-southeast-2": 0.0, + "ca-west-1": 0.72996, + "eu-central-1": 0.7266, "eu-west-1": 0.0, "eu-west-2": 0.78078, "il-central-1": 0.0, "us-east-1": 0.66528, - "us-east-2": 0.6048, - "us-gov-west-1": 0.7268, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.66528 }, "r6id.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 1.59896, + "ap-northeast-2": 1.4536, "ap-south-1": 1.2688, "ap-southeast-1": 1.4616, "ap-southeast-2": 1.5312, + "ca-west-1": 1.45992, "eu-central-1": 1.4532, - "eu-west-1": 1.4784, + "eu-west-1": 1.344, "eu-west-2": 0.0, - "il-central-1": 1.4112, + "il-central-1": 1.55232, "us-east-1": 0.0, "us-east-2": 1.33056, - "us-gov-west-1": 1.4536, - "us-west-2": 0.0 + "us-gov-west-1": 1.59896, + "us-west-2": 1.2096 }, "r6id.8xlarge": { "ap-northeast-1": 3.21552, - "ap-northeast-2": 3.19792, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 3.21552, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 2.9064, "eu-west-1": 2.9568, "eu-west-2": 0.0, "il-central-1": 3.10464, "us-east-1": 2.66112, "us-east-2": 2.66112, - "us-gov-west-1": 2.9072, - "us-west-2": 2.66112 + "us-gov-west-1": 3.19792, + "us-west-2": 2.4192 }, "r6id.12xlarge": { - "ap-northeast-1": 4.82328, - "ap-northeast-2": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 4.3848, + "ap-northeast-1": 4.3848, + "ap-northeast-2": 4.3608, + "ap-south-1": 4.18704, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.176, + "ca-west-1": 3.9816, "eu-central-1": 4.79556, - "eu-west-1": 4.032, + "eu-west-1": 0.0, "eu-west-2": 4.68468, "il-central-1": 4.65696, - "us-east-1": 3.99168, + "us-east-1": 3.6288, "us-east-2": 3.6288, "us-gov-west-1": 4.79688, - "us-west-2": 3.6288 + "us-west-2": 0.0 }, "r6id.16xlarge": { "ap-northeast-1": 6.43104, "ap-northeast-2": 6.39584, "ap-south-1": 0.0, - "ap-southeast-1": 5.8464, + "ap-southeast-1": 6.43104, "ap-southeast-2": 0.0, + "ca-west-1": 5.3088, "eu-central-1": 0.0, - "eu-west-1": 5.376, + "eu-west-1": 5.9136, "eu-west-2": 6.24624, "il-central-1": 5.6448, - "us-east-1": 0.0, + "us-east-1": 4.8384, "us-east-2": 0.0, "us-gov-west-1": 6.39584, - "us-west-2": 5.32224 + "us-west-2": 4.8384 }, "r6id.24xlarge": { - "ap-northeast-1": 9.64656, - "ap-northeast-2": 9.59376, + "ap-northeast-1": 0.0, + "ap-northeast-2": 8.7216, "ap-south-1": 8.37408, "ap-southeast-1": 8.7696, "ap-southeast-2": 8.352, + "ca-west-1": 7.9632, "eu-central-1": 9.59112, - "eu-west-1": 8.8704, + "eu-west-1": 0.0, "eu-west-2": 8.5176, - "il-central-1": 0.0, + "il-central-1": 8.4672, "us-east-1": 7.98336, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-east-2": 7.2576, + "us-gov-west-1": 9.59376, "us-west-2": 0.0 }, "r6id.32xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 10.1504, - "ap-southeast-1": 11.6928, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 11.136, + "ca-west-1": 10.6176, "eu-central-1": 11.6256, "eu-west-1": 0.0, - "eu-west-2": 11.3568, - "il-central-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 11.2896, "us-east-1": 9.6768, "us-east-2": 9.6768, "us-gov-west-1": 11.6288, @@ -46465,6 +48771,7 @@ "ap-northeast-1": 16.721, "ap-southeast-1": 16.474, "eu-central-1": 16.391, + "eu-north-1": 14.579, "eu-west-1": 15.32, "us-east-1": 13.755, "us-east-2": 13.755, @@ -46472,79 +48779,87 @@ "us-west-2": 13.755 }, "r6idn.large": { - "ap-northeast-1": 0.26126, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 0.23283, - "eu-west-1": 0.23938, - "us-east-1": 0.19539, + "eu-central-1": 0.0, + "eu-north-1": 0.20709, + "eu-west-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.19539, "us-gov-west-1": 0.23517, - "us-west-2": 0.0 + "us-west-2": 0.21493 }, "r6idn.xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.5148, + "ap-southeast-1": 0.468, "eu-central-1": 0.51223, + "eu-north-1": 0.4556, "eu-west-1": 0.43524, "us-east-1": 0.39078, - "us-east-2": 0.0, - "us-gov-west-1": 0.51737, + "us-east-2": 0.42986, + "us-gov-west-1": 0.0, "us-west-2": 0.39078 }, "r6idn.metal": { "ap-northeast-1": 15.20064, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 14.90112, + "eu-north-1": 0.0, "eu-west-1": 13.92768, - "us-east-1": 12.50496, + "us-east-1": 0.0, "us-east-2": 12.50496, - "us-gov-west-1": 15.05088, + "us-gov-west-1": 0.0, "us-west-2": 12.50496 }, "r6idn.2xlarge": { - "ap-northeast-1": 0.95004, + "ap-northeast-1": 1.04504, "ap-southeast-1": 1.0296, "eu-central-1": 0.0, - "eu-west-1": 0.95753, + "eu-north-1": 0.9112, + "eu-west-1": 0.0, "us-east-1": 0.78156, - "us-east-2": 0.85972, - "us-gov-west-1": 0.94068, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.85972 }, "r6idn.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 2.0592, + "ap-southeast-1": 0.0, "eu-central-1": 2.0489, + "eu-north-1": 1.65672, "eu-west-1": 1.91506, "us-east-1": 1.56312, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.88136, "us-west-2": 0.0 }, "r6idn.8xlarge": { - "ap-northeast-1": 3.80016, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 3.72528, - "eu-west-1": 3.83011, + "eu-central-1": 0.0, + "eu-north-1": 3.31344, + "eu-west-1": 3.48192, "us-east-1": 3.43886, - "us-east-2": 0.0, + "us-east-2": 3.43886, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6idn.12xlarge": { - "ap-northeast-1": 5.70024, + "ap-northeast-1": 6.27026, "ap-southeast-1": 6.1776, "eu-central-1": 6.14671, + "eu-north-1": 0.0, "eu-west-1": 5.22288, "us-east-1": 0.0, "us-east-2": 5.1583, "us-gov-west-1": 5.64408, - "us-west-2": 0.0 + "us-west-2": 4.68936 }, "r6idn.16xlarge": { - "ap-northeast-1": 7.60032, - "ap-southeast-1": 7.488, - "eu-central-1": 0.0, + "ap-northeast-1": 8.36035, + "ap-southeast-1": 0.0, + "eu-central-1": 7.45056, + "eu-north-1": 0.0, "eu-west-1": 6.96384, "us-east-1": 6.87773, "us-east-2": 6.87773, @@ -46553,21 +48868,23 @@ }, "r6idn.24xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 11.232, + "ap-southeast-1": 0.0, "eu-central-1": 12.29342, - "eu-west-1": 11.49034, - "us-east-1": 0.0, + "eu-north-1": 9.94032, + "eu-west-1": 0.0, + "us-east-1": 10.31659, "us-east-2": 0.0, - "us-gov-west-1": 12.41698, - "us-west-2": 0.0 + "us-gov-west-1": 11.28816, + "us-west-2": 9.37872 }, "r6idn.32xlarge": { "ap-northeast-1": 15.20064, "ap-southeast-1": 14.976, - "eu-central-1": 14.90112, + "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 12.50496, - "us-east-2": 0.0, + "us-east-2": 12.50496, "us-gov-west-1": 15.05088, "us-west-2": 12.50496 }, @@ -46575,6 +48892,7 @@ "ap-northeast-1": 14.909, "ap-southeast-1": 14.662, "eu-central-1": 14.662, + "eu-north-1": 13.097, "eu-west-1": 13.755, "us-east-1": 12.273, "us-east-2": 12.273, @@ -46585,16 +48903,18 @@ "ap-northeast-1": 0.23295, "ap-southeast-1": 0.0, "eu-central-1": 0.22909, + "eu-north-1": 0.20463, "eu-west-1": 0.19539, - "us-east-1": 0.17433, + "us-east-1": 0.19176, "us-east-2": 0.0, - "us-gov-west-1": 0.23037, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-2": 0.19176 }, "r6in.xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.41652, - "eu-central-1": 0.41652, + "ap-northeast-1": 0.42354, + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.37206, "eu-west-1": 0.0, "us-east-1": 0.38353, "us-east-2": 0.0, @@ -46602,9 +48922,10 @@ "us-west-2": 0.34866 }, "r6in.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 13.55328, "ap-southeast-1": 13.32864, "eu-central-1": 13.32864, + "eu-north-1": 0.0, "eu-west-1": 12.50496, "us-east-1": 0.0, "us-east-2": 11.15712, @@ -46614,213 +48935,882 @@ "r6in.2xlarge": { "ap-northeast-1": 0.93179, "ap-southeast-1": 0.91634, - "eu-central-1": 0.83304, - "eu-west-1": 0.0, - "us-east-1": 0.76705, + "eu-central-1": 0.91634, + "eu-north-1": 0.81853, + "eu-west-1": 0.78156, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.83772, - "us-west-2": 0.76705 + "us-west-2": 0.0 }, "r6in.4xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 1.83269, "eu-central-1": 1.83269, - "eu-west-1": 1.56312, + "eu-north-1": 1.48824, + "eu-west-1": 0.0, "us-east-1": 1.39464, "us-east-2": 1.39464, - "us-gov-west-1": 1.84298, - "us-west-2": 1.39464 + "us-gov-west-1": 0.0, + "us-west-2": 1.5341 }, "r6in.8xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 3.66538, - "eu-central-1": 3.33216, - "eu-west-1": 3.43886, - "us-east-1": 2.78928, + "eu-central-1": 0.0, + "eu-north-1": 3.27413, + "eu-west-1": 0.0, + "us-east-1": 3.06821, "us-east-2": 0.0, - "us-gov-west-1": 3.68597, + "us-gov-west-1": 3.35088, "us-west-2": 0.0 }, "r6in.12xlarge": { "ap-northeast-1": 5.08248, - "ap-southeast-1": 5.49806, + "ap-southeast-1": 4.99824, "eu-central-1": 5.49806, + "eu-north-1": 4.46472, "eu-west-1": 0.0, "us-east-1": 4.18392, "us-east-2": 4.18392, - "us-gov-west-1": 5.52895, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6in.16xlarge": { "ap-northeast-1": 7.4543, "ap-southeast-1": 6.66432, "eu-central-1": 7.33075, + "eu-north-1": 6.54826, "eu-west-1": 6.25248, - "us-east-1": 0.0, - "us-east-2": 5.57856, + "us-east-1": 6.13642, + "us-east-2": 0.0, "us-gov-west-1": 6.70176, "us-west-2": 5.57856 }, "r6in.24xlarge": { "ap-northeast-1": 11.18146, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-1": 9.99648, + "eu-central-1": 10.99613, + "eu-north-1": 8.92944, "eu-west-1": 0.0, "us-east-1": 9.20462, "us-east-2": 9.20462, - "us-gov-west-1": 10.05264, + "us-gov-west-1": 0.0, "us-west-2": 8.36784 }, "r6in.32xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 11.90592, "eu-west-1": 12.50496, "us-east-1": 11.15712, "us-east-2": 11.15712, "us-gov-west-1": 0.0, "us-west-2": 11.15712 }, + "r7a": { + "ap-northeast-1": 19.382, + "eu-central-1": 19.382, + "eu-north-1": 17.086, + "eu-south-2": 17.979, + "eu-west-1": 17.979, + "us-east-1": 16.067, + "us-east-2": 16.067, + "us-west-2": 16.067 + }, + "r7a.medium": { + "ap-northeast-1": 0.10095, + "eu-central-1": 0.0, + "eu-north-1": 0.08899, + "eu-south-2": 0.09364, + "eu-west-1": 0.08513, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.large": { + "ap-northeast-1": 0.20189, + "eu-central-1": 0.18354, + "eu-north-1": 0.1618, + "eu-south-2": 0.18729, + "eu-west-1": 0.0, + "us-east-1": 0.16737, + "us-east-2": 0.15215, + "us-west-2": 0.0 + }, + "r7a.xlarge": { + "ap-northeast-1": 0.40379, + "eu-central-1": 0.40379, + "eu-north-1": 0.3236, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.3043, + "us-east-2": 0.3043, + "us-west-2": 0.33473 + }, + "r7a.metal-48xl": { + "ap-northeast-1": 17.61984, + "eu-central-1": 17.61984, + "eu-north-1": 15.5328, + "eu-south-2": 0.0, + "eu-west-1": 16.34496, + "us-east-1": 14.6064, + "us-east-2": 0.0, + "us-west-2": 14.6064 + }, + "r7a.2xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.80758, + "eu-north-1": 0.71192, + "eu-south-2": 0.74914, + "eu-west-1": 0.74914, + "us-east-1": 0.6086, + "us-east-2": 0.66946, + "us-west-2": 0.66946 + }, + "r7a.4xlarge": { + "ap-northeast-1": 1.61515, + "eu-central-1": 1.61515, + "eu-north-1": 1.42384, + "eu-south-2": 1.49829, + "eu-west-1": 0.0, + "us-east-1": 1.2172, + "us-east-2": 1.33892, + "us-west-2": 0.0 + }, + "r7a.8xlarge": { + "ap-northeast-1": 3.2303, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.72416, + "eu-west-1": 2.99658, + "us-east-1": 2.4344, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 4.84546, + "eu-north-1": 3.8832, + "eu-south-2": 4.08624, + "eu-west-1": 4.49486, + "us-east-1": 3.6516, + "us-east-2": 0.0, + "us-west-2": 3.6516 + }, + "r7a.16xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 5.87328, + "eu-north-1": 5.1776, + "eu-south-2": 5.99315, + "eu-west-1": 5.44832, + "us-east-1": 0.0, + "us-east-2": 4.8688, + "us-west-2": 5.35568 + }, + "r7a.24xlarge": { + "ap-northeast-1": 9.69091, + "eu-central-1": 8.80992, + "eu-north-1": 0.0, + "eu-south-2": 8.98973, + "eu-west-1": 8.98973, + "us-east-1": 7.3032, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.32xlarge": { + "ap-northeast-1": 12.92122, + "eu-central-1": 0.0, + "eu-north-1": 11.39072, + "eu-south-2": 0.0, + "eu-west-1": 10.89664, + "us-east-1": 10.71136, + "us-east-2": 9.7376, + "us-west-2": 9.7376 + }, + "r7a.48xlarge": { + "ap-northeast-1": 17.61984, + "eu-central-1": 17.61984, + "eu-north-1": 15.5328, + "eu-south-2": 16.34496, + "eu-west-1": 16.34496, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 14.6064 + }, "r7g": { "ap-northeast-1": 13.644, + "ap-northeast-2": 13.644, + "ap-south-1": 7.928, + "ap-south-2": 7.928, + "ap-southeast-1": 13.644, "ap-southeast-2": 13.555, - "eu-central-1": 13.644 + "ca-central-1": 12.387, + "eu-central-1": 13.644, + "eu-north-1": 12.028, + "eu-south-2": 12.651, + "eu-west-1": 12.656, + "eu-west-2": 13.284, + "us-east-1": 11.31, + "us-east-2": 11.31, + "us-west-1": 12.566, + "us-west-2": 11.31 }, "r7g.medium": { - "ap-northeast-1": 0.0646, - "ap-southeast-2": 0.0, + "ap-northeast-1": 0.0687, + "ap-northeast-2": 0.0646, + "ap-south-1": 0.0375, + "ap-south-2": 0.0399, + "ap-southeast-1": 0.0687, + "ap-southeast-2": 0.0682, + "ca-central-1": 0.0624, "eu-central-1": 0.0, - "eu-west-1": 0.0599, - "us-east-1": 0.0536, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0629, + "us-east-1": 0.0, "us-east-2": 0.0536, - "us-west-2": 0.0536 + "us-west-1": 0.0, + "us-west-2": 0.0569 }, "r7g.large": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1292, + "ap-south-1": 0.0798, + "ap-south-2": 0.0751, + "ap-southeast-1": 0.1373, "ap-southeast-2": 0.1364, - "eu-central-1": 0.1373, - "eu-west-1": 0.1199, + "ca-central-1": 0.1247, + "eu-central-1": 0.0, + "eu-north-1": 0.1139, + "eu-south-2": 0.1198, + "eu-west-1": 0.0, + "eu-west-2": 0.1337, "us-east-1": 0.1071, - "us-east-2": 0.1071, - "us-west-2": 0.1071 + "us-east-2": 0.1138, + "us-west-1": 0.0, + "us-west-2": 0.1138 }, "r7g.xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.2747, - "eu-west-1": 0.2397, - "us-east-1": 0.2142, - "us-east-2": 0.2142, - "us-west-2": 0.2142 + "ap-northeast-2": 0.2746, + "ap-south-1": 0.0, + "ap-south-2": 0.1502, + "ap-southeast-1": 0.2584, + "ap-southeast-2": 0.2567, + "ca-central-1": 0.0, + "eu-central-1": 0.2584, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.2548, + "eu-west-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2277, + "us-west-1": 0.238, + "us-west-2": 0.0 }, "r7g.metal": { "ap-northeast-1": 4.1344, + "ap-northeast-2": 4.1344, + "ap-south-1": 2.4026, + "ap-south-2": 0.0, + "ap-southeast-1": 4.1344, "ap-southeast-2": 4.1075, + "ca-central-1": 3.7536, "eu-central-1": 0.0, + "eu-north-1": 3.6448, + "eu-south-2": 3.8336, "eu-west-1": 3.8352, + "eu-west-2": 4.0256, "us-east-1": 3.4272, - "us-east-2": 3.4272, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 3.4272 }, "r7g.2xlarge": { "ap-northeast-1": 0.5168, + "ap-northeast-2": 0.5168, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.5168, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.5494, + "eu-north-1": 0.4829, + "eu-south-2": 0.5094, "eu-west-1": 0.4794, - "us-east-1": 0.4284, + "eu-west-2": 0.0, + "us-east-1": 0.0, "us-east-2": 0.4284, + "us-west-1": 0.506, "us-west-2": 0.4284 }, "r7g.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.0336, + "ap-northeast-2": 1.0336, + "ap-south-1": 0.0, + "ap-south-2": 0.6006, + "ap-southeast-1": 1.0336, "ap-southeast-2": 1.0915, + "ca-central-1": 0.0, "eu-central-1": 1.0987, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.9588, + "eu-west-2": 1.0064, "us-east-1": 0.8568, - "us-east-2": 0.8568, - "us-west-2": 0.8568 + "us-east-2": 0.9108, + "us-west-1": 1.012, + "us-west-2": 0.9108 }, "r7g.8xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 2.0672, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 2.0672, "ap-southeast-2": 2.0538, + "ca-central-1": 1.9953, "eu-central-1": 0.0, - "eu-west-1": 1.9176, - "us-east-1": 1.7136, - "us-east-2": 1.7136, - "us-west-2": 1.7136 + "eu-north-1": 0.0, + "eu-south-2": 2.0376, + "eu-west-1": 2.0384, + "eu-west-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.8216, + "us-west-1": 1.904, + "us-west-2": 0.0 }, "r7g.12xlarge": { - "ap-northeast-1": 3.2962, - "ap-southeast-2": 0.0, + "ap-northeast-1": 3.1008, + "ap-northeast-2": 3.1008, + "ap-south-1": 1.9147, + "ap-south-2": 0.0, + "ap-southeast-1": 3.2962, + "ap-southeast-2": 3.2745, + "ca-central-1": 2.8152, "eu-central-1": 3.2962, + "eu-north-1": 2.7336, + "eu-south-2": 0.0, "eu-west-1": 2.8764, + "eu-west-2": 3.2098, "us-east-1": 2.5704, - "us-east-2": 2.5704, - "us-west-2": 2.5704 + "us-east-2": 2.7323, + "us-west-1": 0.0, + "us-west-2": 2.7323 }, "r7g.16xlarge": { - "ap-northeast-1": 4.1344, + "ap-northeast-1": 0.0, + "ap-northeast-2": 4.1344, + "ap-south-1": 2.4026, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 3.7536, "eu-central-1": 4.1344, - "eu-west-1": 3.8352, - "us-east-1": 3.4272, - "us-east-2": 3.4272, + "eu-north-1": 0.0, + "eu-south-2": 3.8336, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 3.4272 }, "r7gd": { + "ap-northeast-1": 17.364, + "ap-south-1": 9.293, + "ap-southeast-1": 17.364, + "ap-southeast-2": 16.537, + "eu-central-1": 17.264, + "eu-north-1": 15.168, + "eu-south-2": 15.967, "eu-west-1": 15.967, "us-east-1": 14.37, "us-east-2": 14.37, + "us-west-1": 16.166, "us-west-2": 14.37 }, "r7gd.medium": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.044, + "ap-southeast-1": 0.0871, + "ap-southeast-2": 0.0783, + "eu-central-1": 0.0817, + "eu-north-1": 0.0761, + "eu-south-2": 0.0, "eu-west-1": 0.0801, "us-east-1": 0.068, - "us-east-2": 0.0721, + "us-east-2": 0.0, + "us-west-1": 0.0811, "us-west-2": 0.0 }, "r7gd.large": { + "ap-northeast-1": 0.1743, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1644, + "ap-southeast-2": 0.0, + "eu-central-1": 0.1635, + "eu-north-1": 0.1523, + "eu-south-2": 0.0, "eu-west-1": 0.1512, - "us-east-1": 0.1442, - "us-east-2": 0.1361, - "us-west-2": 0.0 + "us-east-1": 0.0, + "us-east-2": 0.1442, + "us-west-1": 0.0, + "us-west-2": 0.1442 }, "r7gd.xlarge": { - "eu-west-1": 0.3205, - "us-east-1": 0.2722, - "us-east-2": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.1866, + "ap-southeast-1": 0.3289, + "ap-southeast-2": 0.3132, + "eu-central-1": 0.0, + "eu-north-1": 0.2873, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2885, + "us-west-1": 0.3062, "us-west-2": 0.0 }, + "r7gd.metal": { + "ap-northeast-1": 5.2618, + "ap-south-1": 2.816, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.0112, + "eu-central-1": 5.2315, + "eu-north-1": 0.0, + "eu-south-2": 4.8384, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 4.3546, + "us-west-1": 4.8989, + "us-west-2": 4.3546 + }, "r7gd.2xlarge": { + "ap-northeast-1": 0.6972, + "ap-south-1": 0.352, + "ap-southeast-1": 0.6577, + "ap-southeast-2": 0.664, + "eu-central-1": 0.6932, + "eu-north-1": 0.609, + "eu-south-2": 0.0, "eu-west-1": 0.6048, - "us-east-1": 0.5769, + "us-east-1": 0.5443, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7gd.4xlarge": { - "eu-west-1": 1.2096, + "ap-northeast-1": 1.3154, + "ap-south-1": 0.7462, + "ap-southeast-1": 1.3944, + "ap-southeast-2": 1.2528, + "eu-central-1": 1.3079, + "eu-north-1": 1.2181, + "eu-south-2": 1.2822, + "eu-west-1": 1.2822, "us-east-1": 1.1538, "us-east-2": 1.1538, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7gd.8xlarge": { - "eu-west-1": 2.5644, + "ap-northeast-1": 2.6309, + "ap-south-1": 1.408, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 2.7727, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 2.3076, + "us-east-2": 0.0, + "us-west-1": 2.5964, "us-west-2": 2.3076 }, "r7gd.12xlarge": { - "eu-west-1": 3.8465, - "us-east-1": 3.4614, + "ap-northeast-1": 3.9463, + "ap-south-1": 2.112, + "ap-southeast-1": 4.1831, + "ap-southeast-2": 3.7584, + "eu-central-1": 4.1591, + "eu-north-1": 0.0, + "eu-south-2": 3.8465, + "eu-west-1": 0.0, + "us-east-1": 0.0, "us-east-2": 3.2659, + "us-west-1": 3.6742, "us-west-2": 3.2659 }, "r7gd.16xlarge": { + "ap-northeast-1": 5.2618, + "ap-south-1": 2.816, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.0112, + "eu-central-1": 5.2315, + "eu-north-1": 0.0, + "eu-south-2": 4.8384, "eu-west-1": 4.8384, "us-east-1": 4.3546, - "us-east-2": 4.3546, + "us-east-2": 0.0, + "us-west-1": 4.8989, "us-west-2": 4.3546 }, + "r7i": { + "ap-northeast-1": 16.854, + "ap-northeast-2": 16.854, + "ap-south-1": 14.414, + "ap-southeast-1": 16.854, + "ap-southeast-2": 16.743, + "ap-southeast-3": 16.854, + "ca-central-1": 15.301, + "eu-central-1": 16.854, + "eu-north-1": 14.858, + "eu-south-2": 15.634, + "eu-west-1": 15.634, + "eu-west-2": 16.41, + "eu-west-3": 16.41, + "sa-east-1": 22.287, + "us-east-1": 13.971, + "us-east-2": 13.971, + "us-gov-east-1": 16.743, + "us-gov-west-1": 16.743, + "us-west-1": 15.523, + "us-west-2": 13.971 + }, + "r7i.large": { + "ap-northeast-1": 0.1596, + "ap-northeast-2": 0.1596, + "ap-south-1": 0.15015, + "ap-southeast-1": 0.17556, + "ap-southeast-2": 0.15855, + "ap-southeast-3": 0.0, + "ca-central-1": 0.1449, + "eu-central-1": 0.0, + "eu-north-1": 0.1407, + "eu-south-2": 0.14805, + "eu-west-1": 0.16286, + "eu-west-2": 0.1554, + "eu-west-3": 0.1554, + "sa-east-1": 0.21105, + "us-east-1": 0.14553, + "us-east-2": 0.14553, + "us-gov-east-1": 0.15855, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.1323 + }, + "r7i.xlarge": { + "ap-northeast-1": 0.35112, + "ap-northeast-2": 0.0, + "ap-south-1": 0.273, + "ap-southeast-1": 0.3192, + "ap-southeast-2": 0.3171, + "ap-southeast-3": 0.35112, + "ca-central-1": 0.2898, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.2961, + "eu-west-2": 0.34188, + "eu-west-3": 0.0, + "sa-east-1": 0.46431, + "us-east-1": 0.2646, + "us-east-2": 0.0, + "us-gov-east-1": 0.3171, + "us-gov-west-1": 0.3171, + "us-west-1": 0.294, + "us-west-2": 0.0 + }, + "r7i.metal-24xl": { + "ap-northeast-1": 8.42688, + "ap-northeast-2": 8.42688, + "ap-south-1": 7.2072, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 8.42688, + "ca-central-1": 6.9552, + "eu-central-1": 0.0, + "eu-north-1": 6.7536, + "eu-south-2": 7.1064, + "eu-west-1": 0.0, + "eu-west-2": 7.4592, + "eu-west-3": 8.20512, + "sa-east-1": 10.1304, + "us-east-1": 6.3504, + "us-east-2": 6.3504, + "us-gov-east-1": 7.6104, + "us-gov-west-1": 0.0, + "us-west-1": 7.7616, + "us-west-2": 0.0 + }, + "r7i.metal-48xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 15.3216, + "ap-south-1": 13.104, + "ap-southeast-1": 15.3216, + "ap-southeast-2": 15.2208, + "ap-southeast-3": 15.3216, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 13.5072, + "eu-south-2": 0.0, + "eu-west-1": 14.2128, + "eu-west-2": 0.0, + "eu-west-3": 14.9184, + "sa-east-1": 20.2608, + "us-east-1": 12.7008, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 15.2208, + "us-west-1": 0.0, + "us-west-2": 12.7008 + }, + "r7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.69762, + "ap-southeast-3": 0.6384, + "ca-central-1": 0.63756, + "eu-central-1": 0.0, + "eu-north-1": 0.61908, + "eu-south-2": 0.5922, + "eu-west-1": 0.0, + "eu-west-2": 0.68376, + "eu-west-3": 0.6216, + "sa-east-1": 0.8442, + "us-east-1": 0.5292, + "us-east-2": 0.58212, + "us-gov-east-1": 0.6342, + "us-gov-west-1": 0.6342, + "us-west-1": 0.588, + "us-west-2": 0.58212 + }, + "r7i.4xlarge": { + "ap-northeast-1": 1.40448, + "ap-northeast-2": 0.0, + "ap-south-1": 1.092, + "ap-southeast-1": 1.40448, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.2768, + "ca-central-1": 0.0, + "eu-central-1": 1.2768, + "eu-north-1": 1.1256, + "eu-south-2": 0.0, + "eu-west-1": 1.1844, + "eu-west-2": 0.0, + "eu-west-3": 1.2432, + "sa-east-1": 0.0, + "us-east-1": 1.0584, + "us-east-2": 1.16424, + "us-gov-east-1": 1.39524, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 1.0584 + }, + "r7i.8xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.80896, + "ap-south-1": 2.4024, + "ap-southeast-1": 2.5536, + "ap-southeast-2": 2.5368, + "ap-southeast-3": 2.5536, + "ca-central-1": 0.0, + "eu-central-1": 2.5536, + "eu-north-1": 2.2512, + "eu-south-2": 2.60568, + "eu-west-1": 0.0, + "eu-west-2": 2.73504, + "eu-west-3": 2.4864, + "sa-east-1": 3.3768, + "us-east-1": 2.1168, + "us-east-2": 0.0, + "us-gov-east-1": 2.79048, + "us-gov-west-1": 2.5368, + "us-west-1": 2.5872, + "us-west-2": 2.1168 + }, + "r7i.12xlarge": { + "ap-northeast-1": 3.8304, + "ap-northeast-2": 3.8304, + "ap-south-1": 3.6036, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.8052, + "ap-southeast-3": 3.8304, + "ca-central-1": 0.0, + "eu-central-1": 4.21344, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 3.90852, + "eu-west-2": 4.10256, + "eu-west-3": 3.7296, + "sa-east-1": 5.57172, + "us-east-1": 3.1752, + "us-east-2": 3.1752, + "us-gov-east-1": 3.8052, + "us-gov-west-1": 0.0, + "us-west-1": 3.528, + "us-west-2": 3.49272 + }, + "r7i.16xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 5.61792, + "ap-south-1": 0.0, + "ap-southeast-1": 5.1072, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.1072, + "ca-central-1": 5.10048, + "eu-central-1": 5.61792, + "eu-north-1": 4.5024, + "eu-south-2": 4.7376, + "eu-west-1": 0.0, + "eu-west-2": 5.47008, + "eu-west-3": 5.47008, + "sa-east-1": 0.0, + "us-east-1": 4.65696, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 5.0736, + "us-west-1": 0.0, + "us-west-2": 4.65696 + }, + "r7i.24xlarge": { + "ap-northeast-1": 8.42688, + "ap-northeast-2": 8.42688, + "ap-south-1": 7.2072, + "ap-southeast-1": 8.42688, + "ap-southeast-2": 0.0, + "ap-southeast-3": 7.6608, + "ca-central-1": 7.65072, + "eu-central-1": 8.42688, + "eu-north-1": 6.7536, + "eu-south-2": 7.81704, + "eu-west-1": 7.1064, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 10.1304, + "us-east-1": 6.98544, + "us-east-2": 0.0, + "us-gov-east-1": 8.37144, + "us-gov-west-1": 7.6104, + "us-west-1": 7.056, + "us-west-2": 0.0 + }, + "r7i.48xlarge": { + "ap-northeast-1": 15.3216, + "ap-northeast-2": 15.3216, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 15.2208, + "ap-southeast-3": 15.3216, + "ca-central-1": 13.9104, + "eu-central-1": 15.3216, + "eu-north-1": 0.0, + "eu-south-2": 14.2128, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 14.9184, + "sa-east-1": 20.2608, + "us-east-1": 0.0, + "us-east-2": 12.7008, + "us-gov-east-1": 15.2208, + "us-gov-west-1": 0.0, + "us-west-1": 14.112, + "us-west-2": 0.0 + }, + "r7iz": { + "ap-northeast-1": 15.981, + "eu-central-1": 15.84, + "eu-west-1": 14.643, + "us-east-1": 13.094, + "us-east-2": 13.094, + "us-west-2": 13.094 + }, + "r7iz.large": { + "ap-northeast-1": 0.2497, + "eu-central-1": 0.225, + "eu-west-1": 0.208, + "us-east-1": 0.2046, + "us-east-2": 0.186, + "us-west-2": 0.2046 + }, + "r7iz.xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.4576, + "us-east-1": 0.4092, + "us-east-2": 0.0, + "us-west-2": 0.4092 + }, + "r7iz.metal-16xl": { + "ap-northeast-1": 0.0, + "eu-central-1": 7.92, + "eu-west-1": 0.0, + "us-east-1": 6.5472, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.metal-32xl": { + "ap-northeast-1": 14.528, + "eu-central-1": 15.84, + "eu-west-1": 13.312, + "us-east-1": 11.904, + "us-east-2": 11.904, + "us-west-2": 11.904 + }, + "r7iz.2xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.99, + "eu-west-1": 0.832, + "us-east-1": 0.8184, + "us-east-2": 0.0, + "us-west-2": 0.744 + }, + "r7iz.4xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 1.664, + "us-east-1": 1.6368, + "us-east-2": 0.0, + "us-west-2": 1.488 + }, + "r7iz.8xlarge": { + "ap-northeast-1": 3.632, + "eu-central-1": 3.6, + "eu-west-1": 3.328, + "us-east-1": 3.2736, + "us-east-2": 3.2736, + "us-west-2": 0.0 + }, + "r7iz.12xlarge": { + "ap-northeast-1": 5.448, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 4.9104, + "us-east-2": 4.9104, + "us-west-2": 0.0 + }, + "r7iz.16xlarge": { + "ap-northeast-1": 7.9904, + "eu-central-1": 0.0, + "eu-west-1": 6.656, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 6.5472 + }, + "r7iz.32xlarge": { + "ap-northeast-1": 15.9808, + "eu-central-1": 14.4, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 11.904, + "us-west-2": 11.904 + }, "t1.micro": { "ap-northeast-1": 0.026, "ap-southeast-1": 0.02, @@ -46978,6 +49968,7 @@ "ap-southeast-3": 11.151, "ap-southeast-4": 11.151, "ca-central-1": 9.8, + "ca-west-1": 9.8, "eu-central-1": 10.138, "eu-central-2": 11.151, "eu-north-1": 9.124, @@ -46998,27 +49989,28 @@ "us-west-2": 8.786 }, "t3.micro": { - "af-south-1": 0.0, + "af-south-1": 0.0136, "ap-east-1": 0.0, - "ap-northeast-1": 0.0145, - "ap-northeast-2": 0.013, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0119, - "ap-south-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0144, + "ap-south-1": 0.0, + "ap-south-2": 0.0112, "ap-southeast-1": 0.0132, - "ap-southeast-2": 0.0141, + "ap-southeast-2": 0.0132, "ap-southeast-3": 0.0, "ap-southeast-4": 0.014, "ca-central-1": 0.0116, + "ca-west-1": 0.0116, "eu-central-1": 0.0, "eu-central-2": 0.0132, - "eu-north-1": 0.0108, + "eu-north-1": 0.0, "eu-south-1": 0.0127, "eu-south-2": 0.0114, "eu-west-1": 0.0122, "eu-west-2": 0.0118, "eu-west-3": 0.0118, - "il-central-1": 0.0, + "il-central-1": 0.0127, "me-central-1": 0.0125, "me-south-1": 0.0125, "sa-east-1": 0.0177, @@ -47026,67 +50018,69 @@ "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0122, - "us-west-1": 0.0124, - "us-west-2": 0.011, + "us-west-1": 0.0133, + "us-west-2": 0.0, "us-west-2-lax-1": 0.0125 }, "t3.small": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0275, + "ap-northeast-2": 0.026, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.028, - "ap-southeast-2": 0.0281, - "ap-southeast-3": 0.0, + "ap-south-2": 0.0224, + "ap-southeast-1": 0.0264, + "ap-southeast-2": 0.0264, + "ap-southeast-3": 0.0264, "ap-southeast-4": 0.028, "ca-central-1": 0.0, + "ca-west-1": 0.0246, "eu-central-1": 0.024, "eu-central-2": 0.0264, "eu-north-1": 0.0216, - "eu-south-1": 0.0, + "eu-south-1": 0.024, "eu-south-2": 0.0228, "eu-west-1": 0.0243, "eu-west-2": 0.0252, - "eu-west-3": 0.0236, - "il-central-1": 0.024, + "eu-west-3": 0.0, + "il-central-1": 0.0254, "me-central-1": 0.0251, - "me-south-1": 0.0, + "me-south-1": 0.0251, "sa-east-1": 0.0336, "us-east-1": 0.022, "us-east-2": 0.022, - "us-gov-east-1": 0.0244, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0265, - "us-west-2": 0.0208, + "us-west-1": 0.0, + "us-west-2": 0.022, "us-west-2-lax-1": 0.025 }, "t3.medium": { "af-south-1": 0.0, "ap-east-1": 0.0584, - "ap-northeast-1": 0.0579, - "ap-northeast-2": 0.055, + "ap-northeast-1": 0.0544, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0544, - "ap-south-1": 0.0, + "ap-south-1": 0.0475, "ap-south-2": 0.0448, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.0528, "ap-southeast-2": 0.0562, "ap-southeast-3": 0.0528, "ap-southeast-4": 0.056, "ca-central-1": 0.0, + "ca-west-1": 0.0464, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0508, "eu-south-2": 0.0456, "eu-west-1": 0.0487, - "eu-west-2": 0.0, - "eu-west-3": 0.0472, - "il-central-1": 0.0, + "eu-west-2": 0.0504, + "eu-west-3": 0.05, + "il-central-1": 0.0508, "me-central-1": 0.0502, - "me-south-1": 0.0502, + "me-south-1": 0.0, "sa-east-1": 0.0709, "us-east-1": 0.0, "us-east-2": 0.0, @@ -47098,33 +50092,34 @@ }, "t3.large": { "af-south-1": 0.115, - "ap-east-1": 0.0, - "ap-northeast-1": 0.1159, + "ap-east-1": 0.1168, + "ap-northeast-1": 0.1088, "ap-northeast-2": 0.104, - "ap-northeast-3": 0.1088, - "ap-south-1": 0.0896, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 0.0896, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.1119, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.096, "eu-central-2": 0.1056, "eu-north-1": 0.0864, "eu-south-1": 0.1016, "eu-south-2": 0.0912, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 0.0974, + "eu-west-2": 0.0944, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.1016, "me-central-1": 0.1003, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0832, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0976, + "us-gov-west-1": 0.0, "us-west-1": 0.1061, "us-west-2": 0.0, "us-west-2-lax-1": 0.0998 @@ -47132,7 +50127,7 @@ "t3.xlarge": { "af-south-1": 0.217, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.2176, "ap-northeast-2": 0.22, "ap-northeast-3": 0.0, "ap-south-1": 0.0, @@ -47140,24 +50135,25 @@ "ap-southeast-1": 0.2238, "ap-southeast-2": 0.2249, "ap-southeast-3": 0.2112, - "ap-southeast-4": 0.2239, + "ap-southeast-4": 0.0, "ca-central-1": 0.1856, + "ca-west-1": 0.1967, "eu-central-1": 0.0, "eu-central-2": 0.2112, - "eu-north-1": 0.1728, - "eu-south-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.2032, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.1824, "eu-west-2": 0.1888, "eu-west-3": 0.0, "il-central-1": 0.2032, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 0.2835, "us-east-1": 0.1763, "us-east-2": 0.1763, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.1952, + "us-gov-east-1": 0.1952, + "us-gov-west-1": 0.0, "us-west-1": 0.1984, "us-west-2": 0.1664, "us-west-2-lax-1": 0.1997 @@ -47170,27 +50166,28 @@ "ap-northeast-3": 0.0068, "ap-south-1": 0.0, "ap-south-2": 0.0056, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0066, + "ap-southeast-2": 0.0066, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0058, + "ca-central-1": 0.0, + "ca-west-1": 0.0058, "eu-central-1": 0.006, "eu-central-2": 0.0, "eu-north-1": 0.0054, - "eu-south-1": 0.006, - "eu-south-2": 0.0057, + "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0057, "eu-west-2": 0.0059, "eu-west-3": 0.0059, "il-central-1": 0.0, "me-central-1": 0.0063, - "me-south-1": 0.0063, + "me-south-1": 0.0, "sa-east-1": 0.0084, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.0061, "us-west-1": 0.0, "us-west-2": 0.0052, "us-west-2-lax-1": 0.0062 @@ -47199,33 +50196,34 @@ "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.4635, - "ap-northeast-2": 0.4399, + "ap-northeast-2": 0.416, "ap-northeast-3": 0.4352, - "ap-south-1": 0.3799, + "ap-south-1": 0.3584, "ap-south-2": 0.3584, - "ap-southeast-1": 0.4224, - "ap-southeast-2": 0.4497, + "ap-southeast-1": 0.4477, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.4224, "ap-southeast-4": 0.4224, - "ca-central-1": 0.3712, + "ca-central-1": 0.3935, + "ca-west-1": 0.0, "eu-central-1": 0.384, "eu-central-2": 0.4224, "eu-north-1": 0.0, "eu-south-1": 0.3834, - "eu-south-2": 0.0, + "eu-south-2": 0.3648, "eu-west-1": 0.0, - "eu-west-2": 0.403, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.4013, + "eu-west-2": 0.0, + "eu-west-3": 0.4003, + "il-central-1": 0.4064, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.567, "us-east-1": 0.3328, - "us-east-2": 0.3328, + "us-east-2": 0.3527, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-1": 0.4246, + "us-west-2": 0.3328, "us-west-2-lax-1": 0.3994 }, "t3a.micro": { @@ -47388,6 +50386,7 @@ "ap-southeast-3": 0.0106, "ap-southeast-4": 0.0106, "ca-central-1": 0.0092, + "ca-west-1": 0.0092, "eu-central-1": 0.0096, "eu-central-2": 0.0106, "eu-north-1": 0.0086, @@ -47420,6 +50419,7 @@ "ap-southeast-3": 0.0212, "ap-southeast-4": 0.0212, "ca-central-1": 0.0184, + "ca-west-1": 0.0184, "eu-central-1": 0.0192, "eu-central-2": 0.0211, "eu-north-1": 0.0172, @@ -47452,6 +50452,7 @@ "ap-southeast-3": 0.0424, "ap-southeast-4": 0.0424, "ca-central-1": 0.0368, + "ca-west-1": 0.0368, "eu-central-1": 0.0384, "eu-central-2": 0.0422, "eu-north-1": 0.0344, @@ -47484,6 +50485,7 @@ "ap-southeast-3": 0.0848, "ap-southeast-4": 0.0848, "ca-central-1": 0.0736, + "ca-west-1": 0.0736, "eu-central-1": 0.0768, "eu-central-2": 0.0845, "eu-north-1": 0.0688, @@ -47516,6 +50518,7 @@ "ap-southeast-3": 0.1696, "ap-southeast-4": 0.1696, "ca-central-1": 0.1472, + "ca-west-1": 0.1472, "eu-central-1": 0.1536, "eu-central-2": 0.169, "eu-north-1": 0.1376, @@ -47548,6 +50551,7 @@ "ap-southeast-3": 0.0053, "ap-southeast-4": 0.0053, "ca-central-1": 0.0046, + "ca-west-1": 0.0046, "eu-central-1": 0.0048, "eu-central-2": 0.0053, "eu-north-1": 0.0043, @@ -47580,6 +50584,7 @@ "ap-southeast-3": 0.3392, "ap-southeast-4": 0.3392, "ca-central-1": 0.2944, + "ca-west-1": 0.2944, "eu-central-1": 0.3072, "eu-central-2": 0.3379, "eu-north-1": 0.2752, @@ -47601,20 +50606,60 @@ }, "trn1": { "us-east-1": 23.65, + "us-east-2": 23.65, "us-west-2": 23.65 }, "trn1.2xlarge": { - "us-east-1": 1.34375, - "us-west-2": 1.34375 + "us-east-1": 0.0, + "us-east-2": 1.47813, + "us-west-2": 1.47813 }, "trn1.32xlarge": { - "us-east-1": 21.5, - "us-west-2": 0.0 + "us-east-1": 23.65, + "us-east-2": 0.0, + "us-west-2": 23.65 }, "trn1n.32xlarge": { "us-east-1": 24.78, + "us-east-2": 24.78, "us-west-2": 24.78 }, + "u7i-12tb": { + "us-east-1": 168.168, + "us-west-2": 168.168 + }, + "u7i-12tb.224xlarge": { + "us-east-1": 0.0, + "us-west-2": 152.88 + }, + "u7in-16tb": { + "ap-northeast-2": 270.492, + "ap-southeast-2": 268.712, + "us-east-1": 224.224, + "us-west-2": 224.224 + }, + "u7in-16tb.224xlarge": { + "ap-northeast-2": 245.902, + "ap-southeast-2": 244.284, + "us-east-1": 203.84, + "us-west-2": 0.0 + }, + "u7in-24tb": { + "us-east-1": 336.336, + "us-west-2": 336.336 + }, + "u7in-24tb.224xlarge": { + "us-east-1": 305.76, + "us-west-2": 0.0 + }, + "u7in-32tb": { + "us-east-1": 448.448, + "us-west-2": 448.448 + }, + "u7in-32tb.224xlarge": { + "us-east-1": 407.68, + "us-west-2": 407.68 + }, "u-3tb1.56xlarge": { "ap-northeast-1": 32.9333, "ap-southeast-1": 32.93, @@ -47640,7 +50685,9 @@ "eu-central-2": 72.454, "eu-north-1": 58.045, "eu-south-1": 64.155, + "eu-south-2": 61.1, "eu-west-1": 37.688, + "eu-west-2": 64.133, "eu-west-3": 64.133, "sa-east-1": 65.623, "us-east-1": 33.652, @@ -47650,26 +50697,47 @@ "us-west-2": 33.652 }, "u-6tb1.metal": { - "eu-central-2": 0.0 + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "u-6tb1.56xlarge": { "ap-northeast-1": 55.9796, "ap-northeast-2": 55.9796, "ap-south-1": 47.87676, "ap-southeast-1": 55.9796, - "ap-southeast-2": 55.61075, + "ap-southeast-2": 0.0, "ca-central-1": 50.82333, "eu-central-1": 55.9796, "eu-central-2": 61.57756, - "eu-north-1": 49.33177, + "eu-north-1": 0.0, "eu-south-1": 54.52459, + "eu-south-2": 0.0, "eu-west-1": 51.92818, + "eu-west-2": 54.50589, "eu-west-3": 54.50589, - "sa-east-1": 74.02528, - "us-east-1": 46.40391, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 46.40391, "us-gov-east-1": 55.61075, - "us-gov-west-1": 55.61075, + "us-gov-west-1": 0.0, "us-west-2": 46.40391 }, "u-6tb1.112xlarge": { @@ -47678,19 +50746,21 @@ "ap-south-1": 56.333, "ap-southeast-1": 65.867, "ap-southeast-2": 65.433, - "ca-central-1": 59.8, + "ca-central-1": 0.0, "eu-central-1": 65.867, - "eu-central-2": 0.0, + "eu-central-2": 72.4537, "eu-north-1": 58.045, - "eu-south-1": 64.155, - "eu-west-1": 61.1, + "eu-south-1": 0.0, + "eu-south-2": 61.1, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 64.133, - "sa-east-1": 87.1, + "sa-east-1": 0.0, "us-east-1": 54.6, - "us-east-2": 54.6, + "us-east-2": 0.0, "us-gov-east-1": 65.433, "us-gov-west-1": 65.433, - "us-west-2": 54.6 + "us-west-2": 0.0 }, "u-9tb1": { "ap-northeast-1": 60.567, @@ -47698,34 +50768,57 @@ "ap-south-2": 83.98, "ap-southeast-1": 60.567, "eu-central-1": 60.567, + "eu-north-1": 91.65, "eu-west-1": 56.531, + "eu-west-2": 96.2, "sa-east-1": 98.424, "us-east-1": 50.474, + "us-east-2": 81.9, "us-gov-east-1": 60.567, "us-gov-west-1": 60.567, "us-west-2": 50.474 }, "u-9tb1.metal": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-2": 0.0, - "us-gov-east-1": 0.0 + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "u-9tb1.112xlarge": { "ap-northeast-1": 98.8, + "ap-northeast-2": 98.8, "ap-south-2": 83.98043, "ap-southeast-1": 98.8, - "eu-central-1": 98.8, - "eu-west-1": 91.65, - "us-east-1": 81.9, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 96.2, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 98.15, + "us-gov-west-1": 0.0, "us-west-2": 81.9 }, "u-12tb1": { "ap-northeast-1": 80.754, + "ap-northeast-2": 131.733, + "ap-northeast-3": 131.733, "ap-south-1": 69.313, "ap-southeast-1": 80.754, "ap-southeast-2": 80.754, "eu-central-1": 80.754, + "eu-south-1": 128.31, "eu-west-1": 75.37, "sa-east-1": 174.2, "us-east-1": 67.294, @@ -47735,17 +50828,35 @@ "us-west-2": 67.294 }, "u-12tb1.metal": { - "ap-south-1": 0.0 + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "u-12tb1.112xlarge": { "ap-northeast-1": 131.733, + "ap-northeast-2": 131.733, + "ap-northeast-3": 0.0, "ap-south-1": 112.667, - "ap-southeast-1": 131.733, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 131.733, + "eu-south-1": 128.31, "eu-west-1": 122.2, "sa-east-1": 174.2, "us-east-1": 109.2, - "us-east-2": 109.2, + "us-east-2": 0.0, "us-gov-east-1": 130.867, "us-gov-west-1": 130.867, "us-west-2": 109.2 @@ -47755,9 +50866,14 @@ "us-east-1": 52.632, "us-west-2": 163.8 }, + "u-18tb1.metal": { + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-west-2": 0.0 + }, "u-18tb1.112xlarge": { "eu-west-1": 183.3, - "us-east-1": 163.8, + "us-east-1": 0.0, "us-west-2": 163.8 }, "u-24tb1": { @@ -47768,6 +50884,10 @@ "us-west-2": 70.176 }, "u-24tb1.metal": { + "ap-northeast-2": 0.0, + "us-east-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "u-24tb1.112xlarge": { @@ -47786,18 +50906,18 @@ "vt1.3xlarge": { "ap-northeast-1": 0.90006, "eu-west-1": 0.73412, - "us-east-1": 0.65, + "us-east-1": 0.715, "us-west-2": 0.0 }, "vt1.6xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.80012, "eu-west-1": 1.61506, "us-east-1": 1.3, - "us-west-2": 0.0 + "us-west-2": 1.43 }, "vt1.24xlarge": { - "ap-northeast-1": 0.0, - "eu-west-1": 6.46024, + "ap-northeast-1": 7.20047, + "eu-west-1": 0.0, "us-east-1": 5.2, "us-west-2": 0.0 }, @@ -47823,20 +50943,20 @@ "us-west-2": 14.672 }, "x1.16xlarge": { - "af-south-1": 9.524, + "af-south-1": 10.476, "ap-east-1": 11.702, "ap-northeast-1": 9.671, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 9.671, "ap-south-1": 6.881, "ap-southeast-1": 10.638, - "ap-southeast-2": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 10.271, + "ap-southeast-2": 10.638, + "ca-central-1": 7.336, + "eu-central-1": 9.337, "eu-west-1": 8.003, "eu-west-2": 9.243, "eu-west-3": 8.403, - "sa-east-1": 13.005, + "sa-east-1": 0.0, "us-east-1": 7.336, "us-east-2": 7.336, "us-gov-east-1": 8.003, @@ -47850,18 +50970,18 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 13.762, - "ap-southeast-1": 19.341, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 18.674, + "eu-central-1": 0.0, "eu-west-1": 16.006, "eu-west-2": 16.806, "eu-west-3": 16.806, "sa-east-1": 26.01, "us-east-1": 13.338, "us-east-2": 13.338, - "us-gov-east-1": 16.006, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 16.006, "us-west-2": 0.0 }, "x1e": { @@ -47882,39 +51002,39 @@ }, "x1e.xlarge": { "af-south-1": 1.309, - "ap-northeast-1": 1.209, + "ap-northeast-1": 1.33, "ap-northeast-2": 1.33, "ap-northeast-3": 0.0, "ap-south-1": 0.86, "ap-southeast-1": 1.209, - "ap-southeast-2": 1.209, + "ap-southeast-2": 1.33, "ca-central-1": 1.008, "eu-central-1": 1.284, - "eu-west-1": 0.0, + "eu-west-1": 1.0, "sa-east-1": 1.626, "us-east-1": 0.917, - "us-east-2": 0.917, + "us-east-2": 0.0, "us-gov-east-1": 1.0, "us-gov-west-1": 1.0, "us-west-2": 0.917 }, "x1e.2xlarge": { - "af-south-1": 2.38, - "ap-northeast-1": 0.0, - "ap-northeast-2": 2.66, + "af-south-1": 2.618, + "ap-northeast-1": 2.418, + "ap-northeast-2": 2.418, "ap-northeast-3": 0.0, "ap-south-1": 1.72, - "ap-southeast-1": 2.418, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.418, "ca-central-1": 2.017, "eu-central-1": 0.0, "eu-west-1": 2.0, "sa-east-1": 3.251, "us-east-1": 1.835, - "us-east-2": 1.668, - "us-gov-east-1": 2.2, + "us-east-2": 1.835, + "us-gov-east-1": 2.0, "us-gov-west-1": 2.2, - "us-west-2": 1.668 + "us-west-2": 0.0 }, "x1e.4xlarge": { "af-south-1": 5.236, @@ -47924,29 +51044,29 @@ "ap-south-1": 3.44, "ap-southeast-1": 4.836, "ap-southeast-2": 0.0, - "ca-central-1": 4.034, + "ca-central-1": 3.667, "eu-central-1": 4.668, "eu-west-1": 0.0, "sa-east-1": 6.502, "us-east-1": 0.0, - "us-east-2": 3.67, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.0, + "us-gov-west-1": 4.4, "us-west-2": 0.0 }, "x1e.8xlarge": { "af-south-1": 10.472, - "ap-northeast-1": 0.0, + "ap-northeast-1": 9.672, "ap-northeast-2": 10.639, "ap-northeast-3": 0.0, "ap-south-1": 6.88, - "ap-southeast-1": 9.672, + "ap-southeast-1": 10.639, "ap-southeast-2": 10.639, "ca-central-1": 8.068, - "eu-central-1": 0.0, + "eu-central-1": 9.336, "eu-west-1": 8.8, "sa-east-1": 13.005, - "us-east-1": 7.339, + "us-east-1": 0.0, "us-east-2": 7.339, "us-gov-east-1": 8.0, "us-gov-west-1": 8.8, @@ -47954,21 +51074,21 @@ }, "x1e.16xlarge": { "af-south-1": 20.944, - "ap-northeast-1": 19.344, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 13.76, "ap-southeast-1": 21.278, - "ap-southeast-2": 19.344, - "ca-central-1": 14.669, + "ap-southeast-2": 0.0, + "ca-central-1": 16.136, "eu-central-1": 20.539, "eu-west-1": 16.0, "sa-east-1": 26.01, "us-east-1": 13.344, - "us-east-2": 13.344, + "us-east-2": 14.678, "us-gov-east-1": 17.6, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 13.344 }, "x1e.32xlarge": { "af-south-1": 38.08, @@ -47986,7 +51106,7 @@ "us-east-2": 26.688, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 26.688 + "us-west-2": 0.0 }, "x2gd": { "eu-west-1": 7.04, @@ -47995,60 +51115,61 @@ "us-west-2": 5.878 }, "x2gd.medium": { - "eu-west-1": 0.1, + "eu-west-1": 0.0, "us-east-1": 0.0835, "us-east-2": 0.0919, "us-west-2": 0.0 }, "x2gd.large": { - "eu-west-1": 0.2, - "us-east-1": 0.1837, + "eu-west-1": 0.0, + "us-east-1": 0.167, "us-east-2": 0.1837, - "us-west-2": 0.0 + "us-west-2": 0.1837 }, "x2gd.xlarge": { "eu-west-1": 0.44, "us-east-1": 0.3674, "us-east-2": 0.3674, - "us-west-2": 0.3674 + "us-west-2": 0.0 }, "x2gd.metal": { - "eu-west-1": 0.0, - "us-east-1": 5.8784, + "eu-west-1": 7.04, + "us-east-1": 5.344, "us-east-2": 0.0, - "us-west-2": 5.8784 + "us-west-2": 5.344 }, "x2gd.2xlarge": { "eu-west-1": 0.88, "us-east-1": 0.668, "us-east-2": 0.668, - "us-west-2": 0.0 + "us-west-2": 0.7348 }, "x2gd.4xlarge": { - "eu-west-1": 0.0, - "us-east-1": 1.4696, + "eu-west-1": 1.76, + "us-east-1": 1.336, "us-east-2": 1.336, "us-west-2": 1.4696 }, "x2gd.8xlarge": { "eu-west-1": 3.52, "us-east-1": 2.672, - "us-east-2": 2.9392, + "us-east-2": 0.0, "us-west-2": 2.9392 }, "x2gd.12xlarge": { "eu-west-1": 4.8, - "us-east-1": 0.0, - "us-east-2": 4.4088, + "us-east-1": 4.008, + "us-east-2": 0.0, "us-west-2": 4.008 }, "x2gd.16xlarge": { - "eu-west-1": 6.4, - "us-east-1": 5.344, + "eu-west-1": 0.0, + "us-east-1": 5.8784, "us-east-2": 5.8784, "us-west-2": 5.344 }, "x2idn": { + "af-south-1": 20.953, "ap-northeast-1": 21.275, "ap-northeast-2": 21.275, "ap-northeast-3": 21.276, @@ -48076,73 +51197,76 @@ "us-west-2": 14.672 }, "x2idn.metal": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 19.341, + "af-south-1": 0.0, + "ap-northeast-1": 19.341, + "ap-northeast-2": 0.0, "ap-northeast-3": 19.342, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 19.341, "ap-southeast-2": 0.0, "ap-southeast-3": 19.341, "ca-central-1": 0.0, "eu-central-1": 18.674, - "eu-central-2": 20.5414, + "eu-central-2": 0.0, "eu-north-1": 15.211, - "eu-south-1": 16.801, + "eu-south-1": 0.0, "eu-south-2": 16.006, "eu-west-1": 0.0, "eu-west-2": 16.806, "eu-west-3": 0.0, "me-central-1": 0.0, "sa-east-1": 26.01, - "us-east-1": 0.0, + "us-east-1": 13.338, "us-east-2": 0.0, "us-gov-east-1": 16.006, - "us-gov-west-1": 0.0, + "us-gov-west-1": 16.006, "us-west-1": 0.0, - "us-west-2": 13.338 + "us-west-2": 0.0 }, "x2idn.16xlarge": { - "ap-northeast-1": 10.63755, - "ap-northeast-2": 10.63755, + "af-south-1": 0.0, + "ap-northeast-1": 9.6705, + "ap-northeast-2": 9.6705, "ap-northeast-3": 9.671, - "ap-south-1": 6.881, - "ap-south-2": 6.881, + "ap-south-1": 7.5691, + "ap-south-2": 7.5691, "ap-southeast-1": 10.63755, "ap-southeast-2": 10.63755, "ap-southeast-3": 10.63755, - "ca-central-1": 8.0696, - "eu-central-1": 9.337, - "eu-central-2": 11.29777, + "ca-central-1": 0.0, + "eu-central-1": 10.2707, + "eu-central-2": 0.0, "eu-north-1": 8.36605, - "eu-south-1": 9.24055, - "eu-south-2": 8.8033, - "eu-west-1": 0.0, + "eu-south-1": 8.4005, + "eu-south-2": 8.003, + "eu-west-1": 8.8033, "eu-west-2": 8.403, - "eu-west-3": 9.2433, - "me-central-1": 8.204, + "eu-west-3": 0.0, + "me-central-1": 9.0244, "sa-east-1": 14.3055, - "us-east-1": 0.0, - "us-east-2": 7.3359, + "us-east-1": 7.3359, + "us-east-2": 6.669, "us-gov-east-1": 8.8033, "us-gov-west-1": 8.003, - "us-west-1": 9.537, + "us-west-1": 8.67, "us-west-2": 0.0 }, "x2idn.24xlarge": { - "ap-northeast-1": 14.50575, + "af-south-1": 15.7146, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-1": 10.3215, + "ap-south-2": 11.35365, "ap-southeast-1": 15.95633, - "ap-southeast-2": 14.50575, + "ap-southeast-2": 15.95633, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 11.004, + "eu-central-1": 14.0055, "eu-central-2": 16.94666, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 12.60075, "eu-south-2": 12.0045, "eu-west-1": 12.0045, "eu-west-2": 13.86495, @@ -48150,19 +51274,20 @@ "me-central-1": 0.0, "sa-east-1": 21.45825, "us-east-1": 10.0035, - "us-east-2": 0.0, + "us-east-2": 10.0035, "us-gov-east-1": 13.20495, "us-gov-west-1": 13.20495, - "us-west-1": 13.005, - "us-west-2": 11.00385 + "us-west-1": 0.0, + "us-west-2": 10.0035 }, "x2idn.32xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 19.341, "ap-northeast-2": 0.0, "ap-northeast-3": 19.342, "ap-south-1": 13.762, - "ap-south-2": 13.762, - "ap-southeast-1": 19.341, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 19.341, "ap-southeast-3": 19.341, "ca-central-1": 0.0, @@ -48171,19 +51296,20 @@ "eu-north-1": 15.211, "eu-south-1": 16.801, "eu-south-2": 16.006, - "eu-west-1": 16.006, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 16.806, "eu-west-3": 0.0, "me-central-1": 16.408, "sa-east-1": 26.01, - "us-east-1": 13.338, + "us-east-1": 0.0, "us-east-2": 13.338, - "us-gov-east-1": 0.0, + "us-gov-east-1": 16.006, "us-gov-west-1": 0.0, - "us-west-1": 17.34, - "us-west-2": 13.338 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "x2iedn": { + "af-south-1": 41.906, "ap-northeast-1": 42.55, "ap-northeast-2": 42.55, "ap-northeast-3": 42.552, @@ -48196,6 +51322,7 @@ "eu-central-1": 41.083, "eu-north-1": 33.465, "eu-south-1": 36.961, + "eu-south-2": 35.213, "eu-west-1": 35.213, "eu-west-2": 36.973, "eu-west-3": 36.973, @@ -48208,11 +51335,12 @@ "us-west-2": 29.344 }, "x2iedn.xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.86013, - "ap-south-2": 0.94614, + "ap-south-1": 0.0, + "ap-south-2": 0.86013, "ap-southeast-1": 0.0, "ap-southeast-2": 1.32969, "ap-southeast-3": 0.0, @@ -48220,174 +51348,189 @@ "eu-central-1": 1.16713, "eu-north-1": 0.95072, "eu-south-1": 1.15503, + "eu-south-2": 1.00038, "eu-west-1": 1.00038, - "eu-west-2": 0.0, + "eu-west-2": 1.15541, "eu-west-3": 1.15541, - "sa-east-1": 0.0, + "sa-east-1": 1.78819, "us-east-1": 0.83363, - "us-east-2": 0.0, - "us-gov-east-1": 1.00038, + "us-east-2": 0.83363, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 1.19213, + "us-west-1": 1.08375, "us-west-2": 0.91699 }, "x2iedn.metal": { + "af-south-1": 0.0, "ap-northeast-1": 38.682, "ap-northeast-2": 0.0, - "ap-northeast-3": 38.684, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 27.524, "ap-south-2": 27.524, - "ap-southeast-1": 38.682, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 38.682, "ap-southeast-3": 38.682, "ca-central-1": 29.344, "eu-central-1": 0.0, "eu-north-1": 30.423, "eu-south-1": 33.601, + "eu-south-2": 32.012, "eu-west-1": 0.0, "eu-west-2": 33.612, "eu-west-3": 33.612, - "sa-east-1": 0.0, + "sa-east-1": 52.02, "us-east-1": 0.0, "us-east-2": 26.676, - "us-gov-east-1": 0.0, + "us-gov-east-1": 32.012, "us-gov-west-1": 32.012, "us-west-1": 34.68, "us-west-2": 26.676 }, "x2iedn.2xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 2.65939, "ap-northeast-2": 2.41763, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 1.72025, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.65939, + "ap-southeast-2": 2.41763, "ap-southeast-3": 2.65939, - "ca-central-1": 2.0174, + "ca-central-1": 0.0, "eu-central-1": 2.33425, - "eu-north-1": 2.09158, + "eu-north-1": 0.0, "eu-south-1": 2.31007, + "eu-south-2": 0.0, "eu-west-1": 2.20083, "eu-west-2": 2.31083, - "eu-west-3": 2.10075, - "sa-east-1": 3.57638, + "eu-west-3": 2.31083, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 1.66725, + "us-east-2": 1.83398, "us-gov-east-1": 0.0, - "us-gov-west-1": 2.00075, + "us-gov-west-1": 0.0, "us-west-1": 2.1675, - "us-west-2": 0.0 + "us-west-2": 1.66725 }, "x2iedn.4xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 5.31878, "ap-northeast-2": 0.0, "ap-northeast-3": 5.31905, - "ap-south-1": 3.78455, + "ap-south-1": 0.0, "ap-south-2": 3.4405, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.83525, + "ap-southeast-2": 0.0, "ap-southeast-3": 4.83525, - "ca-central-1": 4.0348, + "ca-central-1": 3.668, "eu-central-1": 0.0, "eu-north-1": 3.80288, "eu-south-1": 0.0, + "eu-south-2": 4.0015, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 6.5025, "us-east-1": 0.0, - "us-east-2": 3.66795, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 3.3345 }, "x2iedn.8xlarge": { + "af-south-1": 9.524, "ap-northeast-1": 10.63755, - "ap-northeast-2": 0.0, + "ap-northeast-2": 9.6705, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 6.881, "ap-south-2": 7.5691, "ap-southeast-1": 0.0, - "ap-southeast-2": 10.63755, + "ap-southeast-2": 0.0, "ap-southeast-3": 10.63755, "ca-central-1": 0.0, - "eu-central-1": 9.337, + "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 8.40025, - "eu-west-1": 8.003, + "eu-south-1": 9.24028, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 8.403, "eu-west-3": 9.2433, "sa-east-1": 13.005, - "us-east-1": 7.3359, - "us-east-2": 6.669, + "us-east-1": 6.669, + "us-east-2": 0.0, "us-gov-east-1": 8.003, - "us-gov-west-1": 8.003, + "us-gov-west-1": 8.8033, "us-west-1": 9.537, "us-west-2": 7.3359 }, "x2iedn.16xlarge": { + "af-south-1": 20.9528, "ap-northeast-1": 19.341, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 13.762, - "ap-south-2": 0.0, + "ap-northeast-2": 21.2751, + "ap-northeast-3": 21.2762, + "ap-south-1": 0.0, + "ap-south-2": 15.1382, "ap-southeast-1": 0.0, "ap-southeast-2": 19.341, "ap-southeast-3": 19.341, "ca-central-1": 14.672, "eu-central-1": 20.5414, - "eu-north-1": 0.0, - "eu-south-1": 18.48055, - "eu-west-1": 17.6066, - "eu-west-2": 0.0, - "eu-west-3": 0.0, - "sa-east-1": 28.611, - "us-east-1": 14.6718, + "eu-north-1": 16.73265, + "eu-south-1": 16.8005, + "eu-south-2": 17.6066, + "eu-west-1": 16.006, + "eu-west-2": 16.806, + "eu-west-3": 18.4866, + "sa-east-1": 0.0, + "us-east-1": 13.338, "us-east-2": 13.338, "us-gov-east-1": 17.6066, - "us-gov-west-1": 17.6066, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "x2iedn.24xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 31.91265, - "ap-northeast-2": 31.91265, - "ap-northeast-3": 0.0, + "ap-northeast-2": 29.0115, + "ap-northeast-3": 31.9143, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 22.7073, + "ap-southeast-1": 31.91265, "ap-southeast-2": 29.0115, - "ap-southeast-3": 29.0115, - "ca-central-1": 22.008, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, "eu-central-1": 28.011, - "eu-north-1": 22.81725, - "eu-south-1": 0.0, - "eu-west-1": 24.009, + "eu-north-1": 0.0, + "eu-south-1": 27.72083, + "eu-south-2": 26.4099, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 25.209, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "eu-west-3": 27.7299, + "sa-east-1": 42.9165, + "us-east-1": 22.0077, "us-east-2": 20.007, "us-gov-east-1": 26.4099, - "us-gov-west-1": 24.009, - "us-west-1": 26.01, + "us-gov-west-1": 26.4099, + "us-west-1": 0.0, "us-west-2": 20.007 }, "x2iedn.32xlarge": { + "af-south-1": 38.096, "ap-northeast-1": 38.682, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 38.682, + "ap-northeast-3": 38.684, "ap-south-1": 27.524, "ap-south-2": 27.524, - "ap-southeast-1": 0.0, + "ap-southeast-1": 38.682, "ap-southeast-2": 38.682, - "ap-southeast-3": 38.682, + "ap-southeast-3": 0.0, "ca-central-1": 29.344, "eu-central-1": 37.348, "eu-north-1": 30.423, - "eu-south-1": 33.601, + "eu-south-1": 0.0, + "eu-south-2": 32.012, "eu-west-1": 32.012, "eu-west-2": 33.612, "eu-west-3": 0.0, @@ -48406,21 +51549,21 @@ "us-west-2": 11.009 }, "x2iezn.metal": { - "ap-northeast-1": 14.508, + "ap-northeast-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-west-2": 10.008 }, "x2iezn.2xlarge": { - "ap-northeast-1": 2.418, + "ap-northeast-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 1.668, "us-west-2": 1.8348 }, "x2iezn.4xlarge": { - "ap-northeast-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-northeast-1": 5.3196, + "eu-west-1": 4.0, + "us-east-1": 3.336, "us-west-2": 3.336 }, "x2iezn.6xlarge": { @@ -48430,14 +51573,14 @@ "us-west-2": 5.004 }, "x2iezn.8xlarge": { - "ap-northeast-1": 10.6392, - "eu-west-1": 8.0, + "ap-northeast-1": 9.672, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-west-2": 7.3392 }, "x2iezn.12xlarge": { "ap-northeast-1": 14.508, - "eu-west-1": 12.0, + "eu-west-1": 0.0, "us-east-1": 10.008, "us-west-2": 10.008 }, @@ -48457,36 +51600,36 @@ }, "z1d.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.225, + "ap-south-1": 0.196, "ap-southeast-1": 0.24, "ap-southeast-2": 0.24, "eu-central-1": 0.225, "eu-west-1": 0.0, "eu-west-2": 0.233, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 0.197, + "us-east-2": 0.197, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.186 }, "z1d.xlarge": { - "ap-northeast-1": 0.482, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.454, + "ap-northeast-2": 0.477, "ap-south-1": 0.392, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.452, + "ap-southeast-2": 0.0, "eu-central-1": 0.477, - "eu-west-1": 0.416, + "eu-west-1": 0.0, "eu-west-2": 0.466, - "us-east-1": 0.394, - "us-east-2": 0.0, - "us-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.372, + "us-west-1": 0.422, "us-west-2": 0.372 }, "z1d.metal": { "ap-northeast-1": 0.0, "ap-northeast-2": 5.4, - "ap-south-1": 4.704, + "ap-south-1": 0.0, "ap-southeast-1": 5.424, "ap-southeast-2": 5.424, "eu-central-1": 5.4, @@ -48494,86 +51637,86 @@ "eu-west-2": 5.273, "us-east-1": 0.0, "us-east-2": 4.464, - "us-west-1": 5.064, + "us-west-1": 0.0, "us-west-2": 4.464 }, "z1d.2xlarge": { "ap-northeast-1": 0.908, "ap-northeast-2": 0.954, "ap-south-1": 0.831, - "ap-southeast-1": 0.958, - "ap-southeast-2": 0.904, + "ap-southeast-1": 0.904, + "ap-southeast-2": 0.959, "eu-central-1": 0.955, "eu-west-1": 0.832, - "eu-west-2": 0.932, + "eu-west-2": 0.879, "us-east-1": 0.0, "us-east-2": 0.744, - "us-west-1": 0.0, + "us-west-1": 0.844, "us-west-2": 0.789 }, "z1d.3xlarge": { "ap-northeast-1": 1.445, "ap-northeast-2": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 1.247, "ap-southeast-1": 0.0, "ap-southeast-2": 1.356, - "eu-central-1": 0.0, + "eu-central-1": 1.35, "eu-west-1": 1.324, - "eu-west-2": 1.318, + "eu-west-2": 0.0, "us-east-1": 1.116, - "us-east-2": 0.0, - "us-west-1": 1.343, + "us-east-2": 1.183, + "us-west-1": 1.266, "us-west-2": 0.0 }, "z1d.6xlarge": { "ap-northeast-1": 2.724, - "ap-northeast-2": 0.0, + "ap-northeast-2": 2.7, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.876, + "ap-southeast-2": 2.712, "eu-central-1": 0.0, "eu-west-1": 2.496, - "eu-west-2": 2.636, + "eu-west-2": 0.0, "us-east-1": 2.232, - "us-east-2": 2.232, + "us-east-2": 2.366, "us-west-1": 0.0, "us-west-2": 2.366 }, "z1d.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.448, "ap-northeast-2": 5.4, - "ap-south-1": 0.0, - "ap-southeast-1": 5.424, + "ap-south-1": 4.704, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 5.4, + "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 5.273, "us-east-1": 4.464, "us-east-2": 4.464, "us-west-1": 5.064, - "us-west-2": 4.464 + "us-west-2": 0.0 } }, "ec2_rhel": { "a1.medium": { "ap-northeast-1": 0.0943, - "ap-south-1": 0.0855, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0933, + "ap-southeast-2": 0.0, "eu-central-1": 0.0891, "eu-west-1": 0.0, "us-east-1": 0.0855, "us-east-2": 0.0855, - "us-west-2": 0.0855 + "us-west-2": 0.0 }, "a1.large": { - "ap-northeast-1": 0.1286, - "ap-south-1": 0.0, + "ap-northeast-1": 0.1242, + "ap-south-1": 0.111, "ap-southeast-1": 0.1188, "ap-southeast-2": 0.1266, - "eu-central-1": 0.0, + "eu-central-1": 0.122, "eu-west-1": 0.0, - "us-east-1": 0.111, + "us-east-1": 0.1141, "us-east-2": 0.1141, "us-west-2": 0.111 }, @@ -48583,17 +51726,17 @@ "ap-southeast-1": 0.1776, "ap-southeast-2": 0.2012, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.1752, "us-east-1": 0.1681, - "us-east-2": 0.162, + "us-east-2": 0.0, "us-west-2": 0.0 }, "a1.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.644, "ap-south-1": 0.538, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.596, + "eu-central-1": 0.0, "eu-west-1": 0.591, "us-east-1": 0.0, "us-east-2": 0.538, @@ -48602,24 +51745,24 @@ "a1.2xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.334, - "ap-southeast-1": 0.3652, + "ap-southeast-1": 0.3801, "ap-southeast-2": 0.4125, "eu-central-1": 0.3628, "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.334, + "us-east-1": 0.334, + "us-east-2": 0.0, "us-west-2": 0.0 }, "a1.4xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.6004, - "ap-southeast-2": 0.6628, + "ap-southeast-2": 0.0, "eu-central-1": 0.5956, - "eu-west-1": 0.5908, + "eu-west-1": 0.0, "us-east-1": 0.538, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.538 }, "c1.medium": { "ap-northeast-1": 0.218, @@ -48644,23 +51787,23 @@ "us-west-2": 0.65 }, "c3.large": { - "ap-northeast-1": 0.188, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.205, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.192, - "eu-central-1": 0.189, - "eu-west-1": 0.0, - "sa-east-1": 0.223, - "us-east-1": 0.165, - "us-gov-west-1": 0.186, - "us-west-1": 0.192, + "eu-central-1": 0.207, + "eu-west-1": 0.192, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-gov-west-1": 0.204, + "us-west-1": 0.18, "us-west-2": 0.176 }, "c3.xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.29, - "ap-southeast-1": 0.325, - "ap-southeast-2": 0.352, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 0.318, "eu-west-1": 0.0, "sa-east-1": 0.0, @@ -48671,27 +51814,27 @@ }, "c3.2xlarge": { "ap-northeast-1": 0.692, - "ap-northeast-2": 0.63589, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.712, "ap-southeast-2": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.608, + "eu-west-1": 0.656, "sa-east-1": 0.845, - "us-east-1": 0.0, - "us-gov-west-1": 0.634, - "us-west-1": 0.608, - "us-west-2": 0.55 + "us-east-1": 0.55, + "us-gov-west-1": 0.697, + "us-west-1": 0.0, + "us-west-2": 0.592 }, "c3.4xlarge": { - "ap-northeast-1": 1.253, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 1.162, - "eu-west-1": 1.086, - "sa-east-1": 1.43, - "us-east-1": 1.054, - "us-gov-west-1": 0.0, + "eu-west-1": 1.182, + "sa-east-1": 1.56, + "us-east-1": 0.0, + "us-gov-west-1": 1.138, "us-west-1": 0.0, "us-west-2": 1.054 }, @@ -48699,13 +51842,13 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 2.247, - "ap-southeast-2": 2.247, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 2.042, "sa-east-1": 2.73, - "us-east-1": 0.0, - "us-gov-west-1": 2.146, - "us-west-1": 0.0, + "us-east-1": 1.81, + "us-gov-west-1": 0.0, + "us-west-1": 2.042, "us-west-2": 0.0 }, "c4.large": { @@ -48715,31 +51858,31 @@ "ap-south-1": 0.17, "ap-southeast-1": 0.175, "ap-southeast-2": 0.0, - "ca-central-1": 0.181, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.184, - "eu-west-2": 0.179, + "eu-west-2": 0.191, "sa-east-1": 0.0, "us-east-1": 0.16, "us-east-2": 0.16, "us-gov-west-1": 0.0, - "us-west-1": 0.196, + "us-west-1": 0.184, "us-west-2": 0.16 }, "c4.xlarge": { - "ap-northeast-1": 0.337, + "ap-northeast-1": 0.312, "ap-northeast-2": 0.287, "ap-northeast-3": 0.0, - "ap-south-1": 0.28, - "ap-southeast-1": 0.314, - "ap-southeast-2": 0.0, - "ca-central-1": 0.3, - "eu-central-1": 0.287, + "ap-south-1": 0.0, + "ap-southeast-1": 0.291, + "ap-southeast-2": 0.321, + "ca-central-1": 0.278, + "eu-central-1": 0.0, "eu-west-1": 0.309, "eu-west-2": 0.297, "sa-east-1": 0.0, - "us-east-1": 0.259, - "us-east-2": 0.279, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.323, "us-west-1": 0.309, "us-west-2": 0.0 @@ -48748,9 +51891,9 @@ "ap-northeast-1": 0.634, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.53, + "ap-south-1": 0.0, "ap-southeast-1": 0.638, - "ap-southeast-2": 0.652, + "ap-southeast-2": 0.0, "ca-central-1": 0.612, "eu-central-1": 0.0, "eu-west-1": 0.0, @@ -48763,128 +51906,131 @@ "us-west-2": 0.0 }, "c4.4xlarge": { - "ap-northeast-1": 1.239, + "ap-northeast-1": 1.138, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.239, - "ap-south-1": 1.01, + "ap-northeast-3": 1.138, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 1.276, "ca-central-1": 1.094, "eu-central-1": 1.13, "eu-west-1": 1.035, "eu-west-2": 1.08, - "sa-east-1": 1.365, - "us-east-1": 0.0, - "us-east-2": 1.006, + "sa-east-1": 1.489, + "us-east-1": 0.926, + "us-east-2": 0.926, "us-gov-west-1": 1.184, "us-west-1": 1.127, "us-west-2": 0.926 }, "c4.8xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.945, "ap-northeast-3": 2.146, "ap-south-1": 1.73, - "ap-southeast-1": 1.978, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.215, "ca-central-1": 0.0, "eu-central-1": 1.947, - "eu-west-1": 0.0, + "eu-west-1": 1.941, "eu-west-2": 2.032, "sa-east-1": 2.6, - "us-east-1": 0.0, + "us-east-1": 1.721, "us-east-2": 1.721, "us-gov-west-1": 2.045, "us-west-1": 2.123, - "us-west-2": 1.721 + "us-west-2": 0.0 }, "c5.large": { "af-south-1": 0.174, "ap-east-1": 0.175, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.173, + "ap-northeast-3": 0.167, "ap-south-1": 0.15, - "ap-south-2": 0.145, - "ap-southeast-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.158, "ap-southeast-2": 0.0, "ap-southeast-3": 0.158, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.159, + "ca-west-1": 0.153, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 0.151, "eu-south-1": 0.0, "eu-south-2": 0.156, "eu-west-1": 0.156, "eu-west-2": 0.168, "eu-west-3": 0.0, - "il-central-1": 0.161, + "il-central-1": 0.167, "me-central-1": 0.0, "me-south-1": 0.166, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.15, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.168, "us-gov-west-1": 0.168, "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.168 + "us-west-2": 0.145, + "us-west-2-lax-1": 0.162 }, "c5.xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.274, - "ap-northeast-2": 0.264, + "ap-northeast-2": 0.252, "ap-northeast-3": 0.287, "ap-south-1": 0.0, "ap-south-2": 0.23, "ap-southeast-1": 0.256, "ap-southeast-2": 0.282, "ap-southeast-3": 0.268, - "ap-southeast-4": 0.282, + "ap-southeast-4": 0.295, "ca-central-1": 0.246, + "ca-west-1": 0.0, "eu-central-1": 0.267, "eu-central-2": 0.286, - "eu-north-1": 0.254, + "eu-north-1": 0.242, "eu-south-1": 0.262, - "eu-south-2": 0.252, + "eu-south-2": 0.264, "eu-west-1": 0.265, "eu-west-2": 0.275, - "eu-west-3": 0.262, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.274, "me-central-1": 0.284, "me-south-1": 0.271, "sa-east-1": 0.322, - "us-east-1": 0.24, + "us-east-1": 0.23, "us-east-2": 0.0, "us-gov-east-1": 0.276, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.24, + "us-west-2": 0.0, "us-west-2-lax-1": 0.264 }, "c5.metal": { - "af-south-1": 5.602, + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 5.266, "ap-northeast-2": 4.738, "ap-northeast-3": 5.266, - "ap-south-1": 0.0, - "ap-south-2": 4.21, + "ap-south-1": 4.21, + "ap-south-2": 0.0, "ap-southeast-1": 4.834, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.458, "ap-southeast-3": 4.834, "ap-southeast-4": 5.458, "ca-central-1": 0.0, + "ca-west-1": 4.594, "eu-central-1": 4.786, - "eu-central-2": 5.252, + "eu-central-2": 0.0, "eu-north-1": 4.498, "eu-south-1": 4.978, "eu-south-2": 4.738, "eu-west-1": 4.738, "eu-west-2": 4.978, - "eu-west-3": 0.0, + "eu-west-3": 4.978, "il-central-1": 0.0, "me-central-1": 5.199, "me-south-1": 5.199, @@ -48893,25 +52039,26 @@ "us-east-2": 4.21, "us-gov-east-1": 5.026, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 5.218, "us-west-2": 4.21, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 5.026 }, "c5.2xlarge": { - "af-south-1": 0.586, + "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.587, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.539, - "ap-northeast-3": 0.558, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.47, "ap-southeast-1": 0.547, "ap-southeast-2": 0.574, "ap-southeast-3": 0.0, "ap-southeast-4": 0.601, - "ca-central-1": 0.502, + "ca-central-1": 0.0, + "ca-west-1": 0.524, "eu-central-1": 0.518, - "eu-central-2": 0.582, + "eu-central-2": 0.557, "eu-north-1": 0.518, "eu-south-1": 0.534, "eu-south-2": 0.0, @@ -48921,36 +52068,37 @@ "il-central-1": 0.533, "me-central-1": 0.552, "me-south-1": 0.0, - "sa-east-1": 0.69, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.538, "us-west-1": 0.0, - "us-west-2": 0.49, - "us-west-2-lax-1": 0.0 + "us-west-2": 0.47, + "us-west-2-lax-1": 0.538 }, "c5.4xlarge": { "af-south-1": 1.042, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.948, - "ap-northeast-3": 1.037, - "ap-south-1": 0.854, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 0.851, "ap-southeast-1": 0.914, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.018, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.874, + "ca-west-1": 0.874, "eu-central-1": 0.0, "eu-central-2": 0.984, - "eu-north-1": 0.0, + "eu-north-1": 0.858, "eu-south-1": 0.0, "eu-south-2": 0.944, - "eu-west-1": 0.948, + "eu-west-1": 0.0, "eu-west-2": 0.991, - "eu-west-3": 0.0, + "eu-west-3": 0.938, "il-central-1": 0.0, "me-central-1": 1.025, "me-south-1": 0.0, @@ -48959,38 +52107,39 @@ "us-east-2": 0.0, "us-gov-east-1": 0.995, "us-gov-west-1": 0.0, - "us-west-1": 0.978, + "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 0.995 + "us-west-2-lax-1": 0.946 }, "c5.9xlarge": { "af-south-1": 2.182, "ap-east-1": 2.074, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.858, "ap-northeast-3": 2.056, "ap-south-1": 1.66, "ap-south-2": 0.0, "ap-southeast-1": 2.007, - "ap-southeast-2": 2.249, - "ap-southeast-3": 1.894, + "ap-southeast-2": 2.128, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 1.876, "eu-central-2": 0.0, "eu-north-1": 1.768, - "eu-south-1": 2.057, - "eu-south-2": 1.962, - "eu-west-1": 0.0, - "eu-west-2": 2.067, + "eu-south-1": 1.948, + "eu-south-2": 1.858, + "eu-west-1": 1.858, + "eu-west-2": 0.0, "eu-west-3": 2.067, "il-central-1": 0.0, - "me-central-1": 2.031, + "me-central-1": 0.0, "me-south-1": 2.155, "sa-east-1": 2.648, - "us-east-1": 1.752, + "us-east-1": 1.66, "us-east-2": 0.0, - "us-gov-east-1": 2.076, + "us-gov-east-1": 1.966, "us-gov-west-1": 1.966, "us-west-1": 0.0, "us-west-2": 1.752, @@ -49002,39 +52151,40 @@ "ap-northeast-1": 2.874, "ap-northeast-2": 0.0, "ap-northeast-3": 2.852, - "ap-south-1": 0.0, + "ap-south-1": 2.301, "ap-south-2": 0.0, "ap-southeast-1": 2.482, - "ap-southeast-2": 2.794, + "ap-southeast-2": 2.956, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 2.362, + "ca-west-1": 2.362, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 2.691, "eu-north-1": 2.457, - "eu-south-1": 2.699, - "eu-south-2": 2.572, + "eu-south-1": 0.0, + "eu-south-2": 2.434, "eu-west-1": 2.585, - "eu-west-2": 2.713, + "eu-west-2": 2.554, "eu-west-3": 2.712, "il-central-1": 0.0, "me-central-1": 2.664, - "me-south-1": 2.816, - "sa-east-1": 3.274, - "us-east-1": 2.292, + "me-south-1": 2.664, + "sa-east-1": 0.0, + "us-east-1": 2.17, "us-east-2": 2.17, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.725, + "us-gov-east-1": 2.725, + "us-gov-west-1": 2.578, "us-west-1": 0.0, "us-west-2": 2.17, "us-west-2-lax-1": 2.578 }, "c5.18xlarge": { "af-south-1": 4.234, - "ap-east-1": 0.0, + "ap-east-1": 4.018, "ap-northeast-1": 3.982, "ap-northeast-2": 3.586, - "ap-northeast-3": 3.982, + "ap-northeast-3": 0.0, "ap-south-1": 3.19, "ap-south-2": 3.19, "ap-southeast-1": 3.658, @@ -49042,54 +52192,56 @@ "ap-southeast-3": 3.658, "ap-southeast-4": 4.126, "ca-central-1": 3.478, + "ca-west-1": 0.0, "eu-central-1": 3.622, "eu-central-2": 3.971, "eu-north-1": 0.0, "eu-south-1": 3.766, - "eu-south-2": 0.0, + "eu-south-2": 3.586, "eu-west-1": 3.586, - "eu-west-2": 0.0, + "eu-west-2": 3.766, "eu-west-3": 3.766, "il-central-1": 3.759, - "me-central-1": 0.0, + "me-central-1": 3.932, "me-south-1": 3.932, "sa-east-1": 4.846, "us-east-1": 0.0, "us-east-2": 3.19, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.802, "us-gov-west-1": 3.802, "us-west-1": 3.946, "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "c5.24xlarge": { - "af-south-1": 5.93, + "af-south-1": 5.602, "ap-east-1": 5.314, - "ap-northeast-1": 0.0, - "ap-northeast-2": 4.738, + "ap-northeast-1": 5.266, + "ap-northeast-2": 5.036, "ap-northeast-3": 5.266, "ap-south-1": 4.473, "ap-south-2": 4.21, - "ap-southeast-1": 4.834, + "ap-southeast-1": 5.136, "ap-southeast-2": 0.0, "ap-southeast-3": 4.834, - "ap-southeast-4": 5.458, - "ca-central-1": 4.594, + "ap-southeast-4": 0.0, + "ca-central-1": 4.879, + "ca-west-1": 4.594, "eu-central-1": 4.786, "eu-central-2": 5.252, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 4.738, "eu-west-1": 0.0, - "eu-west-2": 5.296, + "eu-west-2": 4.978, "eu-west-3": 0.0, - "il-central-1": 4.968, + "il-central-1": 0.0, "me-central-1": 5.199, - "me-south-1": 5.199, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 5.321, + "us-east-1": 4.21, + "us-east-2": 4.21, + "us-gov-east-1": 5.026, "us-gov-west-1": 5.026, "us-west-1": 5.218, "us-west-2": 4.455, @@ -49392,7 +52544,7 @@ "us-west-2": 4.258 }, "c5d.large": { - "af-south-1": 0.19, + "af-south-1": 0.0, "ap-east-1": 0.183, "ap-northeast-1": 0.19, "ap-northeast-2": 0.0, @@ -49404,7 +52556,7 @@ "ap-southeast-3": 0.179, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.178, + "eu-central-1": 0.0, "eu-central-2": 0.182, "eu-north-1": 0.0, "eu-south-1": 0.174, @@ -49414,49 +52566,49 @@ "eu-west-3": 0.183, "il-central-1": 0.181, "me-central-1": 0.187, - "me-south-1": 0.18, + "me-south-1": 0.0, "sa-east-1": 0.219, - "us-east-1": 0.156, + "us-east-1": 0.0, "us-east-2": 0.156, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.183, - "us-west-1": 0.188, - "us-west-2": 0.156 + "us-gov-east-1": 0.183, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c5d.xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.306, + "af-south-1": 0.336, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.28, "ap-northeast-3": 0.304, - "ap-south-1": 0.271, + "ap-south-1": 0.258, "ap-south-2": 0.0, "ap-southeast-1": 0.298, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.312, + "ap-southeast-4": 0.327, "ca-central-1": 0.286, - "eu-central-1": 0.297, + "eu-central-1": 0.282, "eu-central-2": 0.0, - "eu-north-1": 0.282, + "eu-north-1": 0.268, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 0.303, - "me-central-1": 0.0, - "me-south-1": 0.3, - "sa-east-1": 0.0, - "us-east-1": 0.252, - "us-east-2": 0.264, + "eu-west-3": 0.305, + "il-central-1": 0.0, + "me-central-1": 0.3, + "me-south-1": 0.316, + "sa-east-1": 0.378, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.306, - "us-gov-west-1": 0.292, + "us-gov-west-1": 0.306, "us-west-1": 0.0, "us-west-2": 0.264 }, "c5d.metal": { - "af-south-1": 0.0, + "af-south-1": 6.37, "ap-northeast-1": 5.986, "ap-northeast-2": 5.41, "ap-northeast-3": 5.986, @@ -49470,12 +52622,12 @@ "eu-central-1": 5.458, "eu-central-2": 5.991, "eu-north-1": 5.122, - "eu-south-1": 0.0, + "eu-south-1": 5.602, "eu-south-2": 5.362, - "eu-west-1": 5.362, - "eu-west-2": 5.65, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 5.624, - "me-central-1": 0.0, + "me-central-1": 5.885, "sa-east-1": 7.282, "us-east-1": 4.738, "us-east-2": 4.738, @@ -49486,52 +52638,52 @@ "c5d.2xlarge": { "af-south-1": 0.681, "ap-east-1": 0.0, - "ap-northeast-1": 0.618, - "ap-northeast-2": 0.57, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.618, "ap-south-1": 0.526, - "ap-south-2": 0.0, + "ap-south-2": 0.55, "ap-southeast-1": 0.607, - "ap-southeast-2": 0.634, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.605, - "ap-southeast-4": 0.664, + "ap-southeast-4": 0.0, "ca-central-1": 0.581, - "eu-central-1": 0.574, + "eu-central-1": 0.0, "eu-central-2": 0.618, - "eu-north-1": 0.546, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.566, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.62, - "il-central-1": 0.588, + "eu-west-1": 0.595, + "eu-west-2": 0.62, + "eu-west-3": 0.59, + "il-central-1": 0.615, "me-central-1": 0.638, "me-south-1": 0.641, - "sa-east-1": 0.766, + "sa-east-1": 0.0, "us-east-1": 0.514, "us-east-2": 0.537, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.622, - "us-west-1": 0.641, + "us-gov-west-1": 0.0, + "us-west-1": 0.61, "us-west-2": 0.0 }, "c5d.4xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.17, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.172, "ap-northeast-2": 1.01, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 1.026, + "ap-southeast-1": 1.083, "ap-southeast-2": 1.2, "ap-southeast-3": 0.0, "ap-southeast-4": 1.138, - "ca-central-1": 0.978, + "ca-central-1": 0.0, "eu-central-1": 1.018, "eu-central-2": 1.107, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 1.097, "eu-south-2": 1.002, "eu-west-1": 1.002, "eu-west-2": 1.11, @@ -49540,51 +52692,51 @@ "me-central-1": 1.147, "me-south-1": 1.152, "sa-east-1": 1.403, - "us-east-1": 0.898, + "us-east-1": 0.944, "us-east-2": 0.898, "us-gov-east-1": 1.114, - "us-gov-west-1": 1.114, + "us-gov-west-1": 1.058, "us-west-1": 1.09, - "us-west-2": 0.0 + "us-west-2": 0.898 }, "c5d.9xlarge": { "af-south-1": 2.61, "ap-east-1": 2.485, - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.475, "ap-northeast-2": 2.237, "ap-northeast-3": 2.458, "ap-south-1": 1.912, - "ap-south-2": 0.0, + "ap-south-2": 2.019, "ap-southeast-1": 2.275, "ap-southeast-2": 2.398, - "ap-southeast-3": 2.267, + "ap-southeast-3": 2.146, "ap-southeast-4": 2.398, "ca-central-1": 0.0, - "eu-central-1": 2.26, - "eu-central-2": 0.0, - "eu-north-1": 2.002, - "eu-south-1": 2.182, + "eu-central-1": 0.0, + "eu-central-2": 2.328, + "eu-north-1": 2.125, + "eu-south-1": 0.0, "eu-south-2": 2.092, - "eu-west-1": 0.0, - "eu-west-2": 2.336, + "eu-west-1": 2.092, + "eu-west-2": 0.0, "eu-west-3": 2.335, - "il-central-1": 0.0, + "il-central-1": 2.314, "me-central-1": 0.0, - "me-south-1": 2.288, - "sa-east-1": 2.994, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 2.344, - "us-gov-west-1": 0.0, - "us-west-1": 2.431, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 1.858, + "us-east-2": 1.858, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.344, + "us-west-1": 0.0, "us-west-2": 1.858 }, "c5d.12xlarge": { "af-south-1": 3.25, "ap-northeast-1": 3.058, "ap-northeast-2": 2.77, - "ap-northeast-3": 3.058, - "ap-south-1": 2.649, + "ap-northeast-3": 3.234, + "ap-south-1": 2.506, "ap-south-2": 2.506, "ap-southeast-1": 2.818, "ap-southeast-2": 3.154, @@ -49597,9 +52749,9 @@ "eu-south-1": 3.03, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 2.89, - "il-central-1": 3.042, - "me-central-1": 0.0, + "eu-west-2": 3.071, + "il-central-1": 2.877, + "me-central-1": 3.18, "sa-east-1": 3.706, "us-east-1": 2.434, "us-east-2": 2.434, @@ -49610,8 +52762,8 @@ "c5d.18xlarge": { "af-south-1": 0.0, "ap-east-1": 4.558, - "ap-northeast-1": 4.522, - "ap-northeast-2": 4.09, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.522, "ap-south-1": 3.694, "ap-south-2": 0.0, @@ -49623,17 +52775,17 @@ "eu-central-1": 4.126, "eu-central-2": 4.526, "eu-north-1": 3.874, - "eu-south-1": 0.0, + "eu-south-1": 4.234, "eu-south-2": 4.054, - "eu-west-1": 0.0, + "eu-west-1": 4.054, "eu-west-2": 4.27, - "eu-west-3": 4.27, + "eu-west-3": 0.0, "il-central-1": 4.25, - "me-central-1": 4.446, + "me-central-1": 0.0, "me-south-1": 4.446, "sa-east-1": 5.494, - "us-east-1": 3.586, - "us-east-2": 3.586, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 4.306, "us-gov-west-1": 4.306, "us-west-1": 4.45, @@ -49644,10 +52796,10 @@ "ap-northeast-1": 5.986, "ap-northeast-2": 5.41, "ap-northeast-3": 0.0, - "ap-south-1": 5.167, - "ap-south-2": 5.167, + "ap-south-1": 4.882, + "ap-south-2": 4.882, "ap-southeast-1": 5.506, - "ap-southeast-2": 6.178, + "ap-southeast-2": 6.547, "ap-southeast-3": 5.506, "ap-southeast-4": 0.0, "ca-central-1": 0.0, @@ -49656,80 +52808,80 @@ "eu-north-1": 5.122, "eu-south-1": 5.602, "eu-south-2": 0.0, - "eu-west-1": 5.706, + "eu-west-1": 0.0, "eu-west-2": 5.65, "il-central-1": 0.0, "me-central-1": 0.0, "sa-east-1": 7.282, "us-east-1": 4.738, "us-east-2": 4.738, - "us-gov-west-1": 5.698, + "us-gov-west-1": 6.035, "us-west-1": 5.89, "us-west-2": 4.738 }, "c5n.large": { - "af-south-1": 0.205, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 0.203, + "ap-northeast-1": 0.196, "ap-northeast-2": 0.182, "ap-northeast-3": 0.196, - "ap-south-1": 0.0, - "ap-southeast-1": 0.192, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.191, + "ap-south-1": 0.168, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.21, + "ap-southeast-3": 0.184, "ca-central-1": 0.186, "eu-central-1": 0.191, - "eu-north-1": 0.176, + "eu-north-1": 0.183, "eu-south-1": 0.189, "eu-west-1": 0.19, - "eu-west-2": 0.188, + "eu-west-2": 0.0, "eu-west-3": 0.188, "me-south-1": 0.194, - "sa-east-1": 0.226, + "sa-east-1": 0.0, "us-east-1": 0.174, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.198, - "us-west-1": 0.195, + "us-gov-west-1": 0.19, + "us-west-1": 0.204, "us-west-2": 0.0 }, "c5n.xlarge": { - "af-south-1": 0.35, + "af-south-1": 0.368, "ap-east-1": 0.0, - "ap-northeast-1": 0.332, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.304, - "ap-northeast-3": 0.332, + "ap-northeast-3": 0.348, "ap-south-1": 0.276, "ap-southeast-1": 0.324, "ap-southeast-2": 0.0, "ap-southeast-3": 0.323, "ca-central-1": 0.311, - "eu-central-1": 0.306, - "eu-north-1": 0.306, + "eu-central-1": 0.322, + "eu-north-1": 0.292, "eu-south-1": 0.318, - "eu-west-1": 0.32, + "eu-west-1": 0.304, "eu-west-2": 0.316, "eu-west-3": 0.316, "me-south-1": 0.328, - "sa-east-1": 0.392, + "sa-east-1": 0.412, "us-east-1": 0.276, - "us-east-2": 0.0, - "us-gov-east-1": 0.32, + "us-east-2": 0.276, + "us-gov-east-1": 0.336, "us-gov-west-1": 0.336, - "us-west-1": 0.33, + "us-west-1": 0.348, "us-west-2": 0.0 }, "c5n.metal": { - "af-south-1": 5.357, + "af-south-1": 0.0, "ap-east-1": 5.278, "ap-northeast-1": 5.026, "ap-northeast-2": 4.522, - "ap-northeast-3": 5.026, + "ap-northeast-3": 0.0, "ap-south-1": 4.018, "ap-southeast-1": 4.594, "ap-southeast-2": 5.206, "ap-southeast-3": 0.0, - "ca-central-1": 4.378, + "ca-central-1": 0.0, "eu-central-1": 4.558, "eu-north-1": 4.306, "eu-south-1": 4.774, @@ -49742,86 +52894,86 @@ "us-east-2": 4.018, "us-gov-east-1": 4.81, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 4.99, "us-west-2": 4.018 }, "c5n.2xlarge": { - "af-south-1": 0.746, + "af-south-1": 0.711, "ap-east-1": 0.0, - "ap-northeast-1": 0.674, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.65, "ap-northeast-3": 0.707, - "ap-south-1": 0.562, + "ap-south-1": 0.0, "ap-southeast-1": 0.658, "ap-southeast-2": 0.728, "ap-southeast-3": 0.656, - "ca-central-1": 0.602, + "ca-central-1": 0.632, "eu-central-1": 0.654, "eu-north-1": 0.0, "eu-south-1": 0.646, "eu-west-1": 0.618, - "eu-west-2": 0.673, + "eu-west-2": 0.642, "eu-west-3": 0.642, "me-south-1": 0.666, - "sa-east-1": 0.0, - "us-east-1": 0.588, + "sa-east-1": 0.794, + "us-east-1": 0.562, "us-east-2": 0.588, "us-gov-east-1": 0.65, "us-gov-west-1": 0.681, "us-west-1": 0.67, - "us-west-2": 0.562 + "us-west-2": 0.0 }, "c5n.4xlarge": { "af-south-1": 1.361, - "ap-east-1": 0.0, - "ap-northeast-1": 1.292, + "ap-east-1": 1.343, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.169, - "ap-northeast-3": 1.283, - "ap-south-1": 0.994, + "ap-northeast-3": 0.0, + "ap-south-1": 1.05, "ap-southeast-1": 1.186, "ap-southeast-2": 0.0, "ap-southeast-3": 1.182, - "ca-central-1": 1.134, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 1.114, + "eu-north-1": 0.0, "eu-south-1": 1.162, - "eu-west-1": 1.17, - "eu-west-2": 1.154, + "eu-west-1": 1.106, + "eu-west-2": 1.215, "eu-west-3": 1.154, "me-south-1": 1.202, - "sa-east-1": 1.538, + "sa-east-1": 1.458, "us-east-1": 1.046, - "us-east-2": 0.994, - "us-gov-east-1": 0.0, - "us-gov-west-1": 1.233, + "us-east-2": 1.046, + "us-gov-east-1": 1.233, + "us-gov-west-1": 1.17, "us-west-1": 0.0, "us-west-2": 0.0 }, "c5n.9xlarge": { "af-south-1": 0.0, - "ap-east-1": 2.704, - "ap-northeast-1": 2.746, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.326, "ap-northeast-3": 2.578, - "ap-south-1": 2.199, - "ap-southeast-1": 2.505, + "ap-south-1": 0.0, + "ap-southeast-1": 2.362, "ap-southeast-2": 2.668, "ap-southeast-3": 2.496, "ca-central-1": 2.39, "eu-central-1": 2.489, - "eu-north-1": 2.218, + "eu-north-1": 2.343, "eu-south-1": 2.452, - "eu-west-1": 0.0, - "eu-west-2": 2.434, + "eu-west-1": 2.47, + "eu-west-2": 0.0, "eu-west-3": 2.434, "me-south-1": 2.542, "sa-east-1": 3.297, - "us-east-1": 2.074, + "us-east-1": 2.191, "us-east-2": 2.074, "us-gov-east-1": 2.47, "us-gov-west-1": 2.611, "us-west-1": 0.0, - "us-west-2": 2.191 + "us-west-2": 0.0 }, "c5n.18xlarge": { "af-south-1": 0.0, @@ -49829,20 +52981,20 @@ "ap-northeast-1": 5.026, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 4.018, - "ap-southeast-1": 4.594, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 4.378, "eu-central-1": 4.558, - "eu-north-1": 4.306, + "eu-north-1": 0.0, "eu-south-1": 4.774, "eu-west-1": 4.522, "eu-west-2": 4.738, "eu-west-3": 4.738, "me-south-1": 4.954, "sa-east-1": 6.106, - "us-east-1": 0.0, + "us-east-1": 4.018, "us-east-2": 4.018, "us-gov-east-1": 4.81, "us-gov-west-1": 0.0, @@ -49851,152 +53003,163 @@ }, "c6a.large": { "ap-northeast-1": 0.0, - "ap-south-1": 0.11143, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1482, "ap-southeast-2": 0.16989, - "eu-central-1": 0.0, + "ca-central-1": 0.1437, + "eu-central-1": 0.15603, "eu-west-1": 0.15029, "eu-west-2": 0.1509, - "sa-east-1": 0.1779, + "sa-east-1": 0.18969, "us-east-1": 0.14415, "us-east-2": 0.0, "us-west-1": 0.1554, - "us-west-2": 0.1365 + "us-west-2": 0.0 }, "c6a.xlarge": { "ap-northeast-1": 0.2526, - "ap-south-1": 0.1535, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.27978, + "ap-south-1": 0.16285, + "ap-southeast-1": 0.2364, + "ap-southeast-2": 0.0, + "ca-central-1": 0.2274, "eu-central-1": 0.25206, "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 0.31938, + "sa-east-1": 0.2958, "us-east-1": 0.213, - "us-east-2": 0.0, + "us-east-2": 0.2283, "us-west-1": 0.2508, - "us-west-2": 0.213 + "us-west-2": 0.0 }, "c6a.metal": { - "ap-northeast-1": 9.3748, - "ap-south-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 4.618, "ap-southeast-1": 8.5972, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 8.5108, "eu-west-1": 8.00968, "eu-west-2": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 7.474, "us-east-2": 7.474, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 7.474 }, "c6a.2xlarge": { "ap-northeast-1": 0.55372, "ap-south-1": 0.0, "ap-southeast-1": 0.4828, "ap-southeast-2": 0.5296, + "ca-central-1": 0.49828, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.4936, - "sa-east-1": 0.6016, + "sa-east-1": 0.64876, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 0.5116, "us-west-2": 0.0 }, "c6a.4xlarge": { - "ap-northeast-1": 0.9004, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-1": 0.97744, + "ap-south-1": 0.504, + "ap-southeast-1": 0.90616, "ap-southeast-2": 0.0, - "eu-central-1": 0.89824, + "ca-central-1": 0.86656, + "eu-central-1": 0.8284, "eu-west-1": 0.0, "eu-west-2": 0.8572, - "sa-east-1": 0.0, + "sa-east-1": 1.0732, "us-east-1": 0.8032, "us-east-2": 0.8032, "us-west-1": 0.8932, - "us-west-2": 0.8032 + "us-west-2": 0.0 }, "c6a.8xlarge": { - "ap-northeast-1": 1.82488, + "ap-northeast-1": 1.6708, "ap-south-1": 0.0, - "ap-southeast-1": 1.5412, + "ap-southeast-1": 1.68232, "ap-southeast-2": 1.7284, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 1.66648, "eu-west-1": 1.44328, - "eu-west-2": 1.72984, + "eu-west-2": 0.0, "sa-east-1": 2.0164, "us-east-1": 1.4764, - "us-east-2": 1.4764, + "us-east-2": 1.354, "us-west-1": 1.6564, - "us-west-2": 1.354 + "us-west-2": 1.4764 }, "c6a.12xlarge": { "ap-northeast-1": 2.4412, "ap-south-1": 1.252, - "ap-southeast-1": 2.45848, + "ap-southeast-1": 2.2468, "ap-southeast-2": 0.0, - "eu-central-1": 2.2252, + "ca-central-1": 2.33968, + "eu-central-1": 0.0, "eu-west-1": 2.09992, "eu-west-2": 0.0, "sa-east-1": 0.0, - "us-east-1": 1.966, + "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 2.64856, "us-west-2": 1.966 }, "c6a.16xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 1.7756, + "ap-northeast-1": 3.2116, + "ap-south-1": 1.626, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 2.8084, "eu-central-1": 2.9236, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 3.32968, "sa-east-1": 4.28008, "us-east-1": 2.578, - "us-east-2": 0.0, + "us-east-2": 2.8228, "us-west-1": 3.48808, "us-west-2": 0.0 }, "c6a.24xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.21464, "ap-south-1": 0.0, - "ap-southeast-1": 4.78696, - "ap-southeast-2": 5.40472, - "eu-central-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.9252, + "ca-central-1": 0.0, + "eu-central-1": 4.3204, "eu-west-1": 4.06984, "eu-west-2": 4.4932, "sa-east-1": 6.35512, - "us-east-1": 4.1692, + "us-east-1": 0.0, "us-east-2": 4.1692, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6a.32xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 6.2932, "ap-south-1": 3.122, - "ap-southeast-1": 5.7748, - "ap-southeast-2": 7.16296, + "ap-southeast-1": 0.0, + "ap-southeast-2": 6.5236, + "ca-central-1": 6.02248, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 5.90843, "eu-west-2": 6.52936, "sa-east-1": 7.6756, "us-east-1": 5.5156, - "us-east-2": 5.026, + "us-east-2": 0.0, "us-west-1": 6.84616, "us-west-2": 5.5156 }, "c6a.48xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 4.618, - "ap-southeast-1": 0.0, + "ap-southeast-1": 8.5972, "ap-southeast-2": 9.7204, + "ca-central-1": 8.1652, "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 8.8564, + "eu-west-2": 0.0, "sa-east-1": 11.4484, "us-east-1": 7.474, "us-east-2": 7.474, @@ -50004,48 +53167,52 @@ "us-west-2": 7.474 }, "c6g.medium": { - "ap-east-1": 0.0, + "af-south-1": 0.1083, + "ap-east-1": 0.1056, "ap-northeast-1": 0.0, "ap-northeast-2": 0.1008, "ap-northeast-3": 0.1055, "ap-south-1": 0.0826, "ap-south-2": 0.0826, "ap-southeast-1": 0.1016, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.1016, - "ap-southeast-4": 0.1071, + "ap-southeast-2": 0.1044, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0994, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.0987, - "eu-south-1": 0.1028, + "eu-south-1": 0.1004, "eu-south-2": 0.0, "eu-west-1": 0.0965, - "eu-west-2": 0.1004, + "eu-west-2": 0.0, "eu-west-3": 0.1005, "il-central-1": 0.1007, "me-central-1": 0.1001, "me-south-1": 0.1025, "sa-east-1": 0.0, - "us-east-1": 0.094, - "us-east-2": 0.0, + "us-east-1": 0.096, + "us-east-2": 0.096, "us-gov-east-1": 0.1008, "us-gov-west-1": 0.1008, - "us-west-1": 0.1024, - "us-west-2": 0.094 + "us-west-1": 0.1049, + "us-west-2": 0.096 }, "c6g.large": { - "ap-east-1": 0.1512, + "af-south-1": 0.1512, + "ap-east-1": 0.146, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.137, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.1511, + "ap-south-1": 0.1052, "ap-south-2": 0.1026, "ap-southeast-1": 0.1384, "ap-southeast-2": 0.0, "ap-southeast-3": 0.1384, - "ap-southeast-4": 0.1488, + "ap-southeast-4": 0.0, "ca-central-1": 0.1344, + "ca-west-1": 0.1344, "eu-central-1": 0.1423, "eu-central-2": 0.1454, "eu-north-1": 0.133, @@ -50060,59 +53227,63 @@ "sa-east-1": 0.1648, "us-east-1": 0.128, "us-east-2": 0.128, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.1465, + "us-gov-west-1": 0.1465, "us-west-1": 0.0, "us-west-2": 0.1321 }, "c6g.xlarge": { + "af-south-1": 0.2424, "ap-east-1": 0.232, "ap-northeast-1": 0.2312, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.232, - "ap-south-1": 0.1452, + "ap-northeast-3": 0.2422, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.2262, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.2483, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.2152, + "ca-central-1": 0.2177, + "ca-west-1": 0.2177, + "eu-central-1": 0.2245, "eu-central-2": 0.2307, "eu-north-1": 0.2148, "eu-south-1": 0.2313, "eu-south-2": 0.0, - "eu-west-1": 0.2151, - "eu-west-2": 0.0, + "eu-west-1": 0.2059, + "eu-west-2": 0.2313, "eu-west-3": 0.0, - "il-central-1": 0.2132, + "il-central-1": 0.0, "me-central-1": 0.2306, "me-south-1": 0.23, "sa-east-1": 0.0, "us-east-1": 0.2042, - "us-east-2": 0.0, - "us-gov-east-1": 0.233, + "us-east-2": 0.2042, + "us-gov-east-1": 0.2232, "us-gov-west-1": 0.2232, - "us-west-1": 0.2296, + "us-west-1": 0.2398, "us-west-2": 0.196 }, "c6g.metal": { + "af-south-1": 3.0484, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 2.7412, "ap-northeast-3": 2.882, - "ap-south-1": 0.0, - "ap-south-2": 1.4932, - "ap-southeast-1": 2.7893, + "ap-south-1": 1.575, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 2.6388, "ap-southeast-4": 0.0, - "ca-central-1": 2.6536, - "eu-central-1": 2.6132, + "ca-central-1": 2.5108, + "ca-west-1": 2.5108, + "eu-central-1": 2.7622, "eu-central-2": 2.8615, "eu-north-1": 2.466, "eu-south-1": 2.8705, - "eu-south-2": 0.0, + "eu-south-2": 2.4647, "eu-west-1": 2.4647, "eu-west-2": 2.8707, "eu-west-3": 0.0, @@ -50125,44 +53296,47 @@ "us-gov-east-1": 2.7412, "us-gov-west-1": 0.0, "us-west-1": 3.0064, - "us-west-2": 2.306 + "us-west-2": 0.0 }, "c6g.2xlarge": { + "af-south-1": 0.4948, "ap-east-1": 0.474, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.4944, - "ap-south-1": 0.3004, + "ap-south-1": 0.0, "ap-south-2": 0.3004, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.4436, "ap-southeast-2": 0.5065, - "ap-southeast-3": 0.4436, - "ap-southeast-4": 0.5065, - "ca-central-1": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.4852, + "ca-central-1": 0.4276, + "ca-west-1": 0.4276, "eu-central-1": 0.4404, - "eu-central-2": 0.0, - "eu-north-1": 0.422, + "eu-central-2": 0.4919, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.4218, "eu-west-1": 0.4218, - "eu-west-2": 0.4532, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.4364, "me-central-1": 0.451, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.402, + "me-south-1": 0.4904, + "sa-east-1": 0.5492, + "us-east-1": 0.4183, + "us-east-2": 0.0, "us-gov-east-1": 0.476, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.476, "us-west-1": 0.0, - "us-west-2": 0.402 + "us-west-2": 0.4183 }, "c6g.4xlarge": { + "af-south-1": 0.0, "ap-east-1": 0.8596, "ap-northeast-1": 0.8148, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.8588, "ap-south-1": 0.4912, "ap-south-2": 0.0, "ap-southeast-1": 0.0, @@ -50170,37 +53344,40 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.883, "ca-central-1": 0.7252, + "ca-west-1": 0.7252, "eu-central-1": 0.0, "eu-central-2": 0.8129, "eu-north-1": 0.714, - "eu-south-1": 0.0, + "eu-south-1": 0.8151, "eu-south-2": 0.7137, "eu-west-1": 0.0, "eu-west-2": 0.8152, "eu-west-3": 0.0, "il-central-1": 0.7428, "me-central-1": 0.8126, - "me-south-1": 0.0, - "sa-east-1": 1.0187, + "me-south-1": 0.8508, + "sa-east-1": 0.9684, "us-east-1": 0.0, "us-east-2": 0.7066, "us-gov-east-1": 0.0, "us-gov-west-1": 0.822, - "us-west-1": 0.0, + "us-west-1": 0.8491, "us-west-2": 0.7066 }, "c6g.8xlarge": { - "ap-east-1": 1.506, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 1.4996, "ap-northeast-2": 1.362, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-1": 0.8525, + "ap-south-2": 0.8525, "ap-southeast-1": 1.3844, "ap-southeast-2": 1.5508, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.3844, "ap-southeast-4": 0.0, - "ca-central-1": 1.3204, + "ca-central-1": 1.3918, + "ca-west-1": 1.3918, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 1.3684, @@ -50211,9 +53388,9 @@ "eu-west-3": 1.426, "il-central-1": 0.0, "me-central-1": 1.4951, - "me-south-1": 0.0, + "me-south-1": 1.49, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 1.2833, "us-east-2": 1.2833, "us-gov-east-1": 1.4356, "us-gov-west-1": 1.4356, @@ -50221,30 +53398,32 @@ "us-west-2": 1.2833 }, "c6g.12xlarge": { + "af-south-1": 2.4501, "ap-east-1": 0.0, "ap-northeast-1": 2.3077, "ap-northeast-2": 1.978, "ap-northeast-3": 2.194, - "ap-south-1": 1.1524, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 2.0116, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 2.0116, + "ap-southeast-3": 0.0, "ap-southeast-4": 2.2612, - "ca-central-1": 2.0227, - "eu-central-1": 1.9924, + "ca-central-1": 0.0, + "ca-west-1": 2.0227, + "eu-central-1": 2.1041, "eu-central-2": 2.1786, - "eu-north-1": 1.9876, - "eu-south-1": 2.1854, - "eu-south-2": 1.881, - "eu-west-1": 1.881, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 2.1892, "il-central-1": 1.9684, "me-central-1": 2.0562, - "me-south-1": 2.17, + "me-south-1": 2.2924, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 1.762, "us-east-2": 1.8599, "us-gov-east-1": 2.2059, "us-gov-west-1": 0.0, @@ -50252,30 +53431,32 @@ "us-west-2": 1.8599 }, "c6g.16xlarge": { + "af-south-1": 0.0, "ap-east-1": 2.882, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 2.594, "ap-northeast-3": 0.0, - "ap-south-1": 1.4932, + "ap-south-1": 1.575, "ap-south-2": 1.4932, "ap-southeast-1": 0.0, "ap-southeast-2": 2.9716, "ap-southeast-3": 2.6388, "ap-southeast-4": 3.1421, - "ca-central-1": 0.0, + "ca-central-1": 2.6536, + "ca-west-1": 2.5108, "eu-central-1": 2.6132, - "eu-central-2": 0.0, + "eu-central-2": 2.8615, "eu-north-1": 2.6068, "eu-south-1": 2.8705, "eu-south-2": 0.0, - "eu-west-1": 2.4647, + "eu-west-1": 0.0, "eu-west-2": 2.7156, "eu-west-3": 2.722, "il-central-1": 2.5812, "me-central-1": 2.6983, "me-south-1": 2.85, "sa-east-1": 3.6848, - "us-east-1": 0.0, + "us-east-1": 2.4366, "us-east-2": 0.0, "us-gov-east-1": 2.8979, "us-gov-west-1": 2.8979, @@ -50284,174 +53465,199 @@ }, "c6gd.medium": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.104, + "ap-northeast-3": 0.112, "ap-south-1": 0.086, "ap-southeast-1": 0.105, - "ap-southeast-2": 0.1105, - "ap-southeast-3": 0.105, - "ca-central-1": 0.1024, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.1077, + "ca-central-1": 0.0, "eu-central-1": 0.1071, + "eu-central-2": 0.0, "eu-north-1": 0.1016, "eu-west-1": 0.1036, - "eu-west-2": 0.1088, + "eu-west-2": 0.106, "eu-west-3": 0.1088, "sa-east-1": 0.1231, "us-east-1": 0.1007, "us-east-2": 0.1007, - "us-west-1": 0.1109, - "us-west-2": 0.1007 + "us-gov-east-1": 0.1092, + "us-gov-west-1": 0.1092, + "us-west-1": 0.0, + "us-west-2": 0.0984 }, "c6gd.large": { "ap-northeast-1": 0.1639, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.1639, - "ap-south-1": 0.1119, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.161, "ap-southeast-3": 0.1554, "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.1482, "eu-west-1": 0.1524, - "eu-west-2": 0.1575, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.152, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.1368, "us-east-2": 0.1368, + "us-gov-east-1": 0.1528, + "us-gov-west-1": 0.1528, "us-west-1": 0.156, "us-west-2": 0.1414 }, "c6gd.xlarge": { "ap-northeast-1": 0.256, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 0.2508, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ca-central-1": 0.2398, + "ap-northeast-2": 0.2466, + "ap-northeast-3": 0.256, + "ap-south-1": 0.1639, + "ap-southeast-1": 0.24, + "ap-southeast-2": 0.262, + "ap-southeast-3": 0.2508, + "ca-central-1": 0.2296, "eu-central-1": 0.2486, - "eu-north-1": 0.2364, + "eu-central-2": 0.2558, + "eu-north-1": 0.2264, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 0.255, + "eu-west-3": 0.255, "sa-east-1": 0.0, "us-east-1": 0.2136, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.2456, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gd.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.4548, "ap-northeast-2": 2.946, - "ap-northeast-3": 3.266, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 3.1828, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.362, "ap-southeast-3": 0.0, - "ca-central-1": 2.8436, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 3.2628, "eu-north-1": 2.7924, "eu-west-1": 2.9204, "eu-west-2": 3.2506, "eu-west-3": 3.074, "sa-east-1": 3.938, "us-east-1": 2.7351, - "us-east-2": 0.0, - "us-west-1": 3.202, + "us-east-2": 2.5876, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gd.2xlarge": { - "ap-northeast-1": 0.5456, + "ap-northeast-1": 0.522, "ap-northeast-2": 0.482, "ap-northeast-3": 0.522, "ap-south-1": 0.326, "ap-southeast-1": 0.5116, "ap-southeast-2": 0.558, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.4692, "eu-central-1": 0.486, - "eu-north-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-central-2": 0.5216, + "eu-north-1": 0.4828, + "eu-west-1": 0.4997, + "eu-west-2": 0.498, "eu-west-3": 0.498, "sa-east-1": 0.606, - "us-east-1": 0.4372, - "us-east-2": 0.4556, - "us-west-1": 0.5372, - "us-west-2": 0.0 + "us-east-1": 0.0, + "us-east-2": 0.4372, + "us-gov-east-1": 0.5012, + "us-gov-west-1": 0.5012, + "us-west-1": 0.0, + "us-west-2": 0.4372 }, "c6gd.4xlarge": { - "ap-northeast-1": 0.914, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.9612, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-northeast-3": 0.914, + "ap-south-1": 0.522, + "ap-southeast-1": 0.8932, + "ap-southeast-2": 0.938, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.8844, - "eu-north-1": 0.8355, + "ca-central-1": 0.8491, + "eu-central-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.7956, "eu-west-1": 0.8695, - "eu-west-2": 0.0, - "eu-west-3": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "eu-west-2": 0.866, + "eu-west-3": 0.9102, + "sa-east-1": 1.1396, + "us-east-1": 0.7444, "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-east-1": 0.9169, + "us-gov-west-1": 0.9169, + "us-west-1": 0.9444, + "us-west-2": 0.7444 }, "c6gd.8xlarge": { - "ap-northeast-1": 1.7924, - "ap-northeast-2": 1.538, - "ap-northeast-3": 0.0, + "ap-northeast-1": 1.698, + "ap-northeast-2": 1.6225, + "ap-northeast-3": 1.7924, "ap-south-1": 0.914, - "ap-southeast-1": 1.57, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.842, "ap-southeast-3": 1.6564, - "ca-central-1": 0.0, + "ca-central-1": 1.5682, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.602, - "eu-west-3": 1.602, + "eu-west-1": 1.6089, + "eu-west-2": 1.6903, + "eu-west-3": 1.6903, "sa-east-1": 2.1492, "us-east-1": 1.4325, "us-east-2": 1.3588, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.4325 + "us-west-2": 1.3588 }, "c6gd.12xlarge": { - "ap-northeast-1": 2.482, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 2.482, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.29, "ap-southeast-2": 2.554, - "ap-southeast-3": 2.4196, + "ap-southeast-3": 2.29, "ca-central-1": 2.1652, "eu-central-1": 2.3932, + "eu-central-2": 2.6195, "eu-north-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 2.3484, "eu-west-2": 2.4705, - "eu-west-3": 2.4705, + "eu-west-3": 0.0, "sa-east-1": 3.1588, "us-east-1": 0.0, - "us-east-2": 1.9732, - "us-west-1": 2.5732, + "us-east-2": 0.0, + "us-gov-east-1": 2.3572, + "us-gov-west-1": 2.3572, + "us-west-1": 2.434, "us-west-2": 2.0838 }, "c6gd.16xlarge": { "ap-northeast-1": 3.266, - "ap-northeast-2": 0.0, - "ap-northeast-3": 3.266, + "ap-northeast-2": 2.946, + "ap-northeast-3": 0.0, "ap-south-1": 1.7921, "ap-southeast-1": 3.1828, - "ap-southeast-2": 3.362, + "ap-southeast-2": 0.0, "ap-southeast-3": 3.01, "ca-central-1": 2.8436, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 2.7924, "eu-west-1": 2.9204, "eu-west-2": 3.2506, @@ -50459,64 +53665,76 @@ "sa-east-1": 3.938, "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 3.0996, + "us-gov-west-1": 3.0996, "us-west-1": 0.0, - "us-west-2": 2.7351 + "us-west-2": 0.0 }, "c6gn.medium": { "ap-east-1": 0.12298, "ap-northeast-1": 0.1145, - "ap-northeast-2": 0.10875, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.11461, - "ap-south-1": 0.10325, + "ap-south-1": 0.10758, "ap-southeast-1": 0.0, "ap-southeast-2": 0.1165, + "ap-southeast-3": 0.11456, "ca-central-1": 0.0, + "ca-west-1": 0.1073, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-south-1": 0.11676, + "eu-west-1": 0.1088, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.11636, - "me-south-1": 0.0, + "me-south-1": 0.1136, "sa-east-1": 0.1265, "us-east-1": 0.0, - "us-east-2": 0.1032, - "us-west-1": 0.114, - "us-west-2": 0.1032 + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.1172, + "us-west-1": 0.0, + "us-west-2": 0.10752 }, "c6gn.large": { "ap-east-1": 0.1745, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.1575, + "ap-northeast-1": 0.1799, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.1465, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ca-central-1": 0.16406, - "eu-central-1": 0.1586, + "ca-west-1": 0.1546, + "eu-central-1": 0.0, "eu-north-1": 0.153, - "eu-south-1": 0.1632, + "eu-south-1": 0.0, "eu-west-1": 0.1576, "eu-west-2": 0.1625, - "eu-west-3": 0.17275, + "eu-west-3": 0.1625, "il-central-1": 0.17273, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.1464, "us-east-2": 0.15504, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.168, "us-west-2": 0.1464 }, "c6gn.xlarge": { - "ap-east-1": 0.3119, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.27844, + "ap-east-1": 0.0, + "ap-northeast-1": 0.2998, + "ap-northeast-2": 0.255, + "ap-northeast-3": 0.30028, "ap-south-1": 0.0, "ap-southeast-1": 0.2778, "ap-southeast-2": 0.286, + "ap-southeast-3": 0.27824, "ca-central-1": 0.26812, + "ca-west-1": 0.26812, "eu-central-1": 0.27692, "eu-north-1": 0.246, "eu-south-1": 0.2664, @@ -50526,14 +53744,16 @@ "il-central-1": 0.26496, "me-south-1": 0.2744, "sa-east-1": 0.3526, - "us-east-1": 0.2328, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.25008, + "us-gov-east-1": 0.2888, + "us-gov-west-1": 0.268, "us-west-1": 0.2976, - "us-west-2": 0.25008 + "us-west-2": 0.2328 }, "c6gn.metal": { - "ca-central-1": 3.1572, - "eu-west-3": 0.0 + "ca-central-1": 0.0, + "eu-west-3": 3.41 }, "c6gn.2xlarge": { "ap-east-1": 0.0, @@ -50543,31 +53763,37 @@ "ap-south-1": 0.476, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 0.54624, - "eu-central-1": 0.56384, + "ap-southeast-3": 0.5268, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.58408, + "eu-south-1": 0.5428, "eu-west-1": 0.5204, "eu-west-2": 0.581, - "eu-west-3": 0.581, + "eu-west-3": 0.0, "il-central-1": 0.58091, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.51016, + "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.546, "us-west-1": 0.0, - "us-west-2": 0.51016 + "us-west-2": 0.0 }, "c6gn.4xlarge": { "ap-east-1": 1.1376, - "ap-northeast-1": 1.0892, - "ap-northeast-2": 0.988, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.09114, "ap-south-1": 0.8912, "ap-southeast-1": 0.0, "ap-southeast-2": 1.1244, + "ap-southeast-3": 1.00296, "ca-central-1": 0.0, - "eu-central-1": 0.99768, + "ca-west-1": 0.96248, + "eu-central-1": 0.9188, "eu-north-1": 0.0, "eu-south-1": 0.9556, "eu-west-1": 0.9108, @@ -50576,8 +53802,10 @@ "il-central-1": 0.0, "me-south-1": 1.07336, "sa-east-1": 1.3004, - "us-east-1": 0.8212, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.8212, + "us-gov-east-1": 1.0452, + "us-gov-west-1": 1.0452, "us-west-1": 0.0, "us-west-2": 0.0 }, @@ -50587,113 +53815,127 @@ "ap-northeast-2": 1.846, "ap-northeast-3": 0.0, "ap-south-1": 1.514, - "ap-southeast-1": 1.714, + "ap-southeast-1": 1.8724, "ap-southeast-2": 1.938, + "ap-southeast-3": 1.7172, "ca-central-1": 1.79496, + "ca-west-1": 1.79496, "eu-central-1": 1.7076, - "eu-north-1": 1.7668, + "eu-north-1": 0.0, "eu-south-1": 1.94632, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 1.934, + "eu-west-3": 1.77, "il-central-1": 0.0, "me-south-1": 2.01672, "sa-east-1": 0.0, - "us-east-1": 1.5124, - "us-east-2": 1.65064, + "us-east-1": 1.65064, + "us-east-2": 0.0, + "us-gov-east-1": 1.794, + "us-gov-west-1": 0.0, "us-west-1": 2.0308, - "us-west-2": 1.65064 + "us-west-2": 0.0 }, "c6gn.12xlarge": { - "ap-east-1": 3.1528, + "ap-east-1": 2.878, "ap-northeast-1": 0.0, "ap-northeast-2": 2.47, - "ap-northeast-3": 3.01341, - "ap-south-1": 0.0, - "ap-southeast-1": 2.506, - "ap-southeast-2": 2.842, - "ca-central-1": 0.0, + "ap-northeast-3": 2.75128, + "ap-south-1": 2.206, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.1132, + "ap-southeast-3": 2.5108, + "ca-central-1": 2.62744, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 2.362, - "eu-south-1": 2.85448, + "eu-south-1": 0.0, "eu-west-1": 2.4724, - "eu-west-2": 2.59, + "eu-west-2": 0.0, "eu-west-3": 2.836, "il-central-1": 0.0, "me-south-1": 2.7028, - "sa-east-1": 3.6412, - "us-east-1": 2.41096, - "us-east-2": 2.41096, - "us-west-1": 2.722, + "sa-east-1": 3.322, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 2.8756, + "us-gov-west-1": 0.0, + "us-west-1": 2.9812, "us-west-2": 2.2036 }, "c6gn.16xlarge": { "ap-east-1": 4.1604, - "ap-northeast-1": 0.0, - "ap-northeast-2": 3.25, + "ap-northeast-1": 3.618, + "ap-northeast-2": 3.562, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 3.298, "ap-southeast-2": 3.746, - "ca-central-1": 3.45992, + "ap-southeast-3": 0.0, + "ca-central-1": 3.1572, + "ca-west-1": 3.45992, "eu-central-1": 3.60072, "eu-north-1": 3.4036, - "eu-south-1": 0.0, + "eu-south-1": 3.76264, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.738, "il-central-1": 3.40936, - "me-south-1": 0.0, - "sa-east-1": 4.8116, + "me-south-1": 3.90344, + "sa-east-1": 0.0, "us-east-1": 2.8948, "us-east-2": 3.17128, - "us-west-1": 0.0, + "us-gov-east-1": 3.7908, + "us-gov-west-1": 3.458, + "us-west-1": 3.9316, "us-west-2": 3.17128 }, "c6i.large": { "af-south-1": 0.0, - "ap-east-1": 0.168, - "ap-northeast-1": 0.167, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.156, - "ap-northeast-3": 0.1777, + "ap-northeast-3": 0.167, "ap-south-1": 0.0, "ap-south-2": 0.1535, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.1678, "ap-southeast-2": 0.0, "ca-central-1": 0.153, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.157, "eu-north-1": 0.151, - "eu-south-1": 0.0, + "eu-south-1": 0.1711, "eu-west-1": 0.16032, - "eu-west-2": 0.1711, - "eu-west-3": 0.161, + "eu-west-2": 0.161, + "eu-west-3": 0.0, "il-central-1": 0.16534, - "me-south-1": 0.1656, - "sa-east-1": 0.191, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.145, - "us-east-2": 0.0, - "us-gov-east-1": 0.162, + "us-east-2": 0.1535, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.145 }, "c6i.xlarge": { - "af-south-1": 0.288, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 0.2976, "ap-northeast-1": 0.2954, - "ap-northeast-2": 0.2712, - "ap-northeast-3": 0.2954, + "ap-northeast-2": 0.252, + "ap-northeast-3": 0.0, "ap-south-1": 0.247, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.3042, - "ca-central-1": 0.246, + "ap-southeast-2": 0.282, + "ca-central-1": 0.2646, + "ca-west-1": 0.246, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 0.242, "eu-south-1": 0.262, "eu-west-1": 0.26064, "eu-west-2": 0.0, - "eu-west-3": 0.2822, + "eu-west-3": 0.0, "il-central-1": 0.25152, "me-south-1": 0.2712, "sa-east-1": 0.3482, @@ -50710,38 +53952,40 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 6.274, "ap-northeast-3": 6.978, - "ap-south-1": 0.0, + "ap-south-1": 5.57, "ap-south-2": 0.0, - "ap-southeast-1": 6.402, + "ap-southeast-1": 0.0, "ap-southeast-2": 7.234, - "ca-central-1": 6.082, + "ca-central-1": 0.0, + "ca-west-1": 6.082, "eu-central-1": 0.0, - "eu-north-1": 5.954, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 5.9668, "eu-west-2": 6.594, - "eu-west-3": 6.594, + "eu-west-3": 0.0, "il-central-1": 6.25864, "me-south-1": 6.8884, "sa-east-1": 8.514, - "us-east-1": 5.57, + "us-east-1": 0.0, "us-east-2": 5.57, - "us-gov-east-1": 0.0, - "us-gov-west-1": 6.658, - "us-west-1": 6.914, - "us-west-2": 0.0 + "us-gov-east-1": 6.658, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 5.57 }, "c6i.2xlarge": { - "af-south-1": 0.6316, + "af-south-1": 0.586, "ap-east-1": 0.0, "ap-northeast-1": 0.558, "ap-northeast-2": 0.514, - "ap-northeast-3": 0.558, - "ap-south-1": 0.504, - "ap-south-2": 0.504, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.47, "ap-southeast-1": 0.522, - "ap-southeast-2": 0.574, + "ap-southeast-2": 0.6184, "ca-central-1": 0.5392, + "ca-west-1": 0.5392, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, @@ -50751,36 +53995,37 @@ "il-central-1": 0.55134, "me-south-1": 0.5524, "sa-east-1": 0.7064, - "us-east-1": 0.0, + "us-east-1": 0.504, "us-east-2": 0.0, "us-gov-east-1": 0.5788, - "us-gov-west-1": 0.5788, + "us-gov-west-1": 0.538, "us-west-1": 0.5964, "us-west-2": 0.47 }, "c6i.4xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.994, + "ap-east-1": 1.0804, "ap-northeast-1": 1.0716, - "ap-northeast-2": 0.898, + "ap-northeast-2": 0.9748, "ap-northeast-3": 1.0716, - "ap-south-1": 0.878, - "ap-south-2": 0.81, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 0.9484, - "eu-central-1": 0.0, + "ca-central-1": 0.874, + "ca-west-1": 0.9484, + "eu-central-1": 0.9836, "eu-north-1": 0.9308, - "eu-south-1": 0.0, - "eu-west-1": 0.93256, - "eu-west-2": 0.938, + "eu-south-1": 1.0188, + "eu-west-1": 0.8596, + "eu-west-2": 1.0188, "eu-west-3": 1.0188, "il-central-1": 0.97269, - "me-south-1": 0.0, - "sa-east-1": 1.178, + "me-south-1": 0.9748, + "sa-east-1": 1.2828, "us-east-1": 0.878, - "us-east-2": 0.81, - "us-gov-east-1": 0.0, + "us-east-2": 0.878, + "us-gov-east-1": 0.946, "us-gov-west-1": 0.0, "us-west-1": 1.0628, "us-west-2": 0.878 @@ -50788,68 +54033,71 @@ "c6i.8xlarge": { "af-south-1": 2.1364, "ap-east-1": 0.0, - "ap-northeast-1": 1.842, - "ap-northeast-2": 1.8196, - "ap-northeast-3": 2.0132, - "ap-south-1": 1.49, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 1.626, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 1.618, - "eu-central-1": 0.0, - "eu-north-1": 1.586, + "ap-southeast-1": 1.8548, + "ap-southeast-2": 1.906, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 1.8372, + "eu-north-1": 1.7316, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 1.746, + "eu-west-2": 0.0, "eu-west-3": 1.9076, - "il-central-1": 1.66216, + "il-central-1": 1.81538, "me-south-1": 1.98856, "sa-east-1": 2.4356, "us-east-1": 1.626, "us-east-2": 0.0, "us-gov-east-1": 1.762, - "us-gov-west-1": 1.762, - "us-west-1": 1.9956, - "us-west-2": 0.0 + "us-gov-west-1": 1.9252, + "us-west-1": 0.0, + "us-west-2": 1.49 }, "c6i.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.1396, "ap-east-1": 0.0, "ap-northeast-1": 2.698, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 2.17, + "ap-northeast-3": 2.9548, + "ap-south-1": 0.0, "ap-south-2": 2.17, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.7172, "ap-southeast-2": 0.0, - "ca-central-1": 2.5852, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 2.458, "eu-north-1": 0.0, "eu-south-1": 2.554, "eu-west-1": 2.53768, "eu-west-2": 2.554, "eu-west-3": 0.0, - "il-central-1": 2.65806, + "il-central-1": 2.42824, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 3.274, "us-east-1": 2.374, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 2.374, + "us-gov-east-1": 2.578, "us-gov-west-1": 2.8228, - "us-west-1": 2.9284, - "us-west-2": 2.374 + "us-west-1": 0.0, + "us-west-2": 2.17 }, "c6i.16xlarge": { - "af-south-1": 3.778, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 3.586, "ap-northeast-1": 3.554, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.5092, "ap-northeast-3": 3.8964, "ap-south-1": 3.122, - "ap-south-2": 0.0, + "ap-south-2": 2.85, "ap-southeast-1": 3.5796, - "ap-southeast-2": 0.0, + "ap-southeast-2": 4.0372, "ca-central-1": 3.4036, + "ca-west-1": 3.106, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 3.6852, @@ -50859,8 +54107,8 @@ "il-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 4.322, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 3.122, + "us-east-2": 2.85, "us-gov-east-1": 3.7204, "us-gov-west-1": 3.7204, "us-west-1": 3.8612, @@ -50869,45 +54117,47 @@ "c6i.24xlarge": { "af-south-1": 6.1492, "ap-east-1": 0.0, - "ap-northeast-1": 5.7796, + "ap-northeast-1": 0.0, "ap-northeast-2": 5.1988, "ap-northeast-3": 5.266, - "ap-south-1": 0.0, + "ap-south-1": 4.618, "ap-south-2": 0.0, "ap-southeast-1": 5.3044, "ap-southeast-2": 5.458, "ca-central-1": 0.0, + "ca-west-1": 4.594, "eu-central-1": 0.0, "eu-north-1": 4.498, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 4.94536, "eu-west-2": 5.4628, "eu-west-3": 4.978, - "il-central-1": 4.72648, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "il-central-1": 0.0, + "me-south-1": 5.1988, + "sa-east-1": 7.0468, + "us-east-1": 4.21, "us-east-2": 4.618, "us-gov-east-1": 0.0, "us-gov-west-1": 5.026, - "us-west-1": 0.0, - "us-west-2": 4.21 + "us-west-1": 5.7268, + "us-west-2": 0.0 }, "c6i.32xlarge": { - "af-south-1": 0.0, + "af-south-1": 7.426, "ap-east-1": 7.042, - "ap-northeast-1": 0.0, + "ap-northeast-1": 6.978, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 5.57, "ap-south-2": 0.0, "ap-southeast-1": 6.402, - "ap-southeast-2": 0.0, + "ap-southeast-2": 7.234, "ca-central-1": 6.082, + "ca-west-1": 0.0, "eu-central-1": 6.338, "eu-north-1": 0.0, "eu-south-1": 6.594, - "eu-west-1": 0.0, + "eu-west-1": 6.55048, "eu-west-2": 6.594, "eu-west-3": 6.594, "il-central-1": 0.0, @@ -50915,547 +54165,1222 @@ "sa-east-1": 8.514, "us-east-1": 0.0, "us-east-2": 5.57, - "us-gov-east-1": 0.0, + "us-gov-east-1": 6.658, "us-gov-west-1": 6.658, "us-west-1": 0.0, "us-west-2": 5.57 }, "c6id.large": { - "ap-northeast-1": 0.20091, + "ap-northeast-1": 0.1881, + "ap-northeast-2": 0.1755, + "ap-southeast-1": 0.1776, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.17655, "eu-west-1": 0.1859, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.17088, + "us-east-2": 0.1608, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.1608 }, "c6id.xlarge": { "ap-northeast-1": 0.34182, + "ap-northeast-2": 0.3141, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.35106, - "eu-central-1": 0.2931, + "ca-west-1": 0.0, + "eu-central-1": 0.31641, "eu-west-1": 0.31179, - "il-central-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 0.30034, "us-east-1": 0.0, - "us-east-2": 0.28176, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-gov-west-1": 0.32796, + "us-west-2": 0.28176 }, "c6id.metal": { "ap-northeast-1": 8.3284, + "ap-northeast-2": 7.522, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-west-1": 7.2532, "eu-central-1": 7.5892, "eu-west-1": 7.4548, + "eu-west-2": 7.858, "il-central-1": 7.82088, "us-east-1": 6.5812, - "us-east-2": 0.0, + "us-east-2": 6.5812, "us-gov-west-1": 7.9252, "us-west-2": 6.5812 }, "c6id.2xlarge": { "ap-northeast-1": 0.69364, - "ap-southeast-2": 0.71212, - "eu-central-1": 0.5962, - "eu-west-1": 0.5878, - "il-central-1": 0.61068, + "ap-northeast-2": 0.6382, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.6613, + "il-central-1": 0.65875, "us-east-1": 0.57352, - "us-east-2": 0.5332, + "us-east-2": 0.0, "us-gov-west-1": 0.6172, "us-west-2": 0.0 }, "c6id.4xlarge": { "ap-northeast-1": 1.25728, + "ap-northeast-2": 1.054, + "ap-southeast-1": 1.0708, "ap-southeast-2": 1.29424, - "eu-central-1": 0.0, - "eu-west-1": 1.13716, + "ca-west-1": 1.0204, + "eu-central-1": 1.15564, + "eu-west-1": 1.0456, + "eu-west-2": 1.1926, "il-central-1": 0.0, "us-east-1": 1.01704, - "us-east-2": 1.01704, - "us-gov-west-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 1.1044, "us-west-2": 0.9364 }, "c6id.8xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 1.978, + "ap-southeast-1": 2.19976, "ap-southeast-2": 2.2468, + "ca-west-1": 2.08888, "eu-central-1": 2.18128, "eu-west-1": 0.0, + "eu-west-2": 2.062, "il-central-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 1.7428, + "us-east-1": 1.7428, + "us-east-2": 1.90408, "us-gov-west-1": 2.27368, "us-west-2": 0.0 }, "c6id.12xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 3.1792, + "ap-southeast-1": 2.9524, "ap-southeast-2": 3.3052, - "eu-central-1": 0.0, + "ca-west-1": 2.8012, + "eu-central-1": 2.9272, "eu-west-1": 2.8768, + "eu-west-2": 3.028, "il-central-1": 3.01408, - "us-east-1": 0.0, + "us-east-1": 2.79112, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.79112 }, "c6id.16xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 4.23256, + "ap-northeast-2": 4.1956, + "ap-southeast-1": 4.26952, + "ap-southeast-2": 4.3636, + "ca-west-1": 4.04776, + "eu-central-1": 0.0, "eu-west-1": 4.15864, - "il-central-1": 0.0, - "us-east-1": 3.3556, - "us-east-2": 3.3556, + "eu-west-2": 0.0, + "il-central-1": 4.35998, + "us-east-1": 3.67816, + "us-east-2": 0.0, "us-gov-west-1": 4.0276, "us-west-2": 0.0 }, "c6id.24xlarge": { - "ap-northeast-1": 6.89368, + "ap-northeast-1": 0.0, + "ap-northeast-2": 6.2284, + "ap-southeast-1": 5.7748, "ap-southeast-2": 7.11544, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 5.6236, - "il-central-1": 5.89816, - "us-east-1": 5.45224, + "eu-west-1": 6.17296, + "eu-west-2": 0.0, + "il-central-1": 0.0, + "us-east-1": 4.9684, "us-east-2": 4.9684, "us-gov-west-1": 0.0, - "us-west-2": 5.45224 + "us-west-2": 4.9684 }, "c6id.32xlarge": { - "ap-northeast-1": 8.3284, - "ap-southeast-2": 8.5972, - "eu-central-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 7.522, + "ap-southeast-1": 7.6564, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 7.5892, "eu-west-1": 7.4548, + "eu-west-2": 0.0, "il-central-1": 7.82088, - "us-east-1": 6.5812, + "us-east-1": 0.0, "us-east-2": 6.5812, - "us-gov-west-1": 7.9252, - "us-west-2": 6.5812 + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "c6in.large": { "af-south-1": 0.0, + "ap-east-1": 0.22517, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.1733, "ap-southeast-1": 0.20322, "ap-southeast-2": 0.22286, "ap-southeast-3": 0.1902, - "ca-central-1": 0.19629, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.2023, - "eu-north-1": 0.0, + "eu-north-1": 0.1818, "eu-south-1": 0.0, + "eu-south-2": 0.188, "eu-west-1": 0.0, "eu-west-2": 0.1944, - "eu-west-3": 0.20784, + "eu-west-3": 0.1944, + "il-central-1": 0.0, "me-central-1": 0.2008, - "me-south-1": 0.0, + "me-south-1": 0.2007, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.1965, + "us-gov-east-1": 0.21015, "us-gov-west-1": 0.21015, + "us-west-1": 0.0, "us-west-2": 0.1734 }, "c6in.xlarge": { - "af-south-1": 0.39541, - "ap-northeast-1": 0.3456, + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 0.37416, + "ap-northeast-2": 0.34182, "ap-south-1": 0.30948, + "ap-south-2": 0.30926, "ap-southeast-1": 0.3204, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.34644, - "ca-central-1": 0.3078, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.3183, - "eu-central-2": 0.37306, + "eu-central-2": 0.0, "eu-north-1": 0.3036, "eu-south-1": 0.35799, - "eu-west-1": 0.3162, - "eu-west-2": 0.0, - "eu-west-3": 0.35568, + "eu-south-2": 0.316, + "eu-west-1": 0.34182, + "eu-west-2": 0.3288, + "eu-west-3": 0.0, + "il-central-1": 0.35592, "me-central-1": 0.0, "me-south-1": 0.36954, - "sa-east-1": 0.0, + "sa-east-1": 0.4086, "us-east-1": 0.2868, "us-east-2": 0.2868, - "us-gov-east-1": 0.3603, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 0.37185, "us-west-2": 0.30948 }, "c6in.metal": { "af-south-1": 9.88744, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, + "ap-northeast-2": 8.3284, "ap-south-1": 7.3876, + "ap-south-2": 7.3812, "ap-southeast-1": 0.0, "ap-southeast-2": 9.6052, "ap-southeast-3": 0.0, + "ap-southeast-4": 9.602, "ca-central-1": 8.0596, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 7.9252, - "eu-south-1": 0.0, + "eu-central-2": 9.2372, + "eu-north-1": 0.0, + "eu-south-1": 8.7988, + "eu-south-2": 8.322, "eu-west-1": 8.3284, "eu-west-2": 8.7316, "eu-west-3": 8.7316, + "il-central-1": 8.73864, "me-central-1": 0.0, "me-south-1": 9.1348, "sa-east-1": 11.2852, "us-east-1": 0.0, "us-east-2": 7.3876, "us-gov-east-1": 8.866, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-west-1": 8.866, + "us-west-1": 9.202, + "us-west-2": 7.3876 }, "c6in.2xlarge": { "af-south-1": 0.80082, + "ap-east-1": 0.79066, "ap-northeast-1": 0.0, - "ap-south-1": 0.62896, - "ap-southeast-1": 0.6508, - "ap-southeast-2": 0.7222, + "ap-northeast-2": 0.6424, + "ap-south-1": 0.5836, + "ap-south-2": 0.0, + "ap-southeast-1": 0.70288, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.7812, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 0.6466, "eu-central-2": 0.75612, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 0.6718, + "eu-south-2": 0.642, "eu-west-1": 0.0, - "eu-west-2": 0.6676, + "eu-west-2": 0.0, "eu-west-3": 0.6676, + "il-central-1": 0.66804, "me-central-1": 0.74952, "me-south-1": 0.0, "sa-east-1": 0.89692, - "us-east-1": 0.0, + "us-east-1": 0.62896, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.7306, + "us-gov-west-1": 0.0, + "us-west-1": 0.7537, "us-west-2": 0.5836 }, "c6in.4xlarge": { - "af-south-1": 1.34968, - "ap-northeast-1": 1.38664, - "ap-south-1": 1.12792, + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 1.2724, + "ap-northeast-2": 1.25728, + "ap-south-1": 1.0372, + "ap-south-2": 1.0364, "ap-southeast-1": 1.1716, "ap-southeast-2": 1.43284, "ap-southeast-3": 0.0, - "ca-central-1": 1.22032, + "ap-southeast-4": 1.4324, + "ca-central-1": 0.0, "eu-central-1": 1.26652, "eu-central-2": 0.0, "eu-north-1": 1.1044, "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.2052, - "eu-west-3": 0.0, - "me-central-1": 1.36904, + "eu-south-2": 1.154, + "eu-west-1": 1.25728, + "eu-west-2": 1.31272, + "eu-west-3": 1.2052, + "il-central-1": 1.31369, + "me-central-1": 0.0, "me-south-1": 1.36816, "sa-east-1": 0.0, - "us-east-1": 1.12792, - "us-east-2": 1.12792, + "us-east-1": 0.0, + "us-east-2": 1.0372, "us-gov-east-1": 1.3312, "us-gov-west-1": 1.222, - "us-west-2": 0.0 + "us-west-1": 1.3774, + "us-west-2": 1.12792 }, "c6in.8xlarge": { - "af-south-1": 2.8133, - "ap-northeast-1": 2.4148, - "ap-south-1": 1.9444, - "ap-southeast-1": 2.42152, - "ap-southeast-2": 2.73568, - "ap-southeast-3": 2.42152, - "ca-central-1": 2.31064, + "af-south-1": 0.0, + "ap-east-1": 2.5324, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 2.12584, + "ap-south-2": 2.12408, + "ap-southeast-1": 2.2132, + "ap-southeast-2": 2.4988, + "ap-southeast-3": 2.2132, + "ap-southeast-4": 0.0, + "ca-central-1": 2.1124, "eu-central-1": 2.40304, - "eu-central-2": 2.63448, + "eu-central-2": 2.4068, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 2.38456, + "eu-south-1": 2.51392, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, + "il-central-1": 2.49738, "me-central-1": 2.60808, "me-south-1": 0.0, - "sa-east-1": 2.9188, - "us-east-1": 0.0, - "us-east-2": 1.9444, + "sa-east-1": 0.0, + "us-east-1": 1.9444, + "us-east-2": 0.0, "us-gov-east-1": 2.5324, "us-gov-west-1": 0.0, - "us-west-2": 1.9444 + "us-west-1": 2.6248, + "us-west-2": 2.12584 }, "c6in.12xlarge": { - "af-south-1": 4.15494, + "af-south-1": 0.0, + "ap-east-1": 3.7336, "ap-northeast-1": 0.0, - "ap-south-1": 2.8516, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 3.12112, "ap-southeast-1": 3.2548, - "ap-southeast-2": 3.6832, + "ap-southeast-2": 0.0, "ap-southeast-3": 3.2548, + "ap-southeast-4": 0.0, "ca-central-1": 3.1036, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 3.5452, "eu-north-1": 3.0532, "eu-south-1": 3.70588, - "eu-west-1": 3.51184, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 3.3556, - "eu-west-3": 0.0, - "me-central-1": 3.84712, + "eu-west-3": 3.3556, + "il-central-1": 3.68106, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 3.12376, + "us-east-1": 2.8516, "us-east-2": 3.12376, - "us-gov-east-1": 3.7336, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 3.532, "us-west-2": 0.0 }, "c6in.16xlarge": { - "af-south-1": 5.49659, + "af-south-1": 5.00872, + "ap-east-1": 5.41528, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 4.12168, + "ap-south-2": 0.0, "ap-southeast-1": 4.71304, "ap-southeast-2": 5.34136, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 4.0948, "eu-central-1": 4.67608, "eu-central-2": 5.13896, "eu-north-1": 0.0, "eu-south-1": 4.4644, + "eu-south-2": 4.226, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 4.86088, + "eu-west-2": 4.4308, + "eu-west-3": 4.4308, + "il-central-1": 0.0, "me-central-1": 5.08616, "me-south-1": 5.08264, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 3.7588, - "us-gov-east-1": 4.9348, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 3.7588 + "us-west-1": 0.0, + "us-west-2": 4.12168 }, "c6in.24xlarge": { "af-south-1": 7.44808, - "ap-northeast-1": 7.66984, + "ap-east-1": 8.05792, + "ap-northeast-1": 6.9844, + "ap-northeast-2": 6.2788, "ap-south-1": 6.11752, - "ap-southeast-1": 0.0, - "ap-southeast-2": 7.94704, + "ap-south-2": 5.5684, + "ap-southeast-1": 6.3796, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-central-2": 7.64344, + "eu-north-1": 5.9764, + "eu-south-1": 7.28176, + "eu-south-2": 6.8884, + "eu-west-1": 6.2788, "eu-west-2": 0.0, "eu-west-3": 7.22632, - "me-central-1": 6.8884, - "me-south-1": 7.55896, + "il-central-1": 6.58648, + "me-central-1": 7.56424, + "me-south-1": 0.0, "sa-east-1": 9.33304, "us-east-1": 0.0, "us-east-2": 5.5732, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c6in.32xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 9.2692, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 7.3812, + "ap-southeast-1": 8.4628, "ap-southeast-2": 9.6052, - "ap-southeast-3": 8.4628, + "ap-southeast-3": 0.0, + "ap-southeast-4": 9.602, "ca-central-1": 8.0596, - "eu-central-1": 0.0, + "eu-central-1": 8.3956, "eu-central-2": 0.0, "eu-north-1": 7.9252, "eu-south-1": 8.7988, + "eu-south-2": 0.0, "eu-west-1": 8.3284, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 8.7316, + "eu-west-3": 8.7316, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 11.2852, "us-east-1": 7.3876, "us-east-2": 0.0, - "us-gov-east-1": 8.866, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 8.866, + "us-west-1": 9.202, + "us-west-2": 0.0 + }, + "c7a.medium": { + "ap-northeast-1": 0.13106, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.11796, + "eu-west-1": 0.12057, + "us-east-1": 0.11132, + "us-east-2": 0.11132, + "us-west-2": 0.11645 + }, + "c7a.large": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.17713, + "eu-north-1": 0.18087, + "eu-south-2": 0.0, + "eu-west-1": 0.18113, + "us-east-1": 0.16264, + "us-east-2": 0.1729, + "us-west-2": 0.16264 + }, + "c7a.xlarge": { + "ap-northeast-1": 0.3184, + "eu-central-1": 0.0, + "eu-north-1": 0.27976, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.26528, + "us-east-2": 0.26528, + "us-west-2": 0.0 + }, + "c7a.metal-48xl": { + "ap-northeast-1": 12.5332, + "eu-central-1": 11.37448, + "eu-north-1": 10.67848, + "eu-south-2": 11.25832, + "eu-west-1": 10.70152, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "c7a.2xlarge": { + "ap-northeast-1": 0.6468, + "eu-central-1": 0.59852, + "eu-north-1": 0.56952, + "eu-south-2": 0.0, + "eu-west-1": 0.57048, + "us-east-1": 0.54056, + "us-east-2": 0.54056, + "us-west-2": 0.0 + }, + "c7a.4xlarge": { + "ap-northeast-1": 1.1636, + "eu-central-1": 1.16074, + "eu-north-1": 1.09694, + "eu-south-2": 1.05736, + "eu-west-1": 0.0, + "us-east-1": 1.03323, + "us-east-2": 1.03323, + "us-west-2": 0.0 + }, + "c7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 2.00408, + "eu-north-1": 1.88808, + "eu-south-2": 2.17019, + "eu-west-1": 0.0, + "us-east-1": 1.77224, + "us-east-2": 1.77224, + "us-west-2": 1.93646 + }, + "c7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 3.22223, + "eu-north-1": 2.76712, + "eu-south-2": 2.91208, + "eu-west-1": 0.0, + "us-east-1": 2.8397, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "c7a.16xlarge": { + "ap-northeast-1": 4.67784, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 4.21038, + "eu-west-1": 0.0, + "us-east-1": 3.74293, + "us-east-2": 3.74293, + "us-west-2": 0.0 + }, + "c7a.24xlarge": { + "ap-northeast-1": 6.3316, + "eu-central-1": 5.75224, + "eu-north-1": 0.0, + "eu-south-2": 6.25058, + "eu-west-1": 5.94434, + "us-east-1": 5.54939, + "us-east-2": 5.05672, + "us-west-2": 5.54939 + }, + "c7a.32xlarge": { + "ap-northeast-1": 9.22568, + "eu-central-1": 0.0, + "eu-north-1": 7.16232, + "eu-south-2": 0.0, + "eu-west-1": 7.17768, + "us-east-1": 0.0, + "us-east-2": 7.35586, "us-west-2": 0.0 }, + "c7a.48xlarge": { + "ap-northeast-1": 12.5332, + "eu-central-1": 0.0, + "eu-north-1": 10.67848, + "eu-south-2": 11.25832, + "eu-west-1": 10.70152, + "us-east-1": 9.98344, + "us-east-2": 9.98344, + "us-west-2": 9.98344 + }, "c7g.medium": { "ap-northeast-1": 0.1055, - "ap-southeast-1": 0.1043, + "ap-northeast-2": 0.1034, + "ap-south-1": 0.0861, + "ap-south-2": 0.0845, + "ap-southeast-1": 0.1017, "ap-southeast-2": 0.1072, - "eu-central-1": 0.1038, - "eu-west-1": 0.1012, - "us-east-1": 0.0985, + "ca-central-1": 0.0, + "eu-central-1": 0.1012, + "eu-north-1": 0.0987, + "eu-south-2": 0.0, + "eu-west-1": 0.0988, + "eu-west-2": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0985 }, "c7g.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.1567, + "ap-northeast-2": 0.1416, + "ap-south-1": 0.1091, + "ap-south-2": 0.1091, "ap-southeast-1": 0.1433, "ap-southeast-2": 0.0, + "ca-central-1": 0.1441, "eu-central-1": 0.1425, - "eu-west-1": 0.1424, - "us-east-1": 0.1325, - "us-east-2": 0.1323, - "us-west-2": 0.1325 + "eu-north-1": 0.1374, + "eu-south-2": 0.1424, + "eu-west-1": 0.0, + "eu-west-2": 0.1459, + "us-east-1": 0.137, + "us-east-2": 0.0, + "us-west-1": 0.1558, + "us-west-2": 0.137 }, "c7g.xlarge": { - "ap-northeast-1": 0.2533, + "ap-northeast-1": 0.2419, + "ap-northeast-2": 0.2335, + "ap-south-1": 0.1582, + "ap-south-2": 0.0, "ap-southeast-1": 0.2266, "ap-southeast-2": 0.2606, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.215, - "us-east-1": 0.2141, - "us-east-2": 0.2136, - "us-west-2": 0.205 + "eu-north-1": 0.2147, + "eu-south-2": 0.2248, + "eu-west-1": 0.0, + "eu-west-2": 0.2317, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 0.2402, + "us-west-2": 0.0 }, "c7g.metal": { "ap-northeast-1": 3.0407, - "ap-southeast-1": 0.0, + "ap-northeast-2": 2.7412, + "ap-south-1": 1.7006, + "ap-south-2": 0.0, + "ap-southeast-1": 2.7956, "ap-southeast-2": 3.1495, + "ca-central-1": 2.6599, "eu-central-1": 2.7684, + "eu-north-1": 2.6055, + "eu-south-2": 0.0, "eu-west-1": 2.6106, + "eu-west-2": 0.0, "us-east-1": 2.45, "us-east-2": 2.4423, + "us-west-1": 3.0132, "us-west-2": 2.45 }, "c7g.2xlarge": { "ap-northeast-1": 0.4938, - "ap-southeast-1": 0.4632, - "ap-southeast-2": 0.5074, - "eu-central-1": 0.0, + "ap-northeast-2": 0.4769, + "ap-south-1": 0.3263, + "ap-south-2": 0.3263, + "ap-southeast-1": 0.4843, + "ap-southeast-2": 0.5312, + "ca-central-1": 0.4462, + "eu-central-1": 0.0, + "eu-north-1": 0.4394, + "eu-south-2": 0.44, "eu-west-1": 0.4401, + "eu-west-2": 0.0, "us-east-1": 0.42, "us-east-2": 0.0, - "us-west-2": 0.4382 + "us-west-1": 0.5131, + "us-west-2": 0.0 }, "c7g.4xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.8239, + "ap-south-1": 0.5226, + "ap-south-2": 0.5474, "ap-southeast-1": 0.7964, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.8849, + "ca-central-1": 0.8025, "eu-central-1": 0.7896, + "eu-north-1": 0.0, + "eu-south-2": 0.789, "eu-west-1": 0.7502, + "eu-west-2": 0.0, "us-east-1": 0.7464, - "us-east-2": 0.7081, - "us-west-2": 0.71 + "us-east-2": 0.0, + "us-west-1": 0.8508, + "us-west-2": 0.0 }, "c7g.8xlarge": { "ap-northeast-1": 1.6768, + "ap-northeast-2": 0.0, + "ap-south-1": 0.9648, + "ap-south-2": 0.9648, "ap-southeast-1": 1.4628, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.7347, + "ca-central-1": 1.4749, "eu-central-1": 1.532, + "eu-north-1": 1.3678, + "eu-south-2": 1.37, "eu-west-1": 0.0, + "eu-west-2": 1.5901, "us-east-1": 0.0, - "us-east-2": 1.2862, - "us-west-2": 0.0 + "us-east-2": 1.359, + "us-west-1": 1.5716, + "us-west-2": 1.29 }, "c7g.12xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 2.0884, + "ap-south-1": 0.0, + "ap-south-2": 1.3821, "ap-southeast-1": 0.0, "ap-southeast-2": 2.3946, - "eu-central-1": 2.233, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 1.9735, - "us-west-2": 0.0 + "ca-central-1": 2.1474, + "eu-central-1": 0.0, + "eu-north-1": 2.1036, + "eu-south-2": 1.99, + "eu-west-1": 1.9905, + "eu-west-2": 0.0, + "us-east-1": 1.9792, + "us-east-2": 0.0, + "us-west-1": 2.4284, + "us-west-2": 1.9792 }, "c7g.16xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-1": 3.0407, + "ap-northeast-2": 0.0, + "ap-south-1": 1.7006, + "ap-south-2": 0.0, + "ap-southeast-1": 2.7956, "ap-southeast-2": 3.1495, - "eu-central-1": 2.7684, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.61, "eu-west-1": 2.6106, + "eu-west-2": 2.8775, "us-east-1": 2.45, "us-east-2": 2.4423, + "us-west-1": 3.0132, "us-west-2": 2.45 }, "c7gd.medium": { + "ap-northeast-1": 0.1177, + "ap-south-1": 0.0888, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.1125, + "eu-north-1": 0.1091, + "eu-south-2": 0.0, "eu-west-1": 0.1146, "us-east-1": 0.1054, "us-east-2": 0.0, + "us-west-1": 0.1167, "us-west-2": 0.1054 }, "c7gd.large": { - "eu-west-1": 0.1692, + "ap-northeast-1": 0.0, + "ap-south-1": 0.1176, + "ap-southeast-1": 0.1722, + "ap-southeast-2": 0.1862, + "eu-central-1": 0.1649, + "eu-north-1": 0.1583, + "eu-south-2": 0.1692, + "eu-west-1": 0.163, "us-east-1": 0.1507, - "us-east-2": 0.1562, + "us-east-2": 0.1507, + "us-west-1": 0.1802, "us-west-2": 0.1507 }, "c7gd.xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.1821, + "ap-southeast-1": 0.2844, + "ap-southeast-2": 0.2982, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.266, "eu-west-1": 0.266, "us-east-1": 0.2523, "us-east-2": 0.2523, + "us-west-1": 0.2868, "us-west-2": 0.2523 }, + "c7gd.metal": { + "ap-northeast-1": 3.8196, + "ap-south-1": 1.9732, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.9406, + "eu-central-1": 3.4868, + "eu-north-1": 3.275, + "eu-south-2": 3.4262, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.033, + "us-west-1": 3.7588, + "us-west-2": 3.033 + }, "c7gd.2xlarge": { - "eu-west-1": 0.5667, + "ap-northeast-1": 0.5912, + "ap-south-1": 0.3604, + "ap-southeast-1": 0.5788, + "ap-southeast-2": 0.6349, + "eu-central-1": 0.5748, + "eu-north-1": 0.5467, + "eu-south-2": 0.5667, + "eu-west-1": 0.542, "us-east-1": 0.5147, - "us-east-2": 0.0, - "us-west-2": 0.4929 + "us-east-2": 0.4929, + "us-west-1": 0.5836, + "us-west-2": 0.0 }, "c7gd.4xlarge": { + "ap-northeast-1": 1.0524, + "ap-south-1": 0.6184, + "ap-southeast-1": 1.0275, + "ap-southeast-2": 1.0826, + "eu-central-1": 0.9692, + "eu-north-1": 0.9634, + "eu-south-2": 0.954, "eu-west-1": 0.954, "us-east-1": 0.8558, - "us-east-2": 0.0, + "us-east-2": 0.8558, + "us-west-1": 1.0916, "us-west-2": 0.0 }, "c7gd.8xlarge": { - "eu-west-1": 1.778, - "us-east-1": 1.5815, + "ap-northeast-1": 1.9748, + "ap-south-1": 1.0516, + "ap-southeast-1": 1.8234, + "ap-southeast-2": 2.0353, + "eu-central-1": 1.9091, + "eu-north-1": 0.0, + "eu-south-2": 1.877, + "eu-west-1": 1.8769, + "us-east-1": 1.6686, "us-east-2": 1.6686, + "us-west-1": 2.0533, "us-west-2": 1.6686 }, "c7gd.12xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 1.5124, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.9879, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.7504, "eu-west-1": 2.602, "us-east-1": 2.3073, - "us-east-2": 2.438, + "us-east-2": 2.3073, + "us-west-1": 3.0149, "us-west-2": 2.438 }, "c7gd.16xlarge": { - "eu-west-1": 3.426, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 3.5169, + "ap-southeast-2": 0.0, + "eu-central-1": 3.4868, + "eu-north-1": 3.275, + "eu-south-2": 3.4262, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 3.033 }, "c7gn.medium": { + "ap-northeast-1": 0.0, "eu-west-1": 0.1347, - "us-east-1": 0.0, + "us-east-1": 0.1261, "us-east-2": 0.1261, - "us-west-2": 0.1261 + "us-west-2": 0.0 }, "c7gn.large": { - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.1848, + "ap-northeast-1": 0.0, + "eu-west-1": 0.201, + "us-east-1": 0.1923, + "us-east-2": 0.1923, "us-west-2": 0.1848 }, "c7gn.xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 0.3589, - "us-east-1": 0.3246, + "us-east-1": 0.3096, "us-east-2": 0.3096, "us-west-2": 0.3096 }, + "c7gn.metal": { + "ap-northeast-1": 5.1668, + "eu-west-1": 4.642, + "us-east-1": 0.0, + "us-east-2": 4.1236, + "us-west-2": 0.0 + }, "c7gn.2xlarge": { - "eu-west-1": 0.7277, - "us-east-1": 0.6292, + "ap-northeast-1": 0.7971, + "eu-west-1": 0.694, + "us-east-1": 0.6592, "us-east-2": 0.6592, "us-west-2": 0.6292 }, "c7gn.4xlarge": { - "eu-west-1": 1.258, + "ap-northeast-1": 0.0, + "eu-west-1": 0.0, "us-east-1": 1.1284, - "us-east-2": 1.1284, + "us-east-2": 0.0, "us-west-2": 1.1284 }, "c7gn.8xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.2466, "us-west-2": 2.2466 }, "c7gn.12xlarge": { + "ap-northeast-1": 4.1324, "eu-west-1": 3.7164, "us-east-1": 0.0, "us-east-2": 3.3049, - "us-west-2": 3.1252 + "us-west-2": 0.0 }, "c7gn.16xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 4.642, "us-east-1": 4.1236, "us-east-2": 0.0, "us-west-2": 0.0 }, + "c7i.large": { + "ap-northeast-1": 0.17235, + "ap-northeast-2": 0.0, + "ap-south-1": 0.15818, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.18821, + "ca-central-1": 0.0, + "eu-central-1": 0.16185, + "eu-north-1": 0.15555, + "eu-south-2": 0.0, + "eu-west-1": 0.16534, + "eu-west-2": 0.16605, + "eu-west-3": 0.16605, + "sa-east-1": 0.21131, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.1713, + "us-west-2": 0.15818 + }, + "c7i.xlarge": { + "ap-northeast-1": 0.2847, + "ap-northeast-2": 0.28176, + "ap-south-1": 0.25635, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.27483, + "eu-central-1": 0.28407, + "eu-north-1": 0.2511, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.2721, + "sa-east-1": 0.0, + "us-east-1": 0.2385, + "us-east-2": 0.25635, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7i.metal-24xl": { + "ap-northeast-1": 6.06208, + "ap-northeast-2": 4.9684, + "ap-south-1": 4.414, + "ap-southeast-1": 5.0692, + "ap-southeast-2": 5.7244, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 5.17504, + "eu-south-2": 4.9684, + "eu-west-1": 0.0, + "eu-west-2": 5.72944, + "eu-west-3": 5.72944, + "sa-east-1": 6.7324, + "us-east-1": 4.8424, + "us-east-2": 4.8424, + "us-gov-east-1": 5.78488, + "us-west-1": 6.00664, + "us-west-2": 4.414 + }, + "c7i.metal-48xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 9.8068, + "ap-south-1": 8.698, + "ap-southeast-1": 10.0084, + "ap-southeast-2": 11.3188, + "ca-central-1": 9.5044, + "eu-central-1": 9.9076, + "eu-north-1": 0.0, + "eu-south-2": 9.8068, + "eu-west-1": 9.32296, + "eu-west-2": 10.3108, + "eu-west-3": 0.0, + "sa-east-1": 13.3348, + "us-east-1": 8.698, + "us-east-2": 0.0, + "us-gov-east-1": 10.4116, + "us-west-1": 0.0, + "us-west-2": 8.698 + }, + "c7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.5332, + "ap-south-1": 0.0, + "ap-southeast-1": 0.58276, + "ap-southeast-2": 0.64282, + "ca-central-1": 0.0, + "eu-central-1": 0.57814, + "eu-north-1": 0.0, + "eu-south-2": 0.57352, + "eu-west-1": 0.0, + "eu-west-2": 0.59662, + "eu-west-3": 0.5542, + "sa-east-1": 0.0, + "us-east-1": 0.5227, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.61972, + "us-west-2": 0.0 + }, + "c7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.15564, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.8944, + "eu-south-2": 0.9364, + "eu-west-1": 0.89608, + "eu-west-2": 0.0, + "eu-west-3": 1.06324, + "sa-east-1": 1.2304, + "us-east-1": 0.9154, + "us-east-2": 0.9154, + "us-gov-east-1": 0.0, + "us-west-1": 1.0204, + "us-west-2": 0.844 + }, + "c7i.8xlarge": { + "ap-northeast-1": 2.10736, + "ap-northeast-2": 0.0, + "ap-south-1": 1.558, + "ap-southeast-1": 1.7764, + "ap-southeast-2": 2.18128, + "ca-central-1": 1.6924, + "eu-central-1": 1.92256, + "eu-north-1": 0.0, + "eu-south-2": 1.7428, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 2.3308, + "us-east-1": 1.7008, + "us-east-2": 1.7008, + "us-gov-east-1": 1.8436, + "us-west-1": 2.08888, + "us-west-2": 1.7008 + }, + "c7i.12xlarge": { + "ap-northeast-1": 2.8264, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 2.84656, + "ap-southeast-2": 3.20692, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 2.4232, + "eu-south-2": 2.79112, + "eu-west-1": 2.65806, + "eu-west-2": 2.6752, + "eu-west-3": 2.6752, + "sa-east-1": 3.4312, + "us-east-1": 0.0, + "us-east-2": 2.272, + "us-gov-east-1": 0.0, + "us-west-1": 2.8012, + "us-west-2": 2.272 + }, + "c7i.16xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.3556, + "ap-south-1": 3.2716, + "ap-southeast-1": 3.75208, + "ap-southeast-2": 4.23256, + "ca-central-1": 3.2548, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 3.3556, + "eu-west-1": 3.19432, + "eu-west-2": 3.5236, + "eu-west-3": 3.86296, + "sa-east-1": 4.5316, + "us-east-1": 0.0, + "us-east-2": 3.2716, + "us-gov-east-1": 3.89992, + "us-west-1": 3.6916, + "us-west-2": 0.0 + }, + "c7i.24xlarge": { + "ap-northeast-1": 5.5228, + "ap-northeast-2": 5.45224, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 5.0188, + "eu-north-1": 0.0, + "eu-south-2": 5.45224, + "eu-west-1": 5.18613, + "eu-west-2": 0.0, + "eu-west-3": 5.72944, + "sa-east-1": 0.0, + "us-east-1": 4.8424, + "us-east-2": 4.414, + "us-gov-east-1": 0.0, + "us-west-1": 5.4724, + "us-west-2": 4.414 + }, + "c7i.48xlarge": { + "ap-northeast-1": 10.9156, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 10.0084, + "ap-southeast-2": 0.0, + "ca-central-1": 9.5044, + "eu-central-1": 9.9076, + "eu-north-1": 9.3028, + "eu-south-2": 9.8068, + "eu-west-1": 9.32296, + "eu-west-2": 10.3108, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 8.698, + "us-east-2": 0.0, + "us-gov-east-1": 10.4116, + "us-west-1": 10.8148, + "us-west-2": 8.698 + }, + "c7i-flex.large": { + "ap-south-1": 0.14479, + "ap-southeast-1": 0.15778, + "ca-central-1": 0.15277, + "eu-north-1": 0.15077, + "eu-south-2": 0.15576, + "eu-west-1": 0.15097, + "eu-west-2": 0.16075, + "eu-west-3": 0.16075, + "sa-east-1": 0.19067, + "us-west-1": 0.16574 + }, + "c7i-flex.xlarge": { + "ap-south-1": 0.22958, + "ap-southeast-1": 0.25555, + "ca-central-1": 0.24554, + "eu-north-1": 0.24155, + "eu-south-2": 0.25152, + "eu-west-1": 0.24194, + "eu-west-2": 0.2615, + "eu-west-3": 0.2615, + "sa-east-1": 0.32135, + "us-west-1": 0.27147 + }, + "c7i-flex.2xlarge": { + "ap-south-1": 0.46915, + "ap-southeast-1": 0.5211, + "ca-central-1": 0.50107, + "eu-north-1": 0.49309, + "eu-south-2": 0.51304, + "eu-west-1": 0.49389, + "eu-west-2": 0.53299, + "eu-west-3": 0.53299, + "sa-east-1": 0.65269, + "us-west-1": 0.55294 + }, + "c7i-flex.4xlarge": { + "ap-south-1": 0.8083, + "ap-southeast-1": 0.9122, + "ca-central-1": 0.87214, + "eu-north-1": 0.85618, + "eu-south-2": 0.89608, + "eu-west-1": 0.85778, + "eu-west-2": 0.93598, + "eu-west-3": 0.93598, + "sa-east-1": 1.17538, + "us-west-1": 0.97588 + }, + "c7i-flex.8xlarge": { + "ap-south-1": 1.4866, + "ap-southeast-1": 1.69441, + "ca-central-1": 1.61428, + "eu-north-1": 1.58236, + "eu-south-2": 1.66216, + "eu-west-1": 1.58555, + "eu-west-2": 1.74196, + "eu-west-3": 1.74196, + "sa-east-1": 2.22076, + "us-west-1": 1.82176 + }, "cc2.8xlarge": { "ap-northeast-1": 2.479, "eu-west-1": 2.38, @@ -51472,10 +55397,10 @@ "d2.xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.994, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.988, - "ap-south-1": 0.976, + "ap-south-1": 0.887, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 0.895, @@ -51487,18 +55412,18 @@ "eu-west-3": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.825, "us-east-2": 0.75, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.971, - "us-west-1": 0.841, + "us-gov-west-1": 0.958, + "us-west-1": 0.919, "us-west-2": 0.0 }, "d2.2xlarge": { - "af-south-1": 1.88, - "ap-east-1": 0.0, + "af-south-1": 2.055, + "ap-east-1": 2.044, "ap-northeast-1": 1.818, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.818, "ap-northeast-3": 0.0, "ap-south-1": 1.783, "ap-southeast-1": 2.057, @@ -51507,7 +55432,7 @@ "eu-central-1": 1.89, "eu-north-1": 1.526, "eu-south-1": 1.674, - "eu-west-1": 1.6, + "eu-west-1": 1.76, "eu-west-2": 0.0, "eu-west-3": 0.0, "me-south-1": 1.909, @@ -51523,51 +55448,51 @@ "af-south-1": 3.98, "ap-east-1": 0.0, "ap-northeast-1": 3.857, - "ap-northeast-2": 3.8436, + "ap-northeast-2": 3.506, "ap-northeast-3": 3.506, "ap-south-1": 3.78, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.971, + "ap-southeast-2": 0.0, "ca-central-1": 3.47, "eu-central-1": 0.0, - "eu-north-1": 3.201, + "eu-north-1": 2.922, "eu-south-1": 3.527, - "eu-west-1": 3.377, + "eu-west-1": 3.07, "eu-west-2": 3.526, - "eu-west-3": 3.527, + "eu-west-3": 3.218, "me-south-1": 3.364, "sa-east-1": 0.0, - "us-east-1": 2.89, + "us-east-1": 0.0, "us-east-2": 2.89, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.442, "us-gov-west-1": 0.0, "us-west-1": 3.568, - "us-west-2": 3.179 + "us-west-2": 2.89 }, "d2.8xlarge": { "af-south-1": 7.13, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 7.786, + "ap-northeast-1": 6.882, "ap-northeast-2": 6.882, "ap-northeast-3": 6.882, "ap-south-1": 6.742, "ap-southeast-1": 7.09, "ap-southeast-2": 7.09, - "ca-central-1": 0.0, + "ca-central-1": 6.202, "eu-central-1": 6.482, "eu-north-1": 5.714, - "eu-south-1": 0.0, + "eu-south-1": 6.306, "eu-west-1": 6.01, "eu-west-2": 6.304, - "eu-west-3": 0.0, + "eu-west-3": 6.306, "me-south-1": 6.598, "sa-east-1": 0.0, - "us-east-1": 5.65, + "us-east-1": 0.0, "us-east-2": 5.65, "us-gov-east-1": 6.754, - "us-gov-west-1": 6.754, - "us-west-1": 6.38, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 5.65 }, "d3.xlarge": { "ap-northeast-1": 0.784, @@ -51576,6 +55501,7 @@ "ap-southeast-2": 0.686, "ca-central-1": 0.61, "eu-central-1": 0.718, + "eu-central-2": 0.784, "eu-west-1": 0.669, "eu-west-2": 0.7, "il-central-1": 0.7, @@ -51591,6 +55517,7 @@ "ap-southeast-2": 1.382, "ca-central-1": 1.23, "eu-central-1": 1.446, + "eu-central-2": 1.578, "eu-west-1": 1.349, "eu-west-2": 1.41, "il-central-1": 1.41, @@ -51606,6 +55533,7 @@ "ap-southeast-2": 2.634, "ca-central-1": 2.331, "eu-central-1": 2.762, + "eu-central-2": 3.025, "eu-west-1": 2.567, "eu-west-2": 2.689, "il-central-1": 2.689, @@ -51621,6 +55549,7 @@ "ap-southeast-2": 5.13808, "ca-central-1": 4.53112, "eu-central-1": 5.39448, + "eu-central-2": 5.92096, "eu-west-1": 5.00448, "eu-west-2": 5.24824, "il-central-1": 5.24824, @@ -51630,45 +55559,67 @@ "us-west-2": 4.12552 }, "d3en.xlarge": { + "ap-northeast-1": 0.822, + "ap-southeast-1": 0.719, + "eu-central-1": 0.753, "eu-west-1": 0.701, "us-east-1": 0.586, "us-west-2": 0.586 }, "d3en.2xlarge": { + "ap-northeast-1": 1.655, + "ap-southeast-1": 1.448, + "eu-central-1": 1.515, "eu-west-1": 1.413, "us-east-1": 1.181, "us-west-2": 1.181 }, "d3en.4xlarge": { + "ap-northeast-1": 3.179, + "ap-southeast-1": 2.766, + "eu-central-1": 2.901, "eu-west-1": 2.696, "us-east-1": 2.233, "us-west-2": 2.233 }, "d3en.6xlarge": { + "ap-northeast-1": 4.704, + "ap-southeast-1": 4.084, + "eu-central-1": 4.286, "eu-west-1": 3.978, "us-east-1": 3.284, "us-west-2": 3.284 }, "d3en.8xlarge": { + "ap-northeast-1": 6.2284, + "ap-southeast-1": 5.40168, + "eu-central-1": 5.67152, "eu-west-1": 5.26104, "us-east-1": 4.33576, "us-west-2": 4.33576 }, "d3en.12xlarge": { + "ap-northeast-1": 9.2776, + "ap-southeast-1": 8.03752, + "eu-central-1": 8.44228, "eu-west-1": 7.82656, "us-east-1": 6.43864, "us-west-2": 6.43864 }, "dl1.24xlarge": { "us-east-1": 13.23904, - "us-west-2": 14.54994 + "us-west-2": 0.0 + }, + "dl2q.24xlarge": { + "eu-central-1": 0.0, + "us-west-2": 9.9413 }, "f1.2xlarge": { "eu-central-1": 2.0374, "eu-west-1": 1.945, "eu-west-2": 2.036, "us-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.11, "us-west-2": 1.945 }, "f1.4xlarge": { @@ -51676,24 +55627,24 @@ "eu-west-1": 0.0, "eu-west-2": 3.942, "us-east-1": 3.76, - "us-gov-west-1": 4.486, + "us-gov-west-1": 0.0, "us-west-2": 3.43 }, "f1.16xlarge": { "eu-west-1": 0.0, - "us-east-1": 13.33, - "us-gov-west-1": 15.97, + "us-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 13.33 }, "g2.2xlarge": { - "ap-northeast-1": 1.118, + "ap-northeast-1": 1.028, "ap-northeast-2": 1.1178, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 1.13, + "ap-southeast-2": 1.028, "eu-central-1": 0.902, - "eu-west-1": 0.902, + "eu-west-1": 0.832, "sa-east-1": 0.0, - "us-east-1": 0.845, + "us-east-1": 0.78, "us-west-1": 0.902, "us-west-2": 0.0 }, @@ -51701,8 +55652,8 @@ "ap-northeast-1": 3.722, "ap-northeast-2": 0.0, "ap-southeast-1": 4.13, - "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ap-southeast-2": 3.722, + "eu-central-1": 3.218, "eu-west-1": 2.938, "sa-east-1": 0.0, "us-east-1": 2.73, @@ -51711,13 +55662,13 @@ }, "g3.4xlarge": { "ap-northeast-1": 1.868, - "ap-northeast-2": 0.0, - "ap-southeast-1": 1.967, + "ap-northeast-2": 1.692, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.0594, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.559, + "eu-west-1": 1.461, + "eu-west-2": 1.7019, "us-east-1": 1.384, "us-east-2": 1.27, "us-gov-west-1": 1.45, @@ -51725,16 +55676,16 @@ "us-west-2": 1.384 }, "g3.8xlarge": { - "ap-northeast-1": 3.606, + "ap-northeast-1": 0.0, "ap-northeast-2": 3.254, "ap-southeast-1": 3.804, - "ap-southeast-2": 3.9888, - "ca-central-1": 3.2452, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 3.265, - "eu-west-1": 2.55, + "eu-west-1": 2.792, "eu-west-2": 0.0, "us-east-1": 2.41, - "us-east-2": 2.41, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-1": 3.5048, "us-west-2": 2.41 @@ -51745,13 +55696,13 @@ "ap-southeast-1": 6.81, "ap-southeast-2": 0.0, "ca-central-1": 5.794, - "eu-central-1": 0.0, + "eu-central-1": 5.83, "eu-west-1": 0.0, "eu-west-2": 5.846, "us-east-1": 4.69, "us-east-2": 4.69, "us-gov-west-1": 5.41, - "us-west-1": 6.266, + "us-west-1": 0.0, "us-west-2": 4.69 }, "g3s.xlarge": { @@ -51777,11 +55728,11 @@ "us-west-2": 0.47638 }, "g4ad.2xlarge": { - "ap-northeast-1": 0.93333, + "ap-northeast-1": 0.0, "ca-central-1": 0.79463, "eu-central-1": 0.80662, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 0.79463, + "eu-west-2": 0.76292, "us-east-1": 0.67117, "us-east-2": 0.67117, "us-west-2": 0.0 @@ -51793,73 +55744,73 @@ "eu-west-1": 1.1948, "eu-west-2": 1.2454, "us-east-1": 0.0, - "us-east-2": 1.0837, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 1.0837 }, "g4ad.8xlarge": { - "ap-northeast-1": 2.47, + "ap-northeast-1": 2.704, "ca-central-1": 2.066, - "eu-central-1": 2.298, + "eu-central-1": 0.0, "eu-west-1": 2.2596, "eu-west-2": 2.3608, - "us-east-1": 1.864, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 1.864 + "us-west-2": 2.0374 }, "g4ad.16xlarge": { "ap-northeast-1": 4.81, "ca-central-1": 4.002, - "eu-central-1": 0.0, + "eu-central-1": 4.8996, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 4.5916, "us-east-1": 0.0, "us-east-2": 3.9448, "us-west-2": 3.598 }, "g4dn.xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.803, "ap-east-1": 0.87, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.746, + "ap-northeast-3": 0.77, + "ap-south-1": 0.674, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.744, "ca-central-1": 0.0, "eu-central-1": 0.718, - "eu-north-1": 0.0, + "eu-north-1": 0.651, "eu-south-1": 0.716, - "eu-west-1": 0.685, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.715, "eu-west-3": 0.675, "me-south-1": 0.705, - "sa-east-1": 1.012, + "sa-east-1": 0.954, "us-east-1": 0.0, "us-east-2": 0.618, "us-gov-east-1": 0.723, - "us-gov-west-1": 0.0, - "us-west-1": 0.691, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.733 + "us-gov-west-1": 0.763, + "us-west-1": 0.733, + "us-west-2": 0.618, + "us-west-2-lax-1": 0.0 }, "g4dn.metal": { - "af-south-1": 0.0, + "af-south-1": 10.511, "ap-east-1": 12.178, "ap-northeast-1": 10.692, "ap-northeast-2": 9.754, - "ap-northeast-3": 10.692, + "ap-northeast-3": 0.0, "ap-south-1": 8.742, - "ap-southeast-1": 11.078, + "ap-southeast-1": 0.0, "ap-southeast-2": 10.304, "ca-central-1": 0.0, "eu-central-1": 9.91, "eu-north-1": 0.0, "eu-south-1": 9.29, "eu-west-1": 8.854, - "eu-west-2": 0.0, + "eu-west-2": 9.284, "eu-west-3": 9.278, - "me-south-1": 9.726, - "sa-east-1": 13.428, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 9.992, @@ -51868,38 +55819,38 @@ "us-west-2-lax-1": 9.519 }, "g4dn.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.193, "ap-east-1": 1.288, - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.055, - "ap-northeast-3": 0.0, + "ap-northeast-1": 1.145, + "ap-northeast-2": 1.11, + "ap-northeast-3": 1.211, "ap-south-1": 0.958, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.182, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 1.07, "eu-north-1": 0.928, "eu-south-1": 1.068, - "eu-west-1": 1.023, + "eu-west-1": 0.968, "eu-west-2": 1.01, - "eu-west-3": 1.062, + "eu-west-3": 0.0, "me-south-1": 1.112, "sa-east-1": 0.0, "us-east-1": 0.927, - "us-east-2": 0.927, + "us-east-2": 0.882, "us-gov-east-1": 0.0, "us-gov-west-1": 1.078, - "us-west-1": 1.093, + "us-west-1": 0.0, "us-west-2": 0.882, - "us-west-2-lax-1": 1.032 + "us-west-2-lax-1": 0.0 }, "g4dn.4xlarge": { - "af-south-1": 1.831, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 1.984, "ap-northeast-1": 1.861, "ap-northeast-2": 0.0, "ap-northeast-3": 1.755, - "ap-south-1": 1.535, + "ap-south-1": 0.0, "ap-southeast-1": 1.815, "ap-southeast-2": 1.696, "ca-central-1": 1.547, @@ -51907,20 +55858,20 @@ "eu-north-1": 1.407, "eu-south-1": 1.631, "eu-west-1": 1.56, - "eu-west-2": 1.63, + "eu-west-2": 1.539, "eu-west-3": 1.622, "me-south-1": 1.607, - "sa-east-1": 0.0, + "sa-east-1": 2.309, "us-east-1": 1.334, - "us-east-2": 1.334, - "us-gov-east-1": 1.739, + "us-east-2": 1.406, + "us-gov-east-1": 1.648, "us-gov-west-1": 0.0, "us-west-1": 1.672, - "us-west-2": 1.334, + "us-west-2": 1.406, "us-west-2-lax-1": 1.575 }, "g4dn.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.205, "ap-east-1": 3.481, "ap-northeast-1": 0.0, "ap-northeast-2": 2.807, @@ -51933,155 +55884,155 @@ "eu-north-1": 2.438, "eu-south-1": 2.843, "eu-west-1": 0.0, - "eu-west-2": 2.841, - "eu-west-3": 0.0, - "me-south-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 2.674, + "me-south-1": 2.799, "sa-east-1": 4.069, "us-east-1": 2.437, "us-east-2": 2.437, - "us-gov-east-1": 3.037, - "us-gov-west-1": 0.0, - "us-west-1": 2.741, + "us-gov-east-1": 2.873, + "us-gov-west-1": 2.873, + "us-west-1": 2.916, "us-west-2": 0.0, "us-west-2-lax-1": 2.741 }, "g4dn.12xlarge": { "af-south-1": 5.32, - "ap-east-1": 6.516, - "ap-northeast-1": 5.754, + "ap-east-1": 6.154, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.754, "ap-south-1": 0.0, - "ap-southeast-1": 5.932, + "ap-southeast-1": 5.604, "ap-southeast-2": 5.217, "ca-central-1": 0.0, "eu-central-1": 5.338, "eu-north-1": 0.0, - "eu-south-1": 5.008, + "eu-south-1": 4.71, "eu-west-1": 0.0, "eu-west-2": 4.707, "eu-west-3": 4.978, - "me-south-1": 5.24, + "me-south-1": 4.928, "sa-east-1": 0.0, "us-east-1": 4.277, - "us-east-2": 4.277, + "us-east-2": 4.042, "us-gov-east-1": 5.357, - "us-gov-west-1": 5.357, + "us-gov-west-1": 0.0, "us-west-1": 5.139, "us-west-2": 4.277, - "us-west-2-lax-1": 5.139 + "us-west-2-lax-1": 4.824 }, "g4dn.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 7.234, "ap-northeast-1": 6.387, - "ap-northeast-2": 5.804, + "ap-northeast-2": 5.483, "ap-northeast-3": 6.387, - "ap-south-1": 0.0, + "ap-south-1": 5.208, "ap-southeast-1": 6.585, "ap-southeast-2": 6.129, - "ca-central-1": 5.252, + "ca-central-1": 4.962, "eu-central-1": 5.924, - "eu-north-1": 4.747, + "eu-north-1": 0.0, "eu-south-1": 5.225, - "eu-west-1": 0.0, + "eu-west-1": 5.298, "eu-west-2": 5.553, - "eu-west-3": 5.218, + "eu-west-3": 0.0, "me-south-1": 5.815, "sa-east-1": 8.008, "us-east-1": 4.743, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 5.945, - "us-west-1": 5.702, - "us-west-2": 4.482, - "us-west-2-lax-1": 0.0 + "us-gov-east-1": 5.616, + "us-gov-west-1": 5.616, + "us-west-1": 5.352, + "us-west-2": 0.0, + "us-west-2-lax-1": 5.352 }, "g5.xlarge": { "ap-northeast-1": 1.519, - "ap-northeast-2": 1.297, - "ap-south-1": 1.3888, - "ap-southeast-2": 1.368, - "ap-southeast-3": 1.468, - "ca-central-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.268, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 1.2887, "eu-central-1": 0.0, "eu-north-1": 1.127, - "eu-west-1": 0.0, + "eu-west-1": 1.2953, "eu-west-2": 0.0, - "il-central-1": 1.23915, + "il-central-1": 0.0, "me-central-1": 1.4174, "sa-east-1": 0.0, - "us-east-1": 1.1666, - "us-east-2": 1.066, - "us-west-2": 1.1666 + "us-east-1": 1.066, + "us-east-2": 1.1666, + "us-west-2": 1.066 }, "g5.2xlarge": { "ap-northeast-1": 1.88776, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.76933, "ap-south-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 1.99595, "ca-central-1": 1.6103, - "eu-central-1": 1.79716, + "eu-central-1": 0.0, "eu-north-1": 1.54404, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 1.55061, "me-central-1": 1.61669, "sa-east-1": 0.0, - "us-east-1": 1.342, - "us-east-2": 1.342, + "us-east-1": 0.0, + "us-east-2": 1.4632, "us-west-2": 1.342 }, "g5.4xlarge": { - "ap-northeast-1": 2.72081, - "ap-northeast-2": 2.12691, - "ap-south-1": 0.0, + "ap-northeast-1": 2.48528, + "ap-northeast-2": 0.0, + "ap-south-1": 2.2751, "ap-southeast-2": 2.24152, "ap-southeast-3": 2.40295, "ca-central-1": 0.0, - "eu-central-1": 2.16081, + "eu-central-1": 2.36389, "eu-north-1": 2.02472, - "eu-west-1": 2.12416, - "eu-west-2": 0.0, + "eu-west-1": 1.94287, + "eu-west-2": 2.39763, "il-central-1": 0.0, - "me-central-1": 2.32127, + "me-central-1": 0.0, "sa-east-1": 3.16652, - "us-east-1": 0.0, + "us-east-1": 1.754, "us-east-2": 1.9164, - "us-west-2": 0.0, + "us-west-2": 1.754, "us-west-2-lax-1": 2.36098 }, "g5.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.03536, "ap-northeast-2": 3.14012, - "ap-south-1": 3.3635, + "ap-south-1": 3.06955, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ca-central-1": 2.84811, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 2.98608, + "eu-north-1": 2.72644, "eu-west-1": 2.86271, "eu-west-2": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 2.8228, - "us-west-2": 2.578, + "us-east-1": 2.578, + "us-east-2": 2.578, + "us-west-2": 0.0, "us-west-2-lax-1": 3.49296 }, "g5.12xlarge": { - "ap-northeast-1": 8.35609, + "ap-northeast-1": 9.1787, "ap-northeast-2": 0.0, "ap-south-1": 6.94091, "ap-southeast-2": 7.50473, "ap-southeast-3": 8.06854, "ca-central-1": 6.42784, "eu-central-1": 0.0, - "eu-north-1": 6.14593, + "eu-north-1": 6.74752, "eu-west-1": 6.46167, - "eu-west-2": 8.04994, + "eu-west-2": 7.32994, "il-central-1": 0.0, "me-central-1": 0.0, "sa-east-1": 9.77127, @@ -52091,20 +56042,20 @@ }, "g5.16xlarge": { "ap-northeast-1": 6.66446, - "ap-northeast-2": 0.0, + "ap-northeast-2": 5.67019, "ap-south-1": 0.0, - "ap-southeast-2": 5.45561, - "ap-southeast-3": 6.43605, + "ap-southeast-2": 5.98818, + "ap-southeast-3": 0.0, "ca-central-1": 4.67794, "eu-central-1": 5.25204, "eu-north-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 5.3294, - "il-central-1": 4.93099, - "me-central-1": 5.65675, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 4.226, + "eu-west-2": 0.0, + "il-central-1": 5.41109, + "me-central-1": 5.15432, + "sa-east-1": 7.78862, + "us-east-1": 4.226, + "us-east-2": 4.6356, "us-west-2": 4.6356 }, "g5.24xlarge": { @@ -52112,16 +56063,16 @@ "ap-northeast-2": 10.14404, "ap-south-1": 0.0, "ap-southeast-2": 11.7777, - "ap-southeast-3": 12.6682, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 10.31405, "eu-north-1": 9.6316, "eu-west-1": 10.13028, - "eu-west-2": 11.50165, + "eu-west-2": 10.46786, "il-central-1": 0.0, - "me-central-1": 10.11976, + "me-central-1": 0.0, "sa-east-1": 13.97318, - "us-east-1": 9.0884, + "us-east-1": 0.0, "us-east-2": 9.0884, "us-west-2": 9.0884 }, @@ -52129,8 +56080,8 @@ "ap-northeast-1": 23.75246, "ap-northeast-2": 20.15809, "ap-south-1": 19.68855, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-2": 21.30764, + "ap-southeast-3": 22.92672, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 17.40564, @@ -52138,16 +56089,16 @@ "eu-west-2": 0.0, "il-central-1": 19.22145, "me-central-1": 20.10951, - "sa-east-1": 0.0, + "sa-east-1": 27.81636, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 16.418 + "us-east-2": 16.418, + "us-west-2": 0.0 }, "g5g.xlarge": { - "ap-northeast-1": 0.6269, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.6076, "ap-southeast-1": 0.0, - "eu-central-1": 0.5854, + "eu-central-1": 0.6195, "eu-south-2": 0.5287, "us-east-1": 0.48, "us-west-2": 0.0 @@ -52164,28 +56115,28 @@ "g5g.2xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.8139, - "ap-southeast-1": 0.9546, + "ap-southeast-1": 0.0, "eu-central-1": 0.8255, "eu-south-2": 0.0, "us-east-1": 0.7194, - "us-west-2": 0.0 + "us-west-2": 0.686 }, "g5g.4xlarge": { "ap-northeast-1": 1.3203, "ap-northeast-2": 0.0, "ap-southeast-1": 1.2886, "eu-central-1": 0.0, - "eu-south-2": 0.0, - "us-east-1": 0.0, + "eu-south-2": 1.054, + "us-east-1": 1.0077, "us-west-2": 0.958 }, "g5g.8xlarge": { "ap-northeast-1": 2.1023, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-2": 1.8176, + "ap-southeast-1": 2.0498, "eu-central-1": 1.9578, "eu-south-2": 1.6611, - "us-east-1": 0.0, + "us-east-1": 1.502, "us-west-2": 1.5843 }, "g5g.16xlarge": { @@ -52193,27 +56144,77 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 3.5626, - "eu-south-2": 0.0, + "eu-south-2": 3.1922, "us-east-1": 2.874, "us-west-2": 2.874 }, + "g6.xlarge": { + "us-east-1": 0.94528, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.2xlarge": { + "us-east-1": 1.20536, + "us-east-2": 1.1076, + "us-west-2": 1.1076 + }, + "g6.4xlarge": { + "us-east-1": 0.0, + "us-east-2": 1.58552, + "us-west-2": 1.58552 + }, + "g6.8xlarge": { + "us-east-1": 0.0, + "us-east-2": 2.34584, + "us-west-2": 0.0 + }, + "g6.12xlarge": { + "us-east-1": 5.19176, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.16xlarge": { + "us-east-1": 0.0, + "us-east-2": 3.86648, + "us-west-2": 0.0 + }, + "g6.24xlarge": { + "us-east-1": 7.47272, + "us-east-2": 6.8052, + "us-west-2": 0.0 + }, + "g6.48xlarge": { + "us-east-1": 0.0, + "us-east-2": 13.4804, + "us-west-2": 13.4804 + }, + "gr6.4xlarge": { + "us-east-1": 1.6692, + "us-east-2": 1.6692, + "us-west-2": 1.6692 + }, + "gr6.8xlarge": { + "us-east-1": 2.5764, + "us-east-2": 2.5764, + "us-west-2": 2.5764 + }, "h1.2xlarge": { "eu-west-1": 0.741, - "us-east-1": 0.68, - "us-east-2": 0.716, - "us-west-2": 0.68 + "us-east-1": 0.716, + "us-east-2": 0.68, + "us-west-2": 0.0 }, "h1.4xlarge": { "eu-west-1": 1.436, - "us-east-1": 0.0, + "us-east-1": 1.23, "us-east-2": 1.301, "us-west-2": 1.23 }, "h1.8xlarge": { "eu-west-1": 2.574, - "us-east-1": 0.0, + "us-east-1": 2.472, "us-east-2": 2.33, - "us-west-2": 2.33 + "us-west-2": 0.0 }, "h1.16xlarge": { "eu-west-1": 5.018, @@ -52223,6 +56224,7 @@ }, "hpc6a.48xlarge": { "ap-southeast-1": 3.4505, + "ap-southeast-2": 3.8909, "eu-north-1": 3.223, "us-east-2": 3.01, "us-gov-east-1": 3.597, @@ -52233,14 +56235,47 @@ "us-east-2": 5.83, "us-gov-west-1": 6.9844 }, + "hpc7a.12xlarge": { + "eu-north-1": 7.8552, + "eu-west-1": 7.8552, + "us-east-2": 7.33, + "us-gov-west-1": 8.7974 + }, + "hpc7a.24xlarge": { + "eu-north-1": 7.8552, + "eu-west-1": 7.8552, + "us-east-2": 7.33, + "us-gov-west-1": 8.7974 + }, + "hpc7a.48xlarge": { + "eu-north-1": 7.8552, + "eu-west-1": 7.8552, + "us-east-2": 7.33, + "us-gov-west-1": 8.7974 + }, + "hpc7a.96xlarge": { + "eu-north-1": 7.8552, + "eu-west-1": 7.8552, + "us-east-2": 7.33, + "us-gov-west-1": 8.7974 + }, "hpc7g.4xlarge": { - "us-east-1": 1.8132 + "ap-northeast-1": 2.2417, + "eu-west-1": 1.9359, + "us-east-1": 1.8132, + "us-gov-west-1": 2.1562 }, "hpc7g.8xlarge": { - "us-east-1": 1.8132 + "ap-northeast-1": 2.2417, + "eu-west-1": 1.9359, + "us-east-1": 1.8132, + "us-gov-west-1": 2.1562 }, "hpc7g.16xlarge": { - "us-east-1": 1.8132 + "ap-northeast-1": 2.2417, + "eu-west-1": 1.9359, + "us-east-1": 1.8132, + "us-gov-west-1": 2.1562 }, "hs1.8xlarge": { "ap-northeast-1": 5.53, @@ -52252,16 +56287,16 @@ "us-west-2": 4.73 }, "i2.xlarge": { - "ap-northeast-1": 1.061, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 1.027, "ap-southeast-1": 1.078, - "ap-southeast-2": 1.18, - "eu-central-1": 0.0, - "eu-west-1": 0.998, + "ap-southeast-2": 0.0, + "eu-central-1": 1.073, + "eu-west-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.913, - "us-east-2": 0.998, + "us-east-2": 0.913, "us-gov-west-1": 0.0, "us-west-1": 1.092, "us-west-2": 0.0 @@ -52270,15 +56305,15 @@ "ap-northeast-1": 2.331, "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 2.165, - "ap-southeast-2": 0.0, - "eu-central-1": 2.371, - "eu-west-1": 2.006, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.165, + "eu-central-1": 0.0, + "eu-west-1": 0.0, "sa-east-1": 0.0, "us-east-1": 2.006, "us-east-2": 2.006, "us-gov-west-1": 0.0, - "us-west-1": 2.006, + "us-west-1": 0.0, "us-west-2": 0.0 }, "i2.4xlarge": { @@ -52286,22 +56321,22 @@ "ap-northeast-2": 4.5322, "ap-south-1": 3.997, "ap-southeast-1": 4.607, - "ap-southeast-2": 0.0, + "ap-southeast-2": 4.607, "eu-central-1": 4.599, - "eu-west-1": 0.0, + "eu-west-1": 3.881, "sa-east-1": 0.0, "us-east-1": 3.54, "us-east-2": 0.0, - "us-gov-west-1": 4.222, - "us-west-1": 3.881, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-1": 4.256, + "us-west-2": 3.54 }, "i2.8xlarge": { "ap-northeast-1": 8.134, "ap-northeast-2": 8.134, "ap-south-1": 7.863, - "ap-southeast-1": 0.0, - "ap-southeast-2": 8.27, + "ap-southeast-1": 8.27, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 7.632, "sa-east-1": 0.0, @@ -52309,85 +56344,85 @@ "us-east-2": 6.95, "us-gov-west-1": 8.314, "us-west-1": 7.632, - "us-west-2": 6.95 + "us-west-2": 0.0 }, "i3.large": { "af-south-1": 0.286, - "ap-east-1": 0.266, - "ap-northeast-1": 0.243, - "ap-northeast-2": 0.243, - "ap-northeast-3": 0.243, - "ap-south-1": 0.237, + "ap-east-1": 0.287, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.261, + "ap-northeast-3": 0.261, + "ap-south-1": 0.255, "ap-south-2": 0.255, "ap-southeast-1": 0.247, - "ap-southeast-2": 0.266, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.266, "ap-southeast-4": 0.0, - "ca-central-1": 0.249, + "ca-central-1": 0.232, "eu-central-1": 0.0, - "eu-central-2": 0.265, + "eu-central-2": 0.285, "eu-north-1": 0.223, "eu-south-1": 0.0, - "eu-south-2": 0.249, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.259, + "eu-west-2": 0.0, "eu-west-3": 0.259, "il-central-1": 0.259, "me-central-1": 0.249, "me-south-1": 0.249, "sa-east-1": 0.334, "us-east-1": 0.216, - "us-east-2": 0.232, - "us-gov-east-1": 0.267, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.267, "us-west-1": 0.232, - "us-west-2": 0.232 + "us-west-2": 0.216 }, "i3.xlarge": { - "af-south-1": 0.47, - "ap-east-1": 0.0, - "ap-northeast-1": 0.426, + "af-south-1": 0.0, + "ap-east-1": 0.472, + "ap-northeast-1": 0.463, "ap-northeast-2": 0.0, "ap-northeast-3": 0.426, "ap-south-1": 0.414, "ap-south-2": 0.449, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.471, - "ap-southeast-3": 0.434, - "ap-southeast-4": 0.0, + "ap-southeast-2": 0.434, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.471, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.469, + "eu-central-2": 0.51, "eu-north-1": 0.0, "eu-south-1": 0.422, "eu-south-2": 0.438, - "eu-west-1": 0.0, - "eu-west-2": 0.422, + "eu-west-1": 0.404, + "eu-west-2": 0.0, "eu-west-3": 0.422, - "il-central-1": 0.421, + "il-central-1": 0.457, "me-central-1": 0.438, - "me-south-1": 0.476, + "me-south-1": 0.438, "sa-east-1": 0.608, - "us-east-1": 0.0, - "us-east-2": 0.403, + "us-east-1": 0.372, + "us-east-2": 0.372, "us-gov-east-1": 0.0, "us-gov-west-1": 0.436, - "us-west-1": 0.438, - "us-west-2": 0.403 + "us-west-1": 0.404, + "us-west-2": 0.372 }, "i3.metal": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 5.986, + "ap-northeast-1": 0.0, "ap-northeast-2": 5.986, - "ap-northeast-3": 5.986, + "ap-northeast-3": 0.0, "ap-south-1": 5.794, "ap-southeast-1": 6.114, "ap-southeast-2": 6.114, "ca-central-1": 5.634, "eu-central-1": 6.082, - "eu-north-1": 5.346, - "eu-south-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 5.922, "eu-west-1": 5.634, "eu-west-2": 5.922, "eu-west-3": 5.922, @@ -52397,85 +56432,85 @@ "us-east-2": 5.122, "us-gov-east-1": 0.0, "us-gov-west-1": 6.146, - "us-west-1": 5.634, - "us-west-2": 5.122 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "i3.2xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.862, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.862, "ap-south-1": 0.909, - "ap-south-2": 0.909, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.953, + "ap-southeast-2": 0.953, "ap-southeast-3": 0.953, - "ap-southeast-4": 0.878, + "ap-southeast-4": 0.0, "ca-central-1": 0.887, "eu-central-1": 0.948, - "eu-central-2": 0.948, + "eu-central-2": 1.03, "eu-north-1": 0.847, "eu-south-1": 0.0, "eu-south-2": 0.887, "eu-west-1": 0.887, - "eu-west-2": 0.0, - "eu-west-3": 0.854, - "il-central-1": 0.925, + "eu-west-2": 0.926, + "eu-west-3": 0.926, + "il-central-1": 0.852, "me-central-1": 0.962, "me-south-1": 0.0, - "sa-east-1": 1.126, + "sa-east-1": 0.0, "us-east-1": 0.816, "us-east-2": 0.816, - "us-gov-east-1": 0.957, - "us-gov-west-1": 0.957, + "us-gov-east-1": 0.882, + "us-gov-west-1": 0.0, "us-west-1": 0.818, - "us-west-2": 0.816 + "us-west-2": 0.0 }, "i3.4xlarge": { "af-south-1": 1.77, - "ap-east-1": 0.0, - "ap-northeast-1": 1.594, + "ap-east-1": 1.943, + "ap-northeast-1": 1.74, "ap-northeast-2": 1.74, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.626, + "ap-south-2": 1.546, + "ap-southeast-1": 1.776, + "ap-southeast-2": 0.0, "ap-southeast-3": 1.776, "ap-southeast-4": 0.0, - "ca-central-1": 1.644, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 1.564, + "eu-north-1": 0.0, "eu-south-1": 1.578, "eu-south-2": 0.0, "eu-west-1": 1.644, - "eu-west-2": 1.578, - "eu-west-3": 0.0, - "il-central-1": 1.575, - "me-central-1": 1.795, - "me-south-1": 1.644, - "sa-east-1": 2.321, - "us-east-1": 1.503, - "us-east-2": 0.0, - "us-gov-east-1": 1.634, - "us-gov-west-1": 0.0, - "us-west-1": 1.506, - "us-west-2": 1.503 + "eu-west-2": 1.723, + "eu-west-3": 1.578, + "il-central-1": 1.719, + "me-central-1": 0.0, + "me-south-1": 1.795, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.378, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.784, + "us-west-1": 0.0, + "us-west-2": 1.378 }, "i3.8xlarge": { "af-south-1": 3.41, - "ap-east-1": 3.756, - "ap-northeast-1": 0.0, + "ap-east-1": 3.426, + "ap-northeast-1": 3.351, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.122, - "ap-southeast-3": 3.421, - "ap-southeast-4": 0.0, + "ap-southeast-2": 3.421, + "ap-southeast-3": 3.122, + "ap-southeast-4": 3.421, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.0, @@ -52488,25 +56523,25 @@ "il-central-1": 0.0, "me-central-1": 3.157, "me-south-1": 3.157, - "sa-east-1": 4.114, + "sa-east-1": 0.0, "us-east-1": 2.626, "us-east-2": 2.626, "us-gov-east-1": 3.138, "us-gov-west-1": 0.0, - "us-west-1": 3.157, + "us-west-1": 0.0, "us-west-2": 2.626 }, "i3.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 6.722, "ap-northeast-1": 0.0, "ap-northeast-2": 5.986, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.986, "ap-south-1": 0.0, - "ap-south-2": 5.794, - "ap-southeast-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 6.114, "ap-southeast-2": 6.114, - "ap-southeast-3": 0.0, + "ap-southeast-3": 6.114, "ap-southeast-4": 6.114, "ca-central-1": 5.634, "eu-central-1": 6.082, @@ -52515,12 +56550,12 @@ "eu-south-1": 5.922, "eu-south-2": 5.634, "eu-west-1": 5.634, - "eu-west-2": 0.0, + "eu-west-2": 5.922, "eu-west-3": 0.0, "il-central-1": 5.909, "me-central-1": 6.184, "me-south-1": 6.184, - "sa-east-1": 0.0, + "sa-east-1": 8.098, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 6.146, @@ -52529,24 +56564,25 @@ "us-west-2": 5.122 }, "i3en.large": { - "af-south-1": 0.376, - "ap-east-1": 0.358, + "af-south-1": 0.357, + "ap-east-1": 0.378, "ap-northeast-1": 0.326, - "ap-northeast-2": 0.343, + "ap-northeast-2": 0.326, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.331, "ap-southeast-2": 0.331, "ap-southeast-3": 0.331, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.331, "ca-central-1": 0.326, + "ca-west-1": 0.31, "eu-central-1": 0.33, - "eu-central-2": 0.0, + "eu-central-2": 0.376, "eu-north-1": 0.0, "eu-south-1": 0.322, "eu-south-2": 0.0, - "eu-west-1": 0.326, + "eu-west-1": 0.31, "eu-west-2": 0.323, "eu-west-3": 0.323, "il-central-1": 0.0, @@ -52557,27 +56593,28 @@ "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.333, - "us-west-1": 0.0, - "us-west-2": 0.301, + "us-west-1": 0.31, + "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "i3en.xlarge": { - "af-south-1": 0.654, + "af-south-1": 0.693, "ap-east-1": 0.0, "ap-northeast-1": 0.592, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.592, + "ap-northeast-3": 0.626, "ap-south-1": 0.0, "ap-south-2": 0.574, "ap-southeast-1": 0.637, "ap-southeast-2": 0.602, - "ap-southeast-3": 0.637, - "ap-southeast-4": 0.637, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.602, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.693, + "ca-west-1": 0.0, + "eu-central-1": 0.635, + "eu-central-2": 0.654, "eu-north-1": 0.565, - "eu-south-1": 0.584, + "eu-south-1": 0.619, "eu-south-2": 0.0, "eu-west-1": 0.593, "eu-west-2": 0.62, @@ -52585,12 +56622,12 @@ "il-central-1": 0.619, "me-central-1": 0.61, "me-south-1": 0.643, - "sa-east-1": 0.0, - "us-east-1": 0.512, + "sa-east-1": 0.827, + "us-east-1": 0.541, "us-east-2": 0.512, "us-gov-east-1": 0.641, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 0.606, + "us-west-1": 0.593, "us-west-2": 0.512, "us-west-2-lax-1": 0.602 }, @@ -52604,9 +56641,10 @@ "ap-south-2": 12.466, "ap-southeast-1": 13.138, "ap-southeast-2": 13.138, - "ap-southeast-3": 0.0, + "ap-southeast-3": 13.138, "ap-southeast-4": 13.138, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 13.09, "eu-central-2": 14.386, "eu-north-1": 11.506, @@ -52616,7 +56654,7 @@ "eu-west-2": 12.754, "eu-west-3": 12.754, "il-central-1": 12.73, - "me-central-1": 13.33, + "me-central-1": 0.0, "me-south-1": 13.272, "sa-east-1": 0.0, "us-east-1": 10.978, @@ -52624,25 +56662,26 @@ "us-gov-east-1": 13.234, "us-gov-west-1": 13.234, "us-west-1": 12.13, - "us-west-2": 10.978, + "us-west-2": 0.0, "us-west-2-lax-1": 13.148 }, "i3en.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 1.401, + "ap-east-1": 1.323, "ap-northeast-1": 1.263, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.194, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 1.225, "ap-southeast-1": 0.0, "ap-southeast-2": 1.214, - "ap-southeast-3": 1.214, + "ap-southeast-3": 1.285, "ap-southeast-4": 1.214, "ca-central-1": 0.0, + "ca-west-1": 1.195, "eu-central-1": 0.0, - "eu-central-2": 1.318, - "eu-north-1": 1.078, + "eu-central-2": 0.0, + "eu-north-1": 1.14, "eu-south-1": 1.179, "eu-south-2": 0.0, "eu-west-1": 0.0, @@ -52651,42 +56690,43 @@ "il-central-1": 1.18, "me-central-1": 0.0, "me-south-1": 1.225, - "sa-east-1": 1.57, - "us-east-1": 1.093, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.293, - "us-gov-west-1": 1.222, - "us-west-1": 1.13, + "us-gov-west-1": 1.293, + "us-west-1": 0.0, "us-west-2": 1.093, "us-west-2-lax-1": 1.215 }, "i3en.3xlarge": { - "af-south-1": 0.0, - "ap-east-1": 1.92, + "af-south-1": 1.912, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 1.726, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.829, "ap-south-1": 1.772, - "ap-south-2": 0.0, + "ap-south-2": 1.672, "ap-southeast-1": 1.756, "ap-southeast-2": 0.0, "ap-southeast-3": 1.756, "ap-southeast-4": 1.862, - "ca-central-1": 1.728, - "eu-central-1": 1.855, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 1.75, "eu-central-2": 0.0, - "eu-north-1": 1.552, - "eu-south-1": 1.703, - "eu-south-2": 1.63, - "eu-west-1": 1.63, - "eu-west-2": 1.708, + "eu-north-1": 1.645, + "eu-south-1": 1.806, + "eu-south-2": 0.0, + "eu-west-1": 1.728, + "eu-west-2": 0.0, "eu-west-3": 1.708, "il-central-1": 1.705, "me-central-1": 1.887, - "me-south-1": 1.773, + "me-south-1": 0.0, "sa-east-1": 2.43, - "us-east-1": 1.486, - "us-east-2": 1.486, + "us-east-1": 1.574, + "us-east-2": 1.574, "us-gov-east-1": 1.768, "us-gov-west-1": 1.874, "us-west-1": 1.63, @@ -52694,84 +56734,87 @@ "us-west-2-lax-1": 1.863 }, "i3en.6xlarge": { - "af-south-1": 3.926, - "ap-east-1": 3.943, + "af-south-1": 3.694, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 3.53, "ap-northeast-3": 3.528, "ap-south-1": 0.0, "ap-south-2": 3.414, - "ap-southeast-1": 3.382, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 3.382, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 3.13, "eu-central-1": 0.0, "eu-central-2": 3.926, - "eu-north-1": 2.974, + "eu-north-1": 3.159, "eu-south-1": 3.276, - "eu-south-2": 3.325, + "eu-south-2": 3.13, "eu-west-1": 3.13, - "eu-west-2": 3.491, + "eu-west-2": 3.286, "eu-west-3": 3.286, "il-central-1": 0.0, "me-central-1": 3.43, - "me-south-1": 3.63, - "sa-east-1": 4.45, + "me-south-1": 0.0, + "sa-east-1": 4.731, "us-east-1": 3.018, - "us-east-2": 3.018, - "us-gov-east-1": 3.406, + "us-east-2": 0.0, + "us-gov-east-1": 3.619, "us-gov-west-1": 0.0, "us-west-1": 3.325, - "us-west-2": 0.0, + "us-west-2": 2.842, "us-west-2-lax-1": 3.384 }, "i3en.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 7.29, "ap-northeast-1": 6.929, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 6.634, + "ap-south-2": 6.298, + "ap-southeast-1": 0.0, "ap-southeast-2": 6.634, "ap-southeast-3": 0.0, - "ap-southeast-4": 7.058, + "ap-southeast-4": 0.0, "ca-central-1": 6.52, + "ca-west-1": 6.13, "eu-central-1": 6.61, - "eu-central-2": 0.0, - "eu-north-1": 5.818, + "eu-central-2": 7.721, + "eu-north-1": 6.188, "eu-south-1": 6.834, - "eu-south-2": 6.52, + "eu-south-2": 6.13, "eu-west-1": 0.0, - "eu-west-2": 6.442, + "eu-west-2": 6.853, "eu-west-3": 6.442, - "il-central-1": 6.84, + "il-central-1": 6.43, "me-central-1": 7.159, - "me-south-1": 6.701, + "me-south-1": 7.13, "sa-east-1": 0.0, - "us-east-1": 5.554, + "us-east-1": 0.0, "us-east-2": 5.906, "us-gov-east-1": 0.0, - "us-gov-west-1": 6.682, - "us-west-1": 6.52, - "us-west-2": 5.906, - "us-west-2-lax-1": 0.0 + "us-gov-west-1": 7.107, + "us-west-1": 0.0, + "us-west-2": 0.0, + "us-west-2-lax-1": 6.639 }, "i3en.24xlarge": { "af-south-1": 14.386, "ap-east-1": 0.0, "ap-northeast-1": 12.898, "ap-northeast-2": 12.898, - "ap-northeast-3": 12.898, - "ap-south-1": 12.466, - "ap-south-2": 12.466, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 13.138, "ap-southeast-2": 13.138, - "ap-southeast-3": 13.138, + "ap-southeast-3": 0.0, "ap-southeast-4": 13.138, - "ca-central-1": 12.13, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 13.09, "eu-central-2": 14.386, "eu-north-1": 11.506, @@ -52781,139 +56824,160 @@ "eu-west-2": 12.754, "eu-west-3": 12.754, "il-central-1": 12.73, - "me-central-1": 0.0, + "me-central-1": 13.33, "me-south-1": 13.272, - "sa-east-1": 0.0, + "sa-east-1": 17.41, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 13.234, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 13.234, "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 13.148 + "us-west-2-lax-1": 0.0 }, "i3p.16xlarge": { "us-gov-west-1": 6.146 }, "i4g.large": { + "ap-southeast-1": 0.24513, "ca-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.2302, "us-east-1": 0.22988, - "us-east-2": 0.21444, - "us-west-2": 0.0 + "us-east-2": 0.22988, + "us-west-2": 0.21444 }, "i4g.xlarge": { - "ca-central-1": 0.4004, + "ap-southeast-1": 0.0, + "ca-central-1": 0.43444, "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.39977, + "us-east-1": 0.39977, + "us-east-2": 0.0, "us-west-2": 0.0 }, "i4g.2xlarge": { + "ap-southeast-1": 0.0, "ca-central-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.80954, + "eu-west-1": 0.8108, + "us-east-1": 0.80954, + "us-east-2": 0.74776, "us-west-2": 0.0 }, "i4g.4xlarge": { + "ap-southeast-1": 0.0, "ca-central-1": 1.49159, - "eu-west-1": 1.62775, + "eu-west-1": 0.0, "us-east-1": 1.48907, "us-east-2": 0.0, "us-west-2": 0.0 }, "i4g.8xlarge": { + "ap-southeast-1": 3.09208, "ca-central-1": 2.85319, - "eu-west-1": 0.0, - "us-east-1": 2.60104, - "us-east-2": 2.60104, + "eu-west-1": 3.12551, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-west-2": 2.60104 }, "i4g.16xlarge": { + "ap-southeast-1": 0.0, "ca-central-1": 5.57637, "eu-west-1": 5.57637, "us-east-1": 5.07208, "us-east-2": 0.0, - "us-west-2": 5.07208 + "us-west-2": 0.0 }, "i4i.large": { "af-south-1": 0.286, "ap-east-1": 0.309, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.261, "ap-northeast-2": 0.261, - "ap-northeast-3": 0.261, + "ap-northeast-3": 0.0, "ap-south-1": 0.274, - "ap-southeast-1": 0.286, - "ap-southeast-2": 0.266, + "ap-south-2": 0.0, + "ap-southeast-1": 0.266, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.266, "ap-southeast-4": 0.0, "ca-central-1": 0.268, + "ca-west-1": 0.0, "eu-central-1": 0.265, + "eu-central-2": 0.285, "eu-north-1": 0.0, "eu-south-1": 0.259, - "eu-west-1": 0.249, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.279, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.361, + "sa-east-1": 0.334, "us-east-1": 0.232, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.267, "us-gov-west-1": 0.0, "us-west-1": 0.268, - "us-west-2": 0.232 + "us-west-2": 0.249 }, "i4i.xlarge": { - "af-south-1": 0.556, + "af-south-1": 0.0, "ap-east-1": 0.559, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.503, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.449, "ap-southeast-1": 0.513, - "ap-southeast-2": 0.471, - "ap-southeast-4": 0.513, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.513, + "ap-southeast-4": 0.471, "ca-central-1": 0.0, + "ca-west-1": 0.438, "eu-central-1": 0.0, + "eu-central-2": 0.555, "eu-north-1": 0.0, "eu-south-1": 0.458, "eu-west-1": 0.438, - "eu-west-2": 0.458, - "eu-west-3": 0.0, - "il-central-1": 0.497, - "me-south-1": 0.476, + "eu-west-2": 0.498, + "eu-west-3": 0.458, + "il-central-1": 0.457, + "me-central-1": 0.476, + "me-south-1": 0.517, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.474, - "us-gov-west-1": 0.515, + "us-east-1": 0.403, + "us-east-2": 0.403, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.438, "us-west-2": 0.438 }, "i4i.metal": { - "af-south-1": 0.0, + "af-south-1": 14.562, "ap-east-1": 14.632, "ap-northeast-1": 0.0, "ap-northeast-2": 13.013, "ap-northeast-3": 0.0, "ap-south-1": 12.591, + "ap-south-2": 12.591, "ap-southeast-1": 13.295, - "ap-southeast-2": 0.0, + "ap-southeast-2": 13.295, + "ap-southeast-3": 13.295, "ap-southeast-4": 13.295, - "ca-central-1": 12.239, + "ca-central-1": 0.0, + "ca-west-1": 12.239, "eu-central-1": 13.224, - "eu-north-1": 11.605, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 12.872, "eu-west-1": 12.239, "eu-west-2": 12.872, - "eu-west-3": 12.872, + "eu-west-3": 0.0, "il-central-1": 12.844, - "me-south-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 13.436, "sa-east-1": 17.66, - "us-east-1": 11.112, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 13.365, "us-gov-west-1": 13.365, "us-west-1": 12.239, "us-west-2": 0.0 @@ -52922,24 +56986,29 @@ "af-south-1": 1.032, "ap-east-1": 1.127, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.016, + "ap-northeast-2": 0.935, "ap-northeast-3": 0.935, "ap-south-1": 0.0, + "ap-south-2": 0.909, "ap-southeast-1": 1.035, - "ap-southeast-2": 1.035, - "ap-southeast-4": 0.0, - "ca-central-1": 0.962, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.035, + "ap-southeast-4": 0.953, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.948, + "eu-central-2": 0.0, "eu-north-1": 0.847, - "eu-south-1": 1.006, + "eu-south-1": 0.926, "eu-west-1": 0.887, "eu-west-2": 0.926, "eu-west-3": 1.006, - "il-central-1": 0.925, - "me-south-1": 0.962, + "il-central-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 1.045, "sa-east-1": 1.226, - "us-east-1": 0.0, - "us-east-2": 0.885, + "us-east-1": 0.885, + "us-east-2": 0.816, "us-gov-east-1": 1.04, "us-gov-west-1": 1.04, "us-west-1": 0.887, @@ -52947,137 +57016,219 @@ }, "i4i.4xlarge": { "af-south-1": 2.114, - "ap-east-1": 1.943, + "ap-east-1": 0.0, "ap-northeast-1": 1.74, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 1.901, + "ap-northeast-3": 1.901, "ap-south-1": 1.688, + "ap-south-2": 1.843, "ap-southeast-1": 0.0, "ap-southeast-2": 1.94, + "ap-southeast-3": 1.94, "ap-southeast-4": 1.94, "ca-central-1": 1.644, - "eu-central-1": 0.0, - "eu-north-1": 1.564, + "ca-west-1": 1.795, + "eu-central-1": 1.93, + "eu-central-2": 0.0, + "eu-north-1": 1.708, "eu-south-1": 1.882, "eu-west-1": 0.0, - "eu-west-2": 1.882, - "eu-west-3": 1.723, + "eu-west-2": 1.723, + "eu-west-3": 1.882, "il-central-1": 1.878, - "me-south-1": 1.96, - "sa-east-1": 2.54, + "me-central-1": 1.793, + "me-south-1": 0.0, + "sa-east-1": 2.321, "us-east-1": 0.0, "us-east-2": 1.64, - "us-gov-east-1": 1.95, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.95, - "us-west-1": 0.0, - "us-west-2": 1.503 + "us-west-1": 1.644, + "us-west-2": 1.64 }, "i4i.8xlarge": { "af-south-1": 4.099, "ap-east-1": 4.118, - "ap-northeast-1": 3.351, + "ap-northeast-1": 3.673, "ap-northeast-2": 3.673, "ap-northeast-3": 3.673, - "ap-south-1": 3.557, - "ap-southeast-1": 0.0, - "ap-southeast-2": 3.421, + "ap-south-1": 3.245, + "ap-south-2": 3.557, + "ap-southeast-1": 3.421, + "ap-southeast-2": 3.75, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 3.157, - "eu-central-1": 3.731, + "ca-central-1": 3.46, + "ca-west-1": 3.157, + "eu-central-1": 0.0, + "eu-central-2": 3.731, "eu-north-1": 3.286, - "eu-south-1": 3.316, - "eu-west-1": 3.157, - "eu-west-2": 3.316, + "eu-south-1": 3.634, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 3.309, + "me-central-1": 3.456, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 4.512, "us-east-1": 2.876, - "us-east-2": 2.876, + "us-east-2": 0.0, "us-gov-east-1": 3.77, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.77, + "us-west-1": 3.46, + "us-west-2": 2.876 + }, + "i4i.12xlarge": { + "af-south-1": 5.542, + "ap-east-1": 5.568, + "ap-northeast-1": 5.444, + "ap-northeast-2": 5.444, + "ap-northeast-3": 4.961, + "ap-south-1": 5.27, + "ap-south-2": 4.803, + "ap-southeast-1": 5.56, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 5.56, + "ca-central-1": 5.125, + "ca-west-1": 5.125, + "eu-central-1": 5.04, + "eu-central-2": 6.072, + "eu-north-1": 4.433, + "eu-south-1": 0.0, + "eu-west-1": 4.671, + "eu-west-2": 0.0, + "eu-west-3": 5.386, + "me-central-1": 5.12, + "me-south-1": 5.619, + "sa-east-1": 7.361, + "us-east-1": 4.248, + "us-east-2": 0.0, + "us-gov-east-1": 5.59, + "us-gov-west-1": 5.59, "us-west-1": 0.0, - "us-west-2": 3.15 + "us-west-2": 4.248 }, "i4i.16xlarge": { "af-south-1": 7.346, - "ap-east-1": 8.106, - "ap-northeast-1": 7.216, - "ap-northeast-2": 7.216, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 6.572, "ap-northeast-3": 6.572, - "ap-south-1": 6.36, + "ap-south-1": 0.0, + "ap-south-2": 6.983, "ap-southeast-1": 7.371, - "ap-southeast-2": 0.0, + "ap-southeast-2": 6.712, + "ap-southeast-3": 7.371, "ap-southeast-4": 0.0, "ca-central-1": 6.184, + "ca-west-1": 6.79, "eu-central-1": 6.677, + "eu-central-2": 0.0, "eu-north-1": 5.868, "eu-south-1": 0.0, "eu-west-1": 6.79, - "eu-west-2": 6.501, - "eu-west-3": 0.0, + "eu-west-2": 7.138, + "eu-west-3": 7.138, "il-central-1": 0.0, + "me-central-1": 6.783, "me-south-1": 6.783, - "sa-east-1": 8.895, + "sa-east-1": 0.0, "us-east-1": 6.17, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 7.409, "us-gov-west-1": 6.748, "us-west-1": 6.79, "us-west-2": 6.17 }, + "i4i.24xlarge": { + "af-south-1": 10.954, + "ap-east-1": 12.09448, + "ap-northeast-1": 9.7924, + "ap-northeast-2": 9.7924, + "ap-northeast-3": 10.75864, + "ap-south-1": 10.41016, + "ap-south-2": 9.4756, + "ap-southeast-1": 10.0036, + "ap-southeast-2": 10.99096, + "ap-southeast-3": 0.0, + "ap-southeast-4": 10.0036, + "ca-central-1": 9.2116, + "ca-west-1": 0.0, + "eu-central-1": 9.9508, + "eu-central-2": 12.01317, + "eu-north-1": 8.7364, + "eu-south-1": 9.6868, + "eu-west-1": 9.2116, + "eu-west-2": 9.6868, + "eu-west-3": 9.6868, + "me-central-1": 0.0, + "me-south-1": 10.1092, + "sa-east-1": 14.59192, + "us-east-1": 8.3668, + "us-east-2": 0.0, + "us-gov-east-1": 10.0564, + "us-gov-west-1": 0.0, + "us-west-1": 10.11976, + "us-west-2": 0.0 + }, "i4i.32xlarge": { "af-south-1": 14.562, - "ap-east-1": 0.0, + "ap-east-1": 14.6324, "ap-northeast-1": 13.0132, - "ap-northeast-2": 0.0, + "ap-northeast-2": 13.0132, "ap-northeast-3": 13.0132, "ap-south-1": 12.5908, + "ap-south-2": 12.5908, "ap-southeast-1": 0.0, "ap-southeast-2": 13.2948, + "ap-southeast-3": 13.2948, "ap-southeast-4": 0.0, - "ca-central-1": 12.2388, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 12.2388, + "eu-central-1": 13.2244, + "eu-central-2": 14.53384, "eu-north-1": 11.6052, "eu-south-1": 12.8724, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 12.8724, "il-central-1": 12.84424, + "me-central-1": 13.4356, "me-south-1": 13.4356, "sa-east-1": 17.6596, "us-east-1": 0.0, "us-east-2": 11.1124, - "us-gov-east-1": 13.3652, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 13.3652, "us-west-1": 12.2388, "us-west-2": 11.1124 }, "im4gn.large": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ap-southeast-1": 0.29985, + "ap-southeast-2": 0.27804, + "ca-central-1": 0.26055, "eu-central-1": 0.27688, "eu-west-1": 0.0, - "eu-west-2": 0.27105, + "eu-west-2": 0.0, "eu-west-3": 0.27105, "us-east-1": 0.26009, - "us-east-2": 0.0, - "us-west-2": 0.26009 + "us-east-2": 0.26009, + "us-west-2": 0.2419 }, "im4gn.xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.53969, - "ap-southeast-2": 0.53969, + "ap-southeast-2": 0.49608, "ca-central-1": 0.0, "eu-central-1": 0.49375, "eu-west-1": 0.4611, "eu-west-2": 0.5243, - "eu-west-3": 0.5243, + "eu-west-3": 0.0, "us-east-1": 0.46017, - "us-east-2": 0.42379, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 0.42379 }, "im4gn.2xlarge": { "ap-northeast-1": 0.0, @@ -53086,19 +57237,19 @@ "ca-central-1": 1.01243, "eu-central-1": 0.9975, "eu-west-1": 1.01243, - "eu-west-2": 1.0586, + "eu-west-2": 0.97418, "eu-west-3": 1.0586, - "us-east-1": 0.0, + "us-east-1": 0.93034, "us-east-2": 0.93034, "us-west-2": 0.0 }, "im4gn.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.87434, "ap-southeast-2": 1.87434, - "ca-central-1": 1.73442, + "ca-central-1": 0.0, "eu-central-1": 1.86501, - "eu-west-1": 1.89486, + "eu-west-1": 1.73442, "eu-west-2": 1.9872, "eu-west-3": 1.9872, "us-east-1": 1.73068, @@ -53106,7 +57257,7 @@ "us-west-2": 1.73068 }, "im4gn.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.88545, "ap-southeast-1": 3.96754, "ap-southeast-2": 3.96754, "ca-central-1": 3.33883, @@ -53114,19 +57265,19 @@ "eu-west-1": 3.33883, "eu-west-2": 3.50674, "eu-west-3": 3.50674, - "us-east-1": 3.33137, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.33137, "us-west-2": 3.04034 }, "im4gn.16xlarge": { - "ap-northeast-1": 6.9581, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 6.54766, "eu-central-1": 0.0, "eu-west-1": 6.54766, "eu-west-2": 6.88347, - "eu-west-3": 6.88347, + "eu-west-3": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-2": 5.95067 @@ -53134,54 +57285,54 @@ "inf1.xlarge": { "ap-east-1": 0.412, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.358, + "ap-northeast-2": 0.341, "ap-northeast-3": 0.0, - "ap-south-1": 0.3, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.368, "ap-southeast-2": 0.362, "ca-central-1": 0.329, - "eu-central-1": 0.0, + "eu-central-1": 0.345, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 0.314, + "eu-west-1": 0.329, "eu-west-2": 0.327, "eu-west-3": 0.327, - "me-south-1": 0.358, + "me-south-1": 0.34, "sa-east-1": 0.437, "us-east-1": 0.302, - "us-east-2": 0.288, - "us-gov-east-1": 0.348, - "us-gov-west-1": 0.348, + "us-east-2": 0.302, + "us-gov-east-1": 0.365, + "us-gov-west-1": 0.365, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.302 }, "inf1.2xlarge": { "ap-east-1": 0.0, - "ap-northeast-1": 0.648, - "ap-northeast-2": 0.576, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.511, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.61, - "ca-central-1": 0.533, + "ap-south-1": 0.534, + "ap-southeast-1": 0.648, + "ap-southeast-2": 0.583, + "ca-central-1": 0.0, "eu-central-1": 0.61, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 0.533, + "eu-north-1": 0.538, + "eu-south-1": 0.582, + "eu-west-1": 0.0, "eu-west-2": 0.554, - "eu-west-3": 0.578, - "me-south-1": 0.0, - "sa-east-1": 0.728, + "eu-west-3": 0.0, + "me-south-1": 0.574, + "sa-east-1": 0.0, "us-east-1": 0.492, - "us-east-2": 0.492, - "us-gov-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.614, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "inf1.6xlarge": { - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 2.058, + "ap-northeast-1": 1.82, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 1.446, @@ -53192,31 +57343,31 @@ "eu-north-1": 1.384, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 1.595, + "eu-west-2": 0.0, "eu-west-3": 1.509, "me-south-1": 1.577, - "sa-east-1": 0.0, + "sa-east-1": 2.08, "us-east-1": 1.381, "us-east-2": 0.0, - "us-gov-east-1": 1.708, - "us-gov-west-1": 1.618, - "us-west-1": 1.548, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 1.633, "us-west-2": 1.31 }, "inf1.24xlarge": { - "af-south-1": 6.754, - "ap-east-1": 7.404, - "ap-northeast-1": 6.889, + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 6.506, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 5.393, "ap-southeast-1": 0.0, "ap-southeast-2": 6.386, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 6.032, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 5.39, + "eu-south-1": 6.019, + "eu-west-1": 5.706, "eu-west-2": 0.0, "eu-west-3": 5.978, "me-south-1": 5.916, @@ -53226,26 +57377,71 @@ "us-gov-east-1": 6.083, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 5.135 + "us-west-2": 0.0 }, "inf2.xlarge": { - "us-east-1": 0.0, - "us-east-2": 0.0 + "ap-northeast-1": 0.0, + "ap-south-1": 1.14423, + "ap-southeast-1": 1.12148, + "ap-southeast-2": 1.04566, + "eu-central-1": 1.1973, + "eu-north-1": 0.0, + "eu-west-1": 1.10253, + "eu-west-2": 1.31103, + "eu-west-3": 0.0, + "sa-east-1": 1.34894, + "us-east-1": 0.89402, + "us-east-2": 0.8182, + "us-west-2": 0.8182 }, "inf2.8xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 2.94404, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.68822, + "eu-central-1": 0.0, + "eu-north-1": 2.29465, + "eu-west-1": 2.58982, + "eu-west-2": 3.37697, + "eu-west-3": 0.0, + "sa-east-1": 3.8099, "us-east-1": 2.29465, - "us-east-2": 2.29465 + "us-east-2": 2.29465, + "us-west-2": 2.09786 }, "inf2.24xlarge": { - "us-east-1": 6.62063, - "us-east-2": 0.0 + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 10.12558, + "ap-southeast-2": 9.41161, + "eu-central-1": 9.86595, + "eu-north-1": 7.2697, + "eu-west-1": 8.24329, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 12.26748, + "us-east-1": 7.2697, + "us-east-2": 0.0, + "us-west-2": 0.0 }, "inf2.48xlarge": { + "ap-northeast-1": 19.6019, + "ap-south-1": 18.69321, + "ap-southeast-1": 18.30377, + "ap-southeast-2": 17.00565, + "eu-central-1": 21.54909, + "eu-north-1": 15.83733, + "eu-west-1": 17.97924, + "eu-west-2": 0.0, + "eu-west-3": 18.30377, + "sa-east-1": 24.40497, "us-east-1": 13.11127, - "us-east-2": 14.40939 + "us-east-2": 13.11127, + "us-west-2": 13.11127 }, "is4gen.medium": { "ap-northeast-1": 0.22958, + "ap-south-1": 0.22375, "ap-southeast-1": 0.23276, "ap-southeast-2": 0.23276, "ca-central-1": 0.21938, @@ -53259,6 +57455,7 @@ }, "is4gen.large": { "ap-northeast-1": 0.39915, + "ap-south-1": 0.3875, "ap-southeast-1": 0.40553, "ap-southeast-2": 0.40553, "ca-central-1": 0.37875, @@ -53272,6 +57469,7 @@ }, "is4gen.xlarge": { "ap-northeast-1": 0.7383, + "ap-south-1": 0.715, "ap-southeast-1": 0.75105, "ap-southeast-2": 0.75105, "ca-central-1": 0.6975, @@ -53285,6 +57483,7 @@ }, "is4gen.2xlarge": { "ap-northeast-1": 1.4866, + "ap-south-1": 1.44, "ap-southeast-1": 1.5121, "ap-southeast-2": 1.5121, "ca-central-1": 1.405, @@ -53298,6 +57497,7 @@ }, "is4gen.4xlarge": { "ap-northeast-1": 2.8432, + "ap-south-1": 2.75, "ap-southeast-1": 2.89421, "ap-southeast-2": 2.89421, "ca-central-1": 2.68, @@ -53311,6 +57511,7 @@ }, "is4gen.8xlarge": { "ap-northeast-1": 5.5564, + "ap-south-1": 5.37, "ap-southeast-1": 5.65842, "ap-southeast-2": 5.65842, "ca-central-1": 5.23, @@ -53404,120 +57605,120 @@ "ap-northeast-2": 0.151, "ap-southeast-1": 0.168, "ap-southeast-2": 0.168, - "eu-central-1": 0.153, - "eu-west-1": 0.0, + "eu-central-1": 0.139, + "eu-west-1": 0.133, "sa-east-1": 0.0, - "us-east-1": 0.127, + "us-east-1": 0.14, "us-gov-west-1": 0.0, "us-west-1": 0.137, "us-west-2": 0.0 }, "m3.large": { - "ap-northeast-1": 0.253, - "ap-northeast-2": 0.243, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.261685, "ap-southeast-1": 0.0, "ap-southeast-2": 0.271, "eu-central-1": 0.218, "eu-west-1": 0.206, "sa-east-1": 0.25, - "us-east-1": 0.0, + "us-east-1": 0.212, "us-gov-west-1": 0.245, "us-west-1": 0.214, "us-west-2": 0.193 }, "m3.xlarge": { - "ap-northeast-1": 0.445, - "ap-northeast-2": 0.462325, - "ap-southeast-1": 0.491, + "ap-northeast-1": 0.49, + "ap-northeast-2": 0.426, + "ap-southeast-1": 0.452, "ap-southeast-2": 0.0, "eu-central-1": 0.375, "eu-west-1": 0.0, "sa-east-1": 0.441, - "us-east-1": 0.0, + "us-east-1": 0.359, "us-gov-west-1": 0.0, - "us-west-1": 0.368, - "us-west-2": 0.326 + "us-west-1": 0.399, + "us-west-2": 0.359 }, "m3.2xlarge": { - "ap-northeast-1": 0.99, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.862, - "ap-southeast-1": 0.914, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.875, - "eu-central-1": 0.838, - "eu-west-1": 0.786, + "eu-central-1": 0.762, + "eu-west-1": 0.715, "sa-east-1": 0.967, - "us-east-1": 0.662, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-east-1": 0.728, + "us-gov-west-1": 0.802, + "us-west-1": 0.808, "us-west-2": 0.0 }, "m4.large": { - "ap-northeast-1": 0.189, + "ap-northeast-1": 0.2019, "ap-northeast-2": 0.183, "ap-northeast-3": 0.189, "ap-south-1": 0.1755, - "ap-southeast-1": 0.1975, + "ap-southeast-1": 0.185, "ap-southeast-2": 0.185, "ca-central-1": 0.1821, - "eu-central-1": 0.18, - "eu-west-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.1821, "eu-west-2": 0.176, "sa-east-1": 0.219, - "us-east-1": 0.16, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.1986, "us-west-1": 0.177, "us-west-2": 0.17 }, "m4.xlarge": { - "ap-northeast-1": 0.3438, - "ap-northeast-2": 0.306, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.3306, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 0.31, + "ap-south-1": 0.27, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.3, + "eu-central-1": 0.0, "eu-west-1": 0.3042, - "eu-west-2": 0.292, - "sa-east-1": 0.4098, + "eu-west-2": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.26, - "us-east-2": 0.26, - "us-gov-west-1": 0.0, - "us-west-1": 0.294, + "us-east-2": 0.0, + "us-gov-west-1": 0.3372, + "us-west-1": 0.0, "us-west-2": 0.28 }, "m4.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.6712, - "ap-northeast-3": 0.6976, - "ap-south-1": 0.592, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.646, + "ap-south-1": 0.0, "ap-southeast-1": 0.63, "ap-southeast-2": 0.68, - "ca-central-1": 0.6184, + "ca-central-1": 0.574, "eu-central-1": 0.0, - "eu-west-1": 0.574, + "eu-west-1": 0.6184, "eu-west-2": 0.594, "sa-east-1": 0.8296, "us-east-1": 0.57, "us-east-2": 0.57, "us-gov-west-1": 0.634, - "us-west-1": 0.0, + "us-west-1": 0.6448, "us-west-2": 0.53 }, "m4.4xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 1.114, - "ap-northeast-3": 1.2652, + "ap-northeast-3": 1.162, "ap-south-1": 0.0, "ap-southeast-1": 1.13, "ap-southeast-2": 1.13, "ca-central-1": 0.0, "eu-central-1": 1.186, - "eu-west-1": 1.018, + "eu-west-1": 0.0, "eu-west-2": 1.058, - "sa-east-1": 1.5292, - "us-east-1": 0.0, + "sa-east-1": 1.402, + "us-east-1": 1.01, "us-east-2": 0.93, "us-gov-west-1": 1.138, "us-west-1": 1.066, @@ -53531,8 +57732,8 @@ "ap-southeast-2": 2.63, "ca-central-1": 2.35, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 2.45, + "eu-west-1": 2.35, + "eu-west-2": 0.0, "sa-east-1": 3.31, "us-east-1": 0.0, "us-east-2": 2.13, @@ -53541,7 +57742,7 @@ "us-west-2": 0.0 }, "m4.16xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.258, "ap-northeast-2": 4.066, "ap-northeast-3": 4.258, "ap-south-1": 3.49, @@ -53553,9 +57754,9 @@ "eu-west-2": 0.0, "sa-east-1": 5.218, "us-east-1": 3.33, - "us-east-2": 0.0, - "us-gov-west-1": 4.162, - "us-west-1": 3.874, + "us-east-2": 3.33, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 3.33 }, "m5.large": { @@ -53567,69 +57768,71 @@ "ap-south-1": 0.0, "ap-south-2": 0.167, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.18, + "ap-southeast-2": 0.188, "ap-southeast-3": 0.18, - "ap-southeast-4": 0.18, - "ca-central-1": 0.173, + "ap-southeast-4": 0.192, + "ca-central-1": 0.167, + "ca-west-1": 0.167, "eu-central-1": 0.0, - "eu-central-2": 0.194, - "eu-north-1": 0.162, + "eu-central-2": 0.0, + "eu-north-1": 0.169, "eu-south-1": 0.172, "eu-south-2": 0.0, "eu-west-1": 0.174, "eu-west-2": 0.178, - "eu-west-3": 0.179, + "eu-west-3": 0.0, "il-central-1": 0.172, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 0.222, "us-east-1": 0.156, "us-east-2": 0.162, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.189, - "us-west-1": 0.172, - "us-west-2": 0.162, + "us-gov-east-1": 0.181, + "us-gov-west-1": 0.181, + "us-west-1": 0.0, + "us-west-2": 0.0, "us-west-2-lax-1": 0.175 }, "m5.xlarge": { - "af-south-1": 0.314, - "ap-east-1": 0.324, + "af-south-1": 0.329, + "ap-east-1": 0.34, "ap-northeast-1": 0.324, "ap-northeast-2": 0.296, "ap-northeast-3": 0.323, - "ap-south-1": 0.274, + "ap-south-1": 0.262, "ap-south-2": 0.274, - "ap-southeast-1": 0.315, - "ap-southeast-2": 0.316, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.314, "ap-southeast-4": 0.324, "ca-central-1": 0.274, + "ca-west-1": 0.274, "eu-central-1": 0.29, - "eu-central-2": 0.328, + "eu-central-2": 0.313, "eu-north-1": 0.0, "eu-south-1": 0.297, - "eu-south-2": 0.287, + "eu-south-2": 0.0, "eu-west-1": 0.288, "eu-west-2": 0.297, "eu-west-3": 0.284, "il-central-1": 0.285, - "me-central-1": 0.295, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.383, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.252, "us-east-2": 0.264, - "us-gov-east-1": 0.302, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.302, + "us-west-1": 0.284, "us-west-2": 0.264, "us-west-2-lax-1": 0.29 }, "m5.metal": { "af-south-1": 6.226, "ap-east-1": 6.466, - "ap-northeast-1": 6.082, + "ap-northeast-1": 0.0, "ap-northeast-2": 5.794, - "ap-northeast-3": 6.082, + "ap-northeast-3": 0.0, "ap-south-1": 4.978, "ap-south-2": 4.978, "ap-southeast-1": 5.89, @@ -53637,8 +57840,9 @@ "ap-southeast-3": 5.89, "ap-southeast-4": 5.89, "ca-central-1": 5.266, + "ca-west-1": 0.0, "eu-central-1": 5.65, - "eu-central-2": 6.202, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 5.506, "eu-south-2": 0.0, @@ -53650,147 +57854,151 @@ "me-south-1": 0.0, "sa-east-1": 7.474, "us-east-1": 4.738, - "us-east-2": 4.738, - "us-gov-east-1": 5.938, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 5.938, "us-west-1": 5.506, "us-west-2": 4.738, "us-west-2-lax-1": 5.66 }, "m5.2xlarge": { - "af-south-1": 0.638, + "af-south-1": 0.0, "ap-east-1": 0.658, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.626, "ap-northeast-2": 0.0, "ap-northeast-3": 0.626, - "ap-south-1": 0.0, + "ap-south-1": 0.559, "ap-south-2": 0.0, "ap-southeast-1": 0.64, "ap-southeast-2": 0.642, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "ca-central-1": 0.584, + "ap-southeast-3": 0.639, + "ap-southeast-4": 0.61, + "ca-central-1": 0.558, + "ca-west-1": 0.0, "eu-central-1": 0.59, "eu-central-2": 0.0, "eu-north-1": 0.538, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.558, "eu-west-1": 0.0, "eu-west-2": 0.604, "eu-west-3": 0.0, - "il-central-1": 0.579, - "me-central-1": 0.0, + "il-central-1": 0.624, + "me-central-1": 0.629, "me-south-1": 0.0, "sa-east-1": 0.742, "us-east-1": 0.514, - "us-east-2": 0.514, + "us-east-2": 0.0, "us-gov-east-1": 0.646, "us-gov-west-1": 0.0, "us-west-1": 0.61, - "us-west-2": 0.0, + "us-west-2": 0.514, "us-west-2-lax-1": 0.591 }, "m5.4xlarge": { - "af-south-1": 1.146, - "ap-east-1": 1.186, + "af-south-1": 0.0, + "ap-east-1": 1.251, "ap-northeast-1": 0.0, "ap-northeast-2": 1.074, "ap-northeast-3": 1.182, - "ap-south-1": 0.0, - "ap-south-2": 0.938, + "ap-south-1": 0.938, + "ap-south-2": 0.986, "ap-southeast-1": 0.0, "ap-southeast-2": 1.153, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.09, "ap-southeast-4": 0.0, "ca-central-1": 0.986, - "eu-central-1": 1.112, - "eu-central-2": 1.203, - "eu-north-1": 0.0, + "ca-west-1": 0.986, + "eu-central-1": 1.05, + "eu-central-2": 1.142, + "eu-north-1": 1.001, "eu-south-1": 1.026, - "eu-south-2": 1.037, + "eu-south-2": 0.986, "eu-west-1": 0.986, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 1.086, "il-central-1": 1.029, "me-central-1": 1.128, "me-south-1": 1.072, - "sa-east-1": 1.354, + "sa-east-1": 0.0, "us-east-1": 0.898, "us-east-2": 0.945, "us-gov-east-1": 1.098, "us-gov-west-1": 1.098, - "us-west-1": 1.026, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 1.107 }, "m5.8xlarge": { "af-south-1": 2.162, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 2.018, + "ap-northeast-1": 2.246, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 1.843, + "ap-south-1": 1.845, + "ap-south-2": 1.746, "ap-southeast-1": 2.05, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 2.242, + "ap-southeast-4": 2.05, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 2.154, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-south-2": 1.842, + "eu-west-1": 1.956, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 1.928, + "il-central-1": 0.0, "me-central-1": 2.013, "me-south-1": 2.139, "sa-east-1": 2.716, "us-east-1": 0.0, "us-east-2": 1.666, - "us-gov-east-1": 0.0, + "us-gov-east-1": 2.066, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 1.666, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 1.973 }, "m5.12xlarge": { - "af-south-1": 3.361, - "ap-east-1": 3.493, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.13, "ap-northeast-3": 3.106, - "ap-south-1": 0.0, + "ap-south-1": 2.702, "ap-south-2": 2.699, - "ap-southeast-1": 0.0, - "ap-southeast-2": 3.2, - "ap-southeast-3": 3.01, + "ap-southeast-1": 3.01, + "ap-southeast-2": 3.01, + "ap-southeast-3": 0.0, "ap-southeast-4": 3.298, "ca-central-1": 2.698, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 3.166, + "eu-central-2": 0.0, "eu-north-1": 2.578, - "eu-south-1": 2.979, + "eu-south-1": 0.0, "eu-south-2": 2.698, - "eu-west-1": 2.87, - "eu-west-2": 2.972, + "eu-west-1": 0.0, + "eu-west-2": 2.794, "eu-west-3": 2.998, "il-central-1": 2.826, "me-central-1": 0.0, - "me-south-1": 2.955, + "me-south-1": 3.144, "sa-east-1": 3.802, "us-east-1": 2.574, "us-east-2": 2.574, "us-gov-east-1": 3.224, - "us-gov-west-1": 3.224, + "us-gov-west-1": 3.034, "us-west-1": 3.01, "us-west-2": 2.434, "us-west-2-lax-1": 0.0 }, "m5.16xlarge": { - "af-south-1": 0.0, + "af-south-1": 4.194, "ap-east-1": 4.614, "ap-northeast-1": 4.098, "ap-northeast-2": 0.0, @@ -53799,25 +58007,26 @@ "ap-south-2": 3.362, "ap-southeast-1": 0.0, "ap-southeast-2": 3.97, - "ap-southeast-3": 3.97, - "ap-southeast-4": 4.354, + "ap-southeast-3": 0.0, + "ap-southeast-4": 3.97, "ca-central-1": 0.0, + "ca-west-1": 3.896, "eu-central-1": 3.81, "eu-central-2": 4.178, - "eu-north-1": 3.394, + "eu-north-1": 3.612, "eu-south-1": 3.929, - "eu-south-2": 3.554, - "eu-west-1": 3.783, + "eu-south-2": 3.759, + "eu-west-1": 3.554, "eu-west-2": 3.919, "eu-west-3": 3.714, "il-central-1": 3.725, - "me-central-1": 0.0, - "me-south-1": 0.0, + "me-central-1": 3.896, + "me-south-1": 3.896, "sa-east-1": 5.301, "us-east-1": 3.202, "us-east-2": 3.389, - "us-gov-east-1": 4.256, - "us-gov-west-1": 0.0, + "us-gov-east-1": 4.002, + "us-gov-west-1": 4.256, "us-west-1": 3.97, "us-west-2": 3.389, "us-west-2-lax-1": 3.816 @@ -53831,29 +58040,30 @@ "ap-south-1": 4.978, "ap-south-2": 4.978, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.89, "ap-southeast-3": 0.0, "ap-southeast-4": 5.89, "ca-central-1": 5.266, - "eu-central-1": 0.0, + "ca-west-1": 5.266, + "eu-central-1": 5.65, "eu-central-2": 0.0, "eu-north-1": 5.026, "eu-south-1": 5.506, "eu-south-2": 5.266, - "eu-west-1": 5.266, - "eu-west-2": 5.458, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 5.506, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 5.78, "sa-east-1": 0.0, "us-east-1": 4.738, - "us-east-2": 0.0, + "us-east-2": 4.738, "us-gov-east-1": 5.938, "us-gov-west-1": 5.938, "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 5.66 + "us-west-2": 4.738, + "us-west-2-lax-1": 0.0 }, "m5a.large": { "ap-northeast-1": 0.172, @@ -54160,7 +58370,7 @@ "us-west-2": 5.074 }, "m5d.large": { - "af-south-1": 0.0, + "af-south-1": 0.21, "ap-east-1": 0.0, "ap-northeast-1": 0.216, "ap-northeast-2": 0.0, @@ -54171,16 +58381,17 @@ "ap-southeast-2": 0.211, "ap-southeast-3": 0.0, "ap-southeast-4": 0.211, - "ca-central-1": 0.194, - "eu-central-1": 0.196, + "ca-central-1": 0.0, + "ca-west-1": 0.194, + "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.18, + "eu-north-1": 0.0, "eu-south-1": 0.192, - "eu-south-2": 0.186, + "eu-south-2": 0.194, "eu-west-1": 0.0, "eu-west-2": 0.2, - "eu-west-3": 0.0, - "il-central-1": 0.2, + "eu-west-3": 0.192, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.25, @@ -54189,53 +58400,55 @@ "us-gov-east-1": 0.203, "us-gov-west-1": 0.203, "us-west-1": 0.193, - "us-west-2": 0.0 + "us-west-2": 0.173 }, "m5d.xlarge": { - "af-south-1": 0.36, - "ap-east-1": 0.37, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.371, "ap-northeast-2": 0.338, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.352, "ap-south-1": 0.319, - "ap-south-2": 0.319, - "ap-southeast-1": 0.0, + "ap-south-2": 0.304, + "ap-southeast-1": 0.359, "ap-southeast-2": 0.363, - "ap-southeast-3": 0.342, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.359, + "ca-west-1": 0.327, + "eu-central-1": 0.332, + "eu-central-2": 0.377, "eu-north-1": 0.0, "eu-south-1": 0.324, "eu-south-2": 0.0, - "eu-west-1": 0.312, + "eu-west-1": 0.0, "eu-west-2": 0.339, "eu-west-3": 0.324, "il-central-1": 0.325, - "me-central-1": 0.354, - "me-south-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 0.337, "sa-east-1": 0.42, - "us-east-1": 0.0, - "us-east-2": 0.286, + "us-east-1": 0.286, + "us-east-2": 0.3, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.346, "us-west-1": 0.0, - "us-west-2": 0.286 + "us-west-2": 0.0 }, "m5d.metal": { "af-south-1": 0.0, "ap-east-1": 7.57, "ap-northeast-1": 7.138, - "ap-northeast-2": 0.0, + "ap-northeast-2": 6.802, "ap-northeast-3": 0.0, "ap-south-1": 5.986, - "ap-south-2": 0.0, + "ap-south-2": 5.986, "ap-southeast-1": 6.898, - "ap-southeast-2": 6.946, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 6.178, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 7.311, "eu-north-1": 5.89, @@ -54244,69 +58457,71 @@ "eu-west-1": 6.178, "eu-west-2": 6.418, "eu-west-3": 6.466, - "il-central-1": 6.48, - "me-central-1": 0.0, - "me-south-1": 6.783, + "il-central-1": 0.0, + "me-central-1": 6.783, + "me-south-1": 0.0, "sa-east-1": 8.77, "us-east-1": 5.554, "us-east-2": 5.554, "us-gov-east-1": 6.994, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 6.514, "us-west-2": 0.0 }, "m5d.2xlarge": { - "af-south-1": 0.766, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 0.788, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.719, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.714, - "ap-south-1": 0.648, + "ap-south-1": 0.0, "ap-south-2": 0.647, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.729, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.634, + "ca-west-1": 0.634, "eu-central-1": 0.674, - "eu-central-2": 0.728, - "eu-north-1": 0.0, + "eu-central-2": 0.764, + "eu-north-1": 0.61, "eu-south-1": 0.0, "eu-south-2": 0.664, - "eu-west-1": 0.0, + "eu-west-1": 0.668, "eu-west-2": 0.0, "eu-west-3": 0.693, "il-central-1": 0.659, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.85, - "us-east-1": 0.609, - "us-east-2": 0.0, - "us-gov-east-1": 0.739, + "us-east-1": 0.582, + "us-east-2": 0.609, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.739, "us-west-1": 0.0, - "us-west-2": 0.582 + "us-west-2": 0.0 }, "m5d.4xlarge": { - "af-south-1": 1.402, + "af-south-1": 1.33, "ap-east-1": 1.37, "ap-northeast-1": 1.298, - "ap-northeast-2": 1.242, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.368, "ap-south-1": 0.0, - "ap-south-2": 1.165, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.266, + "ap-south-2": 0.0, + "ap-southeast-1": 1.327, + "ap-southeast-2": 1.34, "ap-southeast-3": 1.258, - "ap-southeast-4": 0.0, - "ca-central-1": 1.138, + "ap-southeast-4": 1.334, + "ca-central-1": 1.199, + "ca-west-1": 1.198, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 1.154, "eu-south-1": 0.0, - "eu-south-2": 1.138, + "eu-south-2": 1.198, "eu-west-1": 1.206, - "eu-west-2": 0.0, + "eu-west-2": 1.248, "eu-west-3": 1.257, "il-central-1": 1.252, "me-central-1": 0.0, @@ -54314,14 +58529,14 @@ "sa-east-1": 1.653, "us-east-1": 1.089, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 1.269, + "us-gov-east-1": 1.349, + "us-gov-west-1": 1.349, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m5d.8xlarge": { - "af-south-1": 2.53, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 2.763, "ap-northeast-1": 2.466, "ap-northeast-2": 2.354, "ap-northeast-3": 2.606, @@ -54332,18 +58547,19 @@ "ap-southeast-3": 2.521, "ap-southeast-4": 0.0, "ca-central-1": 2.146, + "ca-west-1": 2.146, "eu-central-1": 2.306, - "eu-central-2": 2.524, + "eu-central-2": 2.667, "eu-north-1": 2.05, "eu-south-1": 0.0, "eu-south-2": 2.267, "eu-west-1": 0.0, "eu-west-2": 2.226, "eu-west-3": 2.242, - "il-central-1": 2.247, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 2.496, - "sa-east-1": 3.176, + "sa-east-1": 3.01, "us-east-1": 1.938, "us-east-2": 1.938, "us-gov-east-1": 2.418, @@ -54358,60 +58574,62 @@ "ap-northeast-2": 3.664, "ap-northeast-3": 0.0, "ap-south-1": 3.237, - "ap-south-2": 3.058, + "ap-south-2": 3.234, "ap-southeast-1": 3.722, - "ap-southeast-2": 3.761, + "ap-southeast-2": 0.0, "ap-southeast-3": 3.717, "ap-southeast-4": 3.742, "ca-central-1": 3.154, + "ca-west-1": 3.154, "eu-central-1": 3.394, - "eu-central-2": 0.0, + "eu-central-2": 3.936, "eu-north-1": 3.203, "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 3.483, - "eu-west-3": 0.0, + "eu-south-2": 3.335, + "eu-west-1": 3.154, + "eu-west-2": 0.0, + "eu-west-3": 3.51, "il-central-1": 0.0, "me-central-1": 3.656, "me-south-1": 3.456, - "sa-east-1": 4.45, + "sa-east-1": 4.699, "us-east-1": 2.842, "us-east-2": 3.006, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.787, "us-gov-west-1": 3.787, "us-west-1": 3.547, - "us-west-2": 0.0 + "us-west-2": 3.006 }, "m5d.16xlarge": { "af-south-1": 5.218, - "ap-east-1": 0.0, + "ap-east-1": 5.395, "ap-northeast-1": 4.802, "ap-northeast-2": 4.578, "ap-northeast-3": 0.0, "ap-south-1": 4.034, - "ap-south-2": 0.0, + "ap-south-2": 4.268, "ap-southeast-1": 4.642, "ap-southeast-2": 4.972, "ap-southeast-3": 0.0, - "ap-southeast-4": 4.674, - "ca-central-1": 4.162, + "ap-southeast-4": 4.947, + "ca-central-1": 4.408, + "ca-west-1": 0.0, "eu-central-1": 4.482, - "eu-central-2": 0.0, + "eu-central-2": 5.204, "eu-north-1": 3.97, - "eu-south-1": 4.607, - "eu-south-2": 4.162, + "eu-south-1": 4.354, + "eu-south-2": 4.404, "eu-west-1": 0.0, - "eu-west-2": 4.322, + "eu-west-2": 0.0, "eu-west-3": 4.354, - "il-central-1": 4.364, - "me-central-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 4.831, "me-south-1": 4.862, "sa-east-1": 0.0, "us-east-1": 3.746, "us-east-2": 3.746, "us-gov-east-1": 4.706, - "us-gov-west-1": 0.0, + "us-gov-west-1": 4.706, "us-west-1": 4.386, "us-west-2": 3.746 }, @@ -54427,36 +58645,37 @@ "ap-southeast-2": 6.946, "ap-southeast-3": 6.898, "ap-southeast-4": 6.946, - "ca-central-1": 6.178, + "ca-central-1": 0.0, + "ca-west-1": 6.178, "eu-central-1": 6.658, "eu-central-2": 7.311, "eu-north-1": 0.0, "eu-south-1": 6.466, - "eu-south-2": 6.178, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 6.418, + "eu-west-2": 0.0, "eu-west-3": 6.466, "il-central-1": 6.48, - "me-central-1": 6.783, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 8.77, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 6.994, + "us-east-1": 5.554, + "us-east-2": 5.554, + "us-gov-east-1": 0.0, "us-gov-west-1": 6.994, "us-west-1": 6.514, "us-west-2": 5.554 }, "m5dn.large": { - "ap-northeast-1": 0.247, + "ap-northeast-1": 0.235, "ap-southeast-1": 0.227, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.204, - "us-gov-east-1": 0.241, - "us-gov-west-1": 0.241, - "us-west-2": 0.196 + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.231, + "us-west-2": 0.0 }, "m5dn.xlarge": { "ap-northeast-1": 0.0, @@ -54465,9 +58684,9 @@ "eu-west-1": 0.384, "us-east-1": 0.332, "us-east-2": 0.332, - "us-gov-east-1": 0.423, + "us-gov-east-1": 0.402, "us-gov-west-1": 0.423, - "us-west-2": 0.332 + "us-west-2": 0.348 }, "m5dn.metal": { "ap-northeast-1": 8.53, @@ -54475,7 +58694,7 @@ "eu-central-1": 7.906, "eu-west-1": 7.426, "us-east-1": 6.658, - "us-east-2": 6.658, + "us-east-2": 0.0, "us-gov-east-1": 8.338, "us-gov-west-1": 8.338, "us-west-2": 6.658 @@ -54485,16 +58704,16 @@ "ap-southeast-1": 0.0, "eu-central-1": 0.822, "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.814, + "us-east-1": 0.707, + "us-east-2": 0.707, + "us-gov-east-1": 0.855, "us-gov-west-1": 0.855, - "us-west-2": 0.0 + "us-west-2": 0.674 }, "m5dn.4xlarge": { "ap-northeast-1": 1.624, "ap-southeast-1": 1.466, - "eu-central-1": 1.513, + "eu-central-1": 0.0, "eu-west-1": 1.346, "us-east-1": 1.284, "us-east-2": 1.284, @@ -54504,42 +58723,42 @@ }, "m5dn.8xlarge": { "ap-northeast-1": 2.93, - "ap-southeast-1": 2.968, + "ap-southeast-1": 2.802, "eu-central-1": 2.896, "eu-west-1": 2.723, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 2.866, + "us-east-1": 2.306, + "us-east-2": 2.438, + "us-gov-east-1": 0.0, "us-gov-west-1": 2.866, "us-west-2": 0.0 }, "m5dn.12xlarge": { "ap-northeast-1": 4.611, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 4.02, + "ap-southeast-1": 4.387, + "eu-central-1": 4.018, + "eu-west-1": 3.778, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 4.234, - "us-gov-west-1": 4.234, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5dn.16xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 6.104, "ap-southeast-1": 5.806, - "eu-central-1": 5.662, + "eu-central-1": 5.314, "eu-west-1": 0.0, - "us-east-1": 4.746, - "us-east-2": 4.746, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 4.482 + "us-west-2": 4.746 }, "m5dn.24xlarge": { "ap-northeast-1": 8.53, "ap-southeast-1": 0.0, "eu-central-1": 7.906, - "eu-west-1": 7.426, + "eu-west-1": 0.0, "us-east-1": 6.658, "us-east-2": 0.0, "us-gov-east-1": 0.0, @@ -54547,22 +58766,22 @@ "us-west-2": 6.658 }, "m5n.large": { - "ap-northeast-1": 0.223, - "ap-southeast-1": 0.206, - "eu-central-1": 0.0, + "ap-northeast-1": 0.213, + "ap-southeast-1": 0.0, + "eu-central-1": 0.201, "eu-west-1": 0.202, - "us-east-1": 0.0, + "us-east-1": 0.179, "us-east-2": 0.186, "us-gov-east-1": 0.218, - "us-gov-west-1": 0.218, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5n.xlarge": { "ap-northeast-1": 0.366, "ap-southeast-1": 0.0, - "eu-central-1": 0.361, - "eu-west-1": 0.326, - "us-east-1": 0.0, + "eu-central-1": 0.342, + "eu-west-1": 0.0, + "us-east-1": 0.298, "us-east-2": 0.298, "us-gov-east-1": 0.358, "us-gov-west-1": 0.0, @@ -54574,25 +58793,25 @@ "eu-central-1": 0.0, "us-east-1": 5.842, "us-east-2": 5.842, - "us-gov-east-1": 7.282, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 5.842 + "us-west-2": 0.0 }, "m5n.2xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-1": 0.783, + "ap-southeast-1": 0.75, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.635, + "us-east-2": 0.606, "us-gov-east-1": 0.762, "us-gov-west-1": 0.0, - "us-west-2": 0.606 + "us-west-2": 0.0 }, "m5n.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.354, "ap-southeast-1": 0.0, - "eu-central-1": 1.258, + "eu-central-1": 0.0, "eu-west-1": 1.194, "us-east-1": 1.082, "us-east-2": 0.0, @@ -54601,19 +58820,19 @@ "us-west-2": 1.14 }, "m5n.8xlarge": { - "ap-northeast-1": 2.578, - "ap-southeast-1": 0.0, + "ap-northeast-1": 2.741, + "ap-southeast-1": 2.466, "eu-central-1": 2.386, - "eu-west-1": 0.0, + "eu-west-1": 2.258, "us-east-1": 0.0, - "us-east-2": 2.034, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5n.12xlarge": { "ap-northeast-1": 4.047, - "ap-southeast-1": 3.852, + "ap-southeast-1": 3.634, "eu-central-1": 3.742, "eu-west-1": 3.536, "us-east-1": 0.0, @@ -54623,12 +58842,12 @@ "us-west-2": 3.159 }, "m5n.16xlarge": { - "ap-northeast-1": 5.352, + "ap-northeast-1": 0.0, "ap-southeast-1": 5.093, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 3.938, - "us-east-2": 0.0, + "us-east-2": 4.168, "us-gov-east-1": 4.898, "us-gov-west-1": 4.898, "us-west-2": 3.938 @@ -54642,65 +58861,65 @@ "us-east-2": 5.842, "us-gov-east-1": 7.282, "us-gov-west-1": 7.282, - "us-west-2": 0.0 + "us-west-2": 5.842 }, "m5zn.large": { - "ap-northeast-1": 0.2734, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.2872, - "ap-southeast-2": 0.2665, - "eu-central-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.263, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.2872, + "eu-central-1": 0.2579, "eu-west-1": 0.2625, "sa-east-1": 0.3232, "us-east-1": 0.0, - "us-east-2": 0.2252, - "us-west-1": 0.2527, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.2252 }, "m5zn.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.5294, "ap-northeast-2": 0.5066, "ap-southeast-1": 0.5143, "ap-southeast-2": 0.473, - "eu-central-1": 0.4557, + "eu-central-1": 0.0, "eu-west-1": 0.465, - "sa-east-1": 0.0, + "sa-east-1": 0.5865, "us-east-1": 0.4234, - "us-east-2": 0.0, - "us-west-1": 0.4839, + "us-east-2": 0.4234, + "us-west-1": 0.4454, "us-west-2": 0.0 }, "m5zn.metal": { - "ap-northeast-1": 5.7624, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 5.3535, - "eu-west-1": 4.9902, - "sa-east-1": 6.4478, - "us-east-1": 4.4905, + "eu-west-1": 4.5484, + "sa-east-1": 7.0795, + "us-east-1": 4.0941, "us-east-2": 0.0, - "us-west-1": 5.2173, + "us-west-1": 4.7548, "us-west-2": 0.0 }, "m5zn.2xlarge": { "ap-northeast-1": 0.9834, - "ap-northeast-2": 0.942, + "ap-northeast-2": 1.0232, "ap-southeast-1": 0.956, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.0386, "eu-central-1": 0.9214, "eu-west-1": 0.8664, "sa-east-1": 1.183, - "us-east-1": 0.8567, + "us-east-1": 0.7907, "us-east-2": 0.0, "us-west-1": 0.9779, "us-west-2": 0.7907 }, "m5zn.3xlarge": { - "ap-northeast-1": 1.4101, - "ap-northeast-2": 0.0, + "ap-northeast-1": 1.5381, + "ap-northeast-2": 1.348, "ap-southeast-1": 1.369, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.369, "eu-central-1": 1.3172, "eu-west-1": 1.3451, "sa-east-1": 1.7094, @@ -54712,246 +58931,271 @@ "m5zn.6xlarge": { "ap-northeast-1": 2.9462, "ap-northeast-2": 0.0, - "ap-southeast-1": 2.8558, - "ap-southeast-2": 2.608, + "ap-southeast-1": 2.608, + "ap-southeast-2": 2.8558, "eu-central-1": 2.5043, - "eu-west-1": 2.3392, + "eu-west-1": 0.0, "sa-east-1": 0.0, "us-east-1": 2.112, "us-east-2": 2.3102, - "us-west-1": 0.0, + "us-west-1": 2.6736, "us-west-2": 2.3102 }, "m5zn.12xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 5.5816, - "eu-central-1": 0.0, - "eu-west-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 5.3535, + "eu-west-1": 4.9902, "sa-east-1": 7.0795, "us-east-1": 4.0941, - "us-east-2": 4.0941, + "us-east-2": 4.4905, "us-west-1": 4.7548, - "us-west-2": 4.0941 + "us-west-2": 4.4905 }, "m6a.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.1716, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.1788, "ap-southeast-2": 0.1788, + "ca-central-1": 0.0, "eu-central-1": 0.1635, + "eu-south-1": 0.17088, "eu-west-1": 0.1563, "eu-west-2": 0.1599, "sa-east-1": 0.21147, - "us-east-1": 0.0, + "us-east-1": 0.15504, "us-east-2": 0.1464, "us-west-1": 0.1608, - "us-west-2": 0.15504 + "us-west-2": 0.0 }, "m6a.xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.18221, - "ap-south-2": 0.0, - "ap-southeast-1": 0.2976, + "ap-south-2": 0.18221, + "ap-southeast-1": 0.276, "ap-southeast-2": 0.0, - "eu-central-1": 0.267, - "eu-west-1": 0.2526, + "ca-central-1": 0.0, + "eu-central-1": 0.2877, + "eu-south-1": 0.2616, + "eu-west-1": 0.27186, "eu-west-2": 0.2598, - "sa-east-1": 0.3354, - "us-east-1": 0.25008, + "sa-east-1": 0.0, + "us-east-1": 0.2328, "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.25008 + "us-west-1": 0.2616, + "us-west-2": 0.2328 }, "m6a.metal": { "ap-northeast-1": 10.8436, "ap-south-1": 5.4628, "ap-south-2": 5.4628, "ap-southeast-1": 10.498, - "ap-southeast-2": 10.498, + "ap-southeast-2": 0.0, + "ca-central-1": 9.3748, "eu-central-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 9.3748, "eu-west-2": 9.7204, "sa-east-1": 13.3492, "us-east-1": 8.4244, "us-east-2": 8.4244, "us-west-1": 9.8068, - "us-west-2": 0.0 + "us-west-2": 8.4244 }, "m6a.2xlarge": { "ap-northeast-1": 0.62104, - "ap-south-1": 0.37442, - "ap-south-2": 0.3522, - "ap-southeast-1": 0.562, - "ap-southeast-2": 0.0, - "eu-central-1": 0.544, - "eu-west-1": 0.0, - "eu-west-2": 0.5296, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.51016, + "ap-south-1": 0.3522, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.562, + "ca-central-1": 0.5152, + "eu-central-1": 0.5854, + "eu-south-1": 0.0, + "eu-west-1": 0.5152, + "eu-west-2": 0.56956, + "sa-east-1": 0.73588, + "us-east-1": 0.4756, + "us-east-2": 0.4756, "us-west-1": 0.57352, "us-west-2": 0.51016 }, "m6a.4xlarge": { - "ap-northeast-1": 1.11208, - "ap-south-1": 0.0, + "ap-northeast-1": 1.0228, + "ap-south-1": 0.61884, "ap-south-2": 0.5744, - "ap-southeast-1": 1.0804, - "ap-southeast-2": 1.0804, + "ap-southeast-1": 0.994, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-south-1": 1.01704, "eu-west-1": 0.9004, "eu-west-2": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 1.34176, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.8212, "us-west-1": 1.01704, "us-west-2": 0.0 }, "m6a.8xlarge": { "ap-northeast-1": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 1.0188, "ap-south-2": 1.0188, "ap-southeast-1": 1.858, - "ap-southeast-2": 2.0308, + "ap-southeast-2": 1.858, + "ca-central-1": 1.82488, "eu-central-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 1.6708, "eu-west-2": 1.88824, - "sa-east-1": 0.0, - "us-east-1": 1.5124, - "us-east-2": 1.65064, + "sa-east-1": 2.3332, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-west-1": 1.7428, "us-west-2": 1.5124 }, "m6a.12xlarge": { "ap-northeast-1": 2.8084, "ap-south-1": 1.4632, - "ap-south-2": 1.59652, + "ap-south-2": 1.4632, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 2.4412, "eu-central-1": 2.614, - "eu-west-1": 0.0, + "eu-south-1": 2.79112, + "eu-west-1": 2.4412, "eu-west-2": 2.76736, "sa-east-1": 3.76528, - "us-east-1": 2.41096, + "us-east-1": 0.0, "us-east-2": 2.2036, "us-west-1": 0.0, - "us-west-2": 2.41096 + "us-west-2": 2.2036 }, "m6a.16xlarge": { - "ap-northeast-1": 3.7012, + "ap-northeast-1": 0.0, "ap-south-1": 2.08536, - "ap-south-2": 1.9076, - "ap-southeast-1": 3.586, + "ap-south-2": 0.0, + "ap-southeast-1": 3.9316, "ap-southeast-2": 3.9316, - "eu-central-1": 0.0, + "ca-central-1": 3.51976, + "eu-central-1": 3.7732, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 3.3268, "sa-east-1": 4.5364, - "us-east-1": 3.17128, + "us-east-1": 2.8948, "us-east-2": 2.8948, "us-west-1": 3.3556, "us-west-2": 2.8948 }, "m6a.24xlarge": { "ap-northeast-1": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-south-1": 2.7964, + "ap-south-2": 2.7964, + "ap-southeast-1": 5.314, "ap-southeast-2": 0.0, + "ca-central-1": 4.7524, "eu-central-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 5.21464, - "eu-west-2": 0.0, + "eu-west-2": 4.9252, "sa-east-1": 6.7396, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 4.2772, "us-west-1": 4.9684, "us-west-2": 0.0 }, "m6a.32xlarge": { - "ap-northeast-1": 7.2724, + "ap-northeast-1": 0.0, "ap-south-1": 4.04072, "ap-south-2": 4.04072, "ap-southeast-1": 7.7332, - "ap-southeast-2": 7.7332, + "ap-southeast-2": 0.0, + "ca-central-1": 6.90952, "eu-central-1": 0.0, - "eu-west-1": 6.90952, - "eu-west-2": 0.0, + "eu-south-1": 6.5812, + "eu-west-1": 6.2932, + "eu-west-2": 7.16296, "sa-east-1": 9.82408, - "us-east-1": 5.6596, - "us-east-2": 5.6596, + "us-east-1": 6.21256, + "us-east-2": 6.21256, "us-west-1": 6.5812, "us-west-2": 6.21256 }, "m6a.48xlarge": { "ap-northeast-1": 10.8436, - "ap-south-1": 5.4628, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 10.498, "ap-southeast-2": 10.498, - "eu-central-1": 10.066, - "eu-west-1": 9.3748, - "eu-west-2": 9.7204, - "sa-east-1": 13.3492, - "us-east-1": 8.4244, - "us-east-2": 0.0, - "us-west-1": 9.8068, - "us-west-2": 0.0 + "ca-central-1": 9.3748, + "eu-central-1": 0.0, + "eu-south-1": 9.8068, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 8.4244, + "us-west-1": 0.0, + "us-west-2": 8.4244 }, "m6g.medium": { - "af-south-1": 0.1138, - "ap-east-1": 0.113, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.1099, - "ap-northeast-3": 0.1096, - "ap-south-1": 0.0853, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.1126, + "ap-south-1": 0.0868, "ap-south-2": 0.0868, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.1109, + "ap-southeast-2": 0.108, "ap-southeast-3": 0.1109, - "ap-southeast-4": 0.1109, + "ap-southeast-4": 0.108, "ca-central-1": 0.1054, + "ca-west-1": 0.1054, "eu-central-1": 0.106, - "eu-central-2": 0.0, - "eu-north-1": 0.1035, - "eu-south-1": 0.0, - "eu-south-2": 0.103, - "eu-west-1": 0.1055, - "eu-west-2": 0.1071, - "eu-west-3": 0.105, - "il-central-1": 0.1078, + "eu-central-2": 0.1136, + "eu-north-1": 0.101, + "eu-south-1": 0.1075, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.1077, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.107, + "me-south-1": 0.0, "sa-east-1": 0.1249, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.0985, "us-gov-east-1": 0.1113, "us-gov-west-1": 0.0, "us-west-1": 0.1075, - "us-west-2": 0.0985 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.1062 }, "m6g.large": { - "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 0.165, + "af-south-1": 0.1616, + "ap-east-1": 0.166, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.1597, "ap-northeast-3": 0.1592, - "ap-south-1": 0.1106, - "ap-south-2": 0.0, - "ap-southeast-1": 0.156, - "ap-southeast-2": 0.1618, - "ap-southeast-3": 0.156, + "ap-south-1": 0.0, + "ap-south-2": 0.1106, + "ap-southeast-1": 0.1618, + "ap-southeast-2": 0.156, + "ap-southeast-3": 0.1618, "ap-southeast-4": 0.1618, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.1612, + "ca-central-1": 0.1456, + "ca-west-1": 0.1456, + "eu-central-1": 0.152, + "eu-central-2": 0.0, "eu-north-1": 0.1469, - "eu-south-1": 0.155, + "eu-south-1": 0.0, "eu-south-2": 0.146, "eu-west-1": 0.0, - "eu-west-2": 0.1488, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.1503, "me-central-1": 0.1546, @@ -54961,8 +59205,9 @@ "us-east-2": 0.137, "us-gov-east-1": 0.1626, "us-gov-west-1": 0.1626, - "us-west-1": 0.1496, - "us-west-2": 0.137 + "us-west-1": 0.0, + "us-west-2": 0.137, + "us-west-2-lax-1": 0.1524 }, "m6g.xlarge": { "af-south-1": 0.0, @@ -54970,13 +59215,14 @@ "ap-northeast-1": 0.258, "ap-northeast-2": 0.2594, "ap-northeast-3": 0.2584, - "ap-south-1": 0.1612, + "ap-south-1": 0.0, "ap-south-2": 0.1673, - "ap-southeast-1": 0.252, - "ap-southeast-2": 0.2635, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-1": 0.2635, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.252, + "ap-southeast-4": 0.2635, "ca-central-1": 0.2312, + "ca-west-1": 0.2415, "eu-central-1": 0.244, "eu-central-2": 0.2745, "eu-north-1": 0.0, @@ -54985,80 +59231,85 @@ "eu-west-1": 0.232, "eu-west-2": 0.2483, "eu-west-3": 0.0, - "il-central-1": 0.2513, + "il-central-1": 0.2406, "me-central-1": 0.2604, "me-south-1": 0.248, "sa-east-1": 0.0, - "us-east-1": 0.214, - "us-east-2": 0.0, + "us-east-1": 0.2232, + "us-east-2": 0.214, "us-gov-east-1": 0.2652, "us-gov-west-1": 0.2536, "us-west-1": 0.25, - "us-west-2": 0.0 + "us-west-2": 0.214, + "us-west-2-lax-1": 0.2448 }, "m6g.metal": { "af-south-1": 3.3812, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 3.3204, - "ap-northeast-3": 0.0, - "ap-south-1": 1.7492, + "ap-northeast-3": 3.4949, + "ap-south-1": 1.8464, "ap-south-2": 1.8464, "ap-southeast-1": 3.3863, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.202, "ap-southeast-3": 0.0, "ap-southeast-4": 3.3863, - "ca-central-1": 0.0, + "ca-central-1": 2.8692, + "ca-west-1": 2.8692, "eu-central-1": 3.074, - "eu-central-2": 3.5627, - "eu-north-1": 2.9108, + "eu-central-2": 3.3684, + "eu-north-1": 0.0, "eu-south-1": 3.1687, - "eu-south-2": 2.882, + "eu-south-2": 3.0452, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.1828, - "il-central-1": 3.0196, - "me-central-1": 3.1572, - "me-south-1": 0.0, - "sa-east-1": 4.0468, + "il-central-1": 3.191, + "me-central-1": 3.3367, + "me-south-1": 3.138, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 2.594, - "us-gov-east-1": 0.0, + "us-east-2": 2.7412, + "us-gov-east-1": 3.4135, "us-gov-west-1": 3.2276, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.7412, + "us-west-2-lax-1": 3.0868 }, "m6g.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.5792, - "ap-northeast-1": 0.55, + "ap-east-1": 0.554, + "ap-northeast-1": 0.526, "ap-northeast-2": 0.0, "ap-northeast-3": 0.5268, "ap-south-1": 0.3324, - "ap-south-2": 0.3445, + "ap-south-2": 0.0, "ap-southeast-1": 0.537, "ap-southeast-2": 0.537, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.537, - "ca-central-1": 0.0, + "ap-southeast-4": 0.514, + "ca-central-1": 0.4929, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.5348, "eu-north-1": 0.458, "eu-south-1": 0.5098, - "eu-south-2": 0.474, + "eu-south-2": 0.0, "eu-west-1": 0.474, - "eu-west-2": 0.0, + "eu-west-2": 0.4852, "eu-west-3": 0.5116, "il-central-1": 0.5126, "me-central-1": 0.5084, "me-south-1": 0.0, - "sa-east-1": 0.6196, + "sa-east-1": 0.0, "us-east-1": 0.4564, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.4564 + "us-west-1": 0.5099, + "us-west-2": 0.4564, + "us-west-2-lax-1": 0.5217 }, "m6g.4xlarge": { "af-south-1": 0.9428, @@ -55070,18 +59321,19 @@ "ap-south-2": 0.5348, "ap-southeast-1": 0.0, "ap-southeast-2": 0.9441, - "ap-southeast-3": 0.898, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.898, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 0.8559, + "ca-west-1": 0.8148, + "eu-central-1": 0.91, "eu-central-2": 0.9396, "eu-north-1": 0.786, "eu-south-1": 0.8468, - "eu-south-2": 0.0, + "eu-south-2": 0.8588, "eu-west-1": 0.0, "eu-west-2": 0.883, - "eu-west-3": 0.0, - "il-central-1": 0.0, + "eu-west-3": 0.8932, + "il-central-1": 0.8952, "me-central-1": 0.0, "me-south-1": 0.882, "sa-east-1": 0.0, @@ -55089,158 +59341,182 @@ "us-east-2": 0.746, "us-gov-east-1": 0.9044, "us-gov-west-1": 0.9509, - "us-west-1": 0.8468, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 0.746, + "us-west-2-lax-1": 0.0 }, "m6g.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.8531, "ap-east-1": 1.826, "ap-northeast-1": 1.81, "ap-northeast-2": 0.0, "ap-northeast-3": 1.8124, - "ap-south-1": 0.9882, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 1.666, - "ap-southeast-2": 1.666, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.7582, "ap-southeast-3": 1.7582, "ap-southeast-4": 1.666, "ca-central-1": 0.0, - "eu-central-1": 1.602, + "ca-west-1": 1.4996, + "eu-central-1": 0.0, "eu-central-2": 1.7492, "eu-north-1": 1.442, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 1.5876, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 1.6564, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 1.634, "sa-east-1": 0.0, - "us-east-1": 1.4356, - "us-east-2": 1.362, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 1.6788, "us-gov-west-1": 0.0, - "us-west-1": 1.5636, - "us-west-2": 0.0 + "us-west-1": 1.6496, + "us-west-2": 1.362, + "us-west-2-lax-1": 1.6084 }, "m6g.12xlarge": { - "af-south-1": 0.0, - "ap-east-1": 2.674, + "af-south-1": 2.5684, + "ap-east-1": 2.8252, "ap-northeast-1": 2.506, "ap-northeast-2": 2.386, "ap-northeast-3": 2.6536, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 1.4173, "ap-southeast-1": 2.5722, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 2.434, "ap-southeast-4": 2.434, "ca-central-1": 2.1844, + "ca-west-1": 2.3077, "eu-central-1": 2.338, - "eu-central-2": 0.0, - "eu-north-1": 2.2156, + "eu-central-2": 2.7045, + "eu-north-1": 0.0, "eu-south-1": 2.2804, "eu-south-2": 0.0, - "eu-west-1": 2.194, + "eu-west-1": 0.0, "eu-west-2": 2.2612, - "eu-west-3": 2.4196, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 2.535, + "me-central-1": 0.0, "me-south-1": 2.386, "sa-east-1": 3.2439, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 2.4532, + "us-east-2": 2.0884, + "us-gov-east-1": 2.5926, "us-gov-west-1": 2.4532, - "us-west-1": 2.2804, - "us-west-2": 0.0 + "us-west-1": 2.4094, + "us-west-2": 0.0, + "us-west-2-lax-1": 2.3476 }, "m6g.16xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 3.49, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.3044, "ap-south-1": 1.7492, "ap-south-2": 1.7492, "ap-southeast-1": 3.3863, - "ap-southeast-2": 3.202, - "ap-southeast-3": 3.202, + "ap-southeast-2": 0.0, + "ap-southeast-3": 3.3863, "ap-southeast-4": 3.3863, "ca-central-1": 2.8692, - "eu-central-1": 3.25, + "ca-west-1": 2.8692, + "eu-central-1": 3.074, "eu-central-2": 3.5627, "eu-north-1": 2.754, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 2.9716, + "eu-west-2": 3.1421, "eu-west-3": 3.1828, "il-central-1": 3.0196, "me-central-1": 3.1572, "me-south-1": 3.138, - "sa-east-1": 4.2818, - "us-east-1": 2.594, + "sa-east-1": 0.0, + "us-east-1": 2.7412, "us-east-2": 2.594, "us-gov-east-1": 3.2276, "us-gov-west-1": 3.2276, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 3.0868 }, "m6gd.medium": { "af-south-1": 0.12, + "ap-east-1": 0.122, "ap-northeast-1": 0.122, - "ap-northeast-2": 0.1156, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.1219, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.1165, + "ap-south-2": 0.0902, + "ap-southeast-1": 0.1199, "ap-southeast-2": 0.1204, "ap-southeast-3": 0.0, "ap-southeast-4": 0.117, + "ca-central-1": 0.0, + "ca-west-1": 0.1104, "eu-central-1": 0.1177, "eu-central-2": 0.0, "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.1104, "eu-west-1": 0.0, - "eu-west-2": 0.1155, - "eu-west-3": 0.116, + "eu-west-2": 0.1124, + "eu-west-3": 0.0, "il-central-1": 0.1161, - "me-central-1": 0.1187, + "me-central-1": 0.1154, + "me-south-1": 0.1154, + "sa-east-1": 0.1362, "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 0.1206, + "us-gov-west-1": 0.1206, "us-west-1": 0.113, "us-west-2": 0.0 }, "m6gd.large": { "af-south-1": 0.18, + "ap-east-1": 0.0, "ap-northeast-1": 0.184, "ap-northeast-2": 0.1778, "ap-northeast-3": 0.1768, "ap-south-1": 0.1204, "ap-south-2": 0.1204, - "ap-southeast-1": 0.1798, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.173, + "ap-southeast-2": 0.174, "ap-southeast-3": 0.1798, "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.1668, "eu-central-1": 0.1755, "eu-central-2": 0.0, "eu-north-1": 0.1618, + "eu-south-1": 0.1656, "eu-south-2": 0.1668, "eu-west-1": 0.1668, "eu-west-2": 0.1711, - "eu-west-3": 0.0, + "eu-west-3": 0.1719, "il-central-1": 0.1722, "me-central-1": 0.1708, + "me-south-1": 0.1709, + "sa-east-1": 0.204, "us-east-1": 0.1558, "us-east-2": 0.1558, - "us-west-1": 0.1724, + "us-gov-east-1": 0.1744, + "us-gov-west-1": 0.1813, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.xlarge": { - "af-south-1": 0.3, - "ap-northeast-1": 0.294, + "af-south-1": 0.3144, + "ap-east-1": 0.308, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, @@ -55249,223 +59525,282 @@ "ap-southeast-2": 0.288, "ap-southeast-3": 0.2996, "ap-southeast-4": 0.288, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.291, "eu-central-2": 0.2998, "eu-north-1": 0.252, + "eu-south-1": 0.2839, "eu-south-2": 0.2737, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 0.2696, "eu-west-3": 0.2839, "il-central-1": 0.2844, "me-central-1": 0.0, + "me-south-1": 0.2818, + "sa-east-1": 0.3646, "us-east-1": 0.2516, "us-east-2": 0.2408, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.metal": { "af-south-1": 3.97, + "ap-east-1": 4.3361, "ap-northeast-1": 3.874, "ap-northeast-2": 3.6884, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 2.1788, "ap-south-2": 2.0628, "ap-southeast-1": 3.9636, "ap-southeast-2": 3.9956, "ap-southeast-3": 3.746, "ap-southeast-4": 3.9956, + "ca-central-1": 3.5491, + "ca-west-1": 0.0, "eu-central-1": 3.826, - "eu-central-2": 3.9668, - "eu-north-1": 3.202, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 3.3556, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 3.6848, "eu-west-3": 3.5092, - "il-central-1": 3.5169, + "il-central-1": 3.7201, "me-central-1": 3.6756, - "us-east-1": 0.0, - "us-east-2": 3.1964, - "us-west-1": 3.7268, + "me-south-1": 3.6782, + "sa-east-1": 4.738, + "us-east-1": 3.1964, + "us-east-2": 3.0228, + "us-gov-east-1": 3.7908, + "us-gov-west-1": 4.0104, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.61, + "ap-east-1": 0.626, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.5748, "ap-northeast-3": 0.6252, - "ap-south-1": 0.0, + "ap-south-1": 0.3861, "ap-south-2": 0.3861, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.6092, "ap-southeast-4": 0.0, + "ca-central-1": 0.5574, + "ca-west-1": 0.5574, "eu-central-1": 0.592, "eu-central-2": 0.0, "eu-north-1": 0.514, + "eu-south-1": 0.0, "eu-south-2": 0.5574, "eu-west-1": 0.0, "eu-west-2": 0.5744, - "eu-west-3": 0.5777, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.5534, "me-central-1": 0.5998, + "me-south-1": 0.0, + "sa-east-1": 0.7392, "us-east-1": 0.4916, "us-east-2": 0.0, - "us-west-1": 0.5796, - "us-west-2": 0.0 + "us-gov-east-1": 0.5876, + "us-gov-west-1": 0.6151, + "us-west-1": 0.554, + "us-west-2": 0.4916 }, "m6gd.4xlarge": { - "af-south-1": 1.1476, - "ap-northeast-1": 1.066, + "af-south-1": 0.0, + "ap-east-1": 1.122, + "ap-northeast-1": 1.122, "ap-northeast-2": 1.0196, "ap-northeast-3": 1.0644, "ap-south-1": 0.0, "ap-south-2": 0.6132, - "ap-southeast-1": 1.0884, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.042, "ap-southeast-3": 1.0884, - "ap-southeast-4": 0.0, + "ap-southeast-4": 1.042, + "ca-central-1": 0.9364, + "ca-west-1": 0.0, "eu-central-1": 1.002, - "eu-central-2": 0.0, + "eu-central-2": 1.1464, "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.9364, "eu-west-2": 0.0, "eu-west-3": 0.9748, "il-central-1": 0.0, - "me-central-1": 1.0696, - "us-east-1": 0.8966, + "me-central-1": 1.0164, + "me-south-1": 1.0703, + "sa-east-1": 1.3485, + "us-east-1": 0.0, "us-east-2": 0.8532, + "us-gov-east-1": 1.1001, + "us-gov-west-1": 1.0452, "us-west-1": 0.978, - "us-west-2": 0.0 + "us-west-2": 0.8532 }, "m6gd.8xlarge": { "af-south-1": 2.1652, - "ap-northeast-1": 2.114, - "ap-northeast-2": 2.0149, + "ap-east-1": 2.233, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.9988, - "ap-south-1": 1.1544, + "ap-south-1": 1.0964, "ap-south-2": 1.1544, - "ap-southeast-1": 1.938, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.954, "ap-southeast-3": 2.0468, "ap-southeast-4": 1.954, + "ca-central-1": 1.8396, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 2.1628, "eu-north-1": 1.7588, + "eu-south-1": 1.8196, "eu-south-2": 1.7428, "eu-west-1": 0.0, "eu-west-2": 1.8068, - "eu-west-3": 1.921, - "il-central-1": 0.0, - "me-central-1": 2.0092, + "eu-west-3": 1.8196, + "il-central-1": 1.8234, + "me-central-1": 0.0, + "me-south-1": 1.9041, + "sa-east-1": 2.434, "us-east-1": 0.0, - "us-east-2": 1.5764, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.9604, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.6632 }, "m6gd.12xlarge": { - "af-south-1": 0.0, - "ap-northeast-1": 0.0, + "af-south-1": 3.01, + "ap-east-1": 3.2846, + "ap-northeast-1": 2.938, "ap-northeast-2": 2.7988, "ap-northeast-3": 3.1014, - "ap-south-1": 1.5796, + "ap-south-1": 0.0, "ap-south-2": 1.6666, "ap-southeast-1": 3.0052, "ap-southeast-2": 3.0292, - "ap-southeast-3": 3.0052, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "eu-central-1": 2.902, - "eu-central-2": 3.1792, + "ca-central-1": 2.5492, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, + "eu-south-1": 2.8165, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 2.5492, "eu-west-2": 2.7961, "eu-west-3": 2.6644, - "il-central-1": 2.6702, - "me-central-1": 0.0, - "us-east-1": 2.4298, - "us-east-2": 2.2996, + "il-central-1": 2.8226, + "me-central-1": 2.7892, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 2.4298, + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.0403, "us-west-1": 2.674, "us-west-2": 2.2996 }, "m6gd.16xlarge": { "af-south-1": 3.97, - "ap-northeast-1": 3.874, + "ap-east-1": 4.098, + "ap-northeast-1": 4.098, "ap-northeast-2": 3.8997, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 2.0628, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.746, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 3.9956, + "ca-central-1": 3.5491, + "ca-west-1": 3.3556, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 3.202, + "eu-north-1": 0.0, + "eu-south-1": 3.5092, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 3.7201, "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 4.738, "us-east-1": 3.1964, "us-east-2": 3.0228, + "us-gov-east-1": 4.0104, + "us-gov-west-1": 4.0104, "us-west-1": 3.522, - "us-west-2": 3.0228 + "us-west-2": 3.1964 }, "m6i.large": { - "af-south-1": 0.187, + "af-south-1": 0.1997, "ap-east-1": 0.0, - "ap-northeast-1": 0.184, + "ap-northeast-1": 0.1964, "ap-northeast-2": 0.1898, - "ap-northeast-3": 0.184, + "ap-northeast-3": 0.1964, "ap-south-1": 0.0, "ap-south-2": 0.1711, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.192, - "ap-southeast-3": 0.0, + "ap-southeast-1": 0.192, + "ap-southeast-2": 0.18, + "ap-southeast-3": 0.18, "ca-central-1": 0.167, + "ca-west-1": 0.1777, "eu-central-1": 0.175, + "eu-central-2": 0.0, "eu-north-1": 0.1722, "eu-south-1": 0.1832, "eu-west-1": 0.167, - "eu-west-2": 0.1821, - "eu-west-3": 0.172, + "eu-west-2": 0.171, + "eu-west-3": 0.0, "il-central-1": 0.18359, "me-central-1": 0.18947, "me-south-1": 0.2052, "sa-east-1": 0.2283, "us-east-1": 0.1656, "us-east-2": 0.156, - "us-gov-east-1": 0.181, - "us-gov-west-1": 0.1931, + "us-gov-east-1": 0.1931, + "us-gov-west-1": 0.0, "us-west-1": 0.172, "us-west-2": 0.0 }, "m6i.xlarge": { "af-south-1": 0.314, - "ap-east-1": 0.0, + "ap-east-1": 0.3504, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.296, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.262, + "ap-south-1": 0.0, "ap-south-2": 0.262, - "ap-southeast-1": 0.3, - "ap-southeast-2": 0.324, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.3, "ca-central-1": 0.2954, + "ca-west-1": 0.0, "eu-central-1": 0.29, - "eu-north-1": 0.0, + "eu-central-2": 0.3383, + "eu-north-1": 0.2844, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.282, + "eu-west-2": 0.0, "eu-west-3": 0.284, - "il-central-1": 0.30717, + "il-central-1": 0.0, "me-central-1": 0.2954, - "me-south-1": 0.324, - "sa-east-1": 0.3966, + "me-south-1": 0.3504, + "sa-east-1": 0.366, "us-east-1": 0.2712, - "us-east-2": 0.252, + "us-east-2": 0.2712, "us-gov-east-1": 0.3262, "us-gov-west-1": 0.302, "us-west-1": 0.0, @@ -55475,7 +59810,7 @@ "af-south-1": 8.258, "ap-east-1": 8.578, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 7.682, "ap-northeast-3": 8.066, "ap-south-1": 6.594, "ap-south-2": 6.594, @@ -55483,152 +59818,164 @@ "ap-southeast-2": 7.81, "ap-southeast-3": 0.0, "ca-central-1": 6.978, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 6.658, + "eu-central-2": 8.226, + "eu-north-1": 0.0, "eu-south-1": 7.298, "eu-west-1": 0.0, "eu-west-2": 7.234, - "eu-west-3": 0.0, + "eu-west-3": 7.298, "il-central-1": 7.3204, - "me-central-1": 0.0, - "me-south-1": 8.578, + "me-central-1": 7.6628, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 6.274, "us-east-2": 6.274, - "us-gov-east-1": 7.874, + "us-gov-east-1": 0.0, "us-gov-west-1": 7.874, "us-west-1": 7.298, "us-west-2": 6.274 }, "m6i.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.638, "ap-east-1": 0.658, "ap-northeast-1": 0.0, "ap-northeast-2": 0.6492, "ap-northeast-3": 0.626, - "ap-south-1": 0.0, - "ap-south-2": 0.5744, + "ap-south-1": 0.5744, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.658, "ap-southeast-3": 0.0, "ca-central-1": 0.6008, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.6866, "eu-north-1": 0.538, "eu-south-1": 0.0, - "eu-west-1": 0.558, + "eu-west-1": 0.0, "eu-west-2": 0.6184, "eu-west-3": 0.0, - "il-central-1": 0.5794, + "il-central-1": 0.62434, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 0.742, "us-east-1": 0.5524, "us-east-2": 0.5524, "us-gov-east-1": 0.614, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.614, "us-west-1": 0.578, "us-west-2": 0.5524 }, "m6i.4xlarge": { "af-south-1": 0.0, - "ap-east-1": 1.186, + "ap-east-1": 1.2916, "ap-northeast-1": 1.122, "ap-northeast-2": 1.1684, "ap-northeast-3": 1.2212, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.938, "ap-southeast-1": 1.09, - "ap-southeast-2": 1.09, + "ap-southeast-2": 1.186, "ap-southeast-3": 1.09, "ca-central-1": 0.986, - "eu-central-1": 0.0, + "ca-west-1": 0.986, + "eu-central-1": 1.142, + "eu-central-2": 1.2432, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 1.026, "eu-west-1": 0.0, "eu-west-2": 1.018, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 1.0716, + "eu-west-3": 1.1156, + "il-central-1": 1.11868, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 1.354, - "us-east-1": 0.898, + "us-east-1": 0.0, "us-east-2": 0.898, "us-gov-east-1": 1.098, "us-gov-west-1": 0.0, - "us-west-1": 1.026, - "us-west-2": 0.9748 + "us-west-1": 0.0, + "us-west-2": 0.898 }, "m6i.8xlarge": { "af-south-1": 2.162, - "ap-east-1": 2.242, + "ap-east-1": 2.4532, "ap-northeast-1": 0.0, "ap-northeast-2": 2.2068, - "ap-northeast-3": 2.114, + "ap-northeast-3": 0.0, "ap-south-1": 1.746, "ap-south-2": 0.0, - "ap-southeast-1": 2.05, - "ap-southeast-2": 2.242, - "ap-southeast-3": 2.05, - "ca-central-1": 2.0132, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 1.842, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 2.3564, "eu-north-1": 1.9252, "eu-south-1": 1.922, - "eu-west-1": 2.0132, + "eu-west-1": 1.842, "eu-west-2": 2.0836, "eu-west-3": 2.1012, "il-central-1": 0.0, - "me-central-1": 0.0, - "me-south-1": 2.242, + "me-central-1": 2.20152, + "me-south-1": 2.4532, "sa-east-1": 2.578, "us-east-1": 1.666, - "us-east-2": 1.8196, + "us-east-2": 1.666, "us-gov-east-1": 2.066, "us-gov-west-1": 2.066, "us-west-1": 1.922, "us-west-2": 1.8196 }, "m6i.12xlarge": { - "af-south-1": 3.178, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 3.6148, + "ap-northeast-1": 3.106, "ap-northeast-2": 2.962, "ap-northeast-3": 3.4036, "ap-south-1": 2.7964, - "ap-south-2": 0.0, + "ap-south-2": 2.7964, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.298, + "ap-southeast-2": 3.01, "ap-southeast-3": 3.01, - "ca-central-1": 2.698, + "ca-central-1": 2.9548, + "ca-west-1": 2.698, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 2.8228, "eu-south-1": 2.818, "eu-west-1": 2.9548, "eu-west-2": 3.0604, - "eu-west-3": 2.818, + "eu-west-3": 0.0, "il-central-1": 2.8264, "me-central-1": 0.0, "me-south-1": 3.298, - "sa-east-1": 0.0, + "sa-east-1": 4.1692, "us-east-1": 2.6644, "us-east-2": 2.6644, "us-gov-east-1": 3.3244, "us-gov-west-1": 3.034, "us-west-1": 2.818, - "us-west-2": 2.434 + "us-west-2": 2.6644 }, "m6i.16xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 4.098, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.2836, - "ap-northeast-3": 0.0, + "ap-northeast-3": 4.4948, "ap-south-1": 0.0, "ap-south-2": 3.362, "ap-southeast-1": 0.0, "ap-southeast-2": 4.354, "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 3.81, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 4.5828, "eu-north-1": 3.7204, "eu-south-1": 3.714, "eu-west-1": 3.8964, @@ -55639,76 +59986,88 @@ "me-south-1": 4.354, "sa-east-1": 0.0, "us-east-1": 3.5092, - "us-east-2": 3.202, - "us-gov-east-1": 0.0, + "us-east-2": 3.5092, + "us-gov-east-1": 4.002, "us-gov-west-1": 4.3892, "us-west-1": 4.0724, "us-west-2": 0.0 }, "m6i.24xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 6.6772, + "ap-east-1": 6.466, + "ap-northeast-1": 6.082, "ap-northeast-2": 0.0, "ap-northeast-3": 6.082, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-1": 5.4628, + "ap-south-2": 5.4628, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 6.466, - "ca-central-1": 5.266, + "ca-central-1": 5.7796, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 6.202, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 5.9908, - "eu-west-3": 0.0, + "eu-west-3": 6.0436, "il-central-1": 5.5228, "me-central-1": 5.7796, - "me-south-1": 7.0996, + "me-south-1": 0.0, "sa-east-1": 7.474, - "us-east-1": 5.1988, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 4.738, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 4.738 + "us-west-2": 0.0 }, "m6i.32xlarge": { - "af-south-1": 8.258, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 8.578, "ap-northeast-1": 0.0, "ap-northeast-2": 8.4372, - "ap-northeast-3": 0.0, + "ap-northeast-3": 8.066, "ap-south-1": 6.594, "ap-south-2": 0.0, "ap-southeast-1": 7.81, "ap-southeast-2": 8.578, "ap-southeast-3": 7.81, "ca-central-1": 6.978, - "eu-central-1": 8.226, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 6.658, "eu-south-1": 7.298, - "eu-west-1": 6.978, - "eu-west-2": 0.0, + "eu-west-1": 7.6628, + "eu-west-2": 7.234, "eu-west-3": 7.298, "il-central-1": 7.3204, "me-central-1": 7.6628, "me-south-1": 8.578, - "sa-east-1": 0.0, + "sa-east-1": 9.922, "us-east-1": 0.0, - "us-east-2": 6.8884, + "us-east-2": 6.274, "us-gov-east-1": 0.0, "us-gov-west-1": 7.874, - "us-west-1": 7.298, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 6.8884 }, "m6id.large": { "ap-northeast-1": 0.22863, - "ap-southeast-2": 0.2091, + "ap-northeast-2": 0.22055, + "ap-south-1": 0.1881, + "ap-southeast-1": 0.20805, + "ap-southeast-2": 0.0, + "ca-central-1": 0.20553, + "ca-west-1": 0.20553, "eu-central-1": 0.2028, + "eu-central-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.19755, "il-central-1": 0.21281, + "sa-east-1": 0.2679, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.22522, @@ -55716,514 +60075,1242 @@ }, "m6id.xlarge": { "ap-northeast-1": 0.39726, + "ap-northeast-2": 0.3519, + "ap-south-1": 0.0, + "ap-southeast-1": 0.3561, "ap-southeast-2": 0.3582, + "ca-central-1": 0.0, + "ca-west-1": 0.3246, "eu-central-1": 0.3456, - "eu-west-1": 0.35106, + "eu-central-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 0.36562, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.2973, "us-east-2": 0.0, - "us-gov-west-1": 0.3604, + "us-gov-west-1": 0.39044, "us-west-2": 0.0 }, "m6id.metal": { "ap-northeast-1": 9.9412, + "ap-northeast-2": 9.4708, + "ap-south-1": 8.3284, + "ap-southeast-1": 9.6052, "ap-southeast-2": 9.6724, + "ca-central-1": 8.5972, + "ca-west-1": 8.5972, "eu-central-1": 9.2692, + "eu-central-2": 10.18312, "eu-west-1": 8.5972, + "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 7.7236, "us-east-2": 0.0, "us-gov-west-1": 9.7428, - "us-west-2": 7.7236 + "us-west-2": 0.0 }, "m6id.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.7432, + "ap-northeast-2": 0.0, + "ap-south-1": 0.6424, + "ap-southeast-1": 0.78142, "ap-southeast-2": 0.7264, + "ca-central-1": 0.71212, + "ca-west-1": 0.0, "eu-central-1": 0.75832, + "eu-central-2": 0.75832, "eu-west-1": 0.0, + "eu-west-2": 0.73522, "il-central-1": 0.68568, + "sa-east-1": 0.9616, "us-east-1": 0.6046, - "us-east-2": 0.65206, - "us-gov-west-1": 0.79088, - "us-west-2": 0.6046 + "us-east-2": 0.6046, + "us-gov-west-1": 0.7308, + "us-west-2": 0.0 }, "m6id.4xlarge": { "ap-northeast-1": 1.3564, - "ap-southeast-2": 0.0, + "ap-northeast-2": 1.41436, + "ap-south-1": 1.25728, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.3228, + "ca-central-1": 1.29424, + "ca-west-1": 1.1884, "eu-central-1": 1.2724, - "eu-west-1": 1.29424, + "eu-central-2": 0.0, + "eu-west-1": 1.1884, + "eu-west-2": 1.34044, "il-central-1": 0.0, - "us-east-1": 1.17412, + "sa-east-1": 1.642, + "us-east-1": 0.0, "us-east-2": 1.17412, "us-gov-west-1": 0.0, - "us-west-2": 1.0792 + "us-west-2": 1.17412 }, "m6id.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.5828, + "ap-northeast-2": 2.4652, + "ap-south-1": 0.0, + "ap-southeast-1": 2.4988, "ap-southeast-2": 2.75416, + "ca-central-1": 2.2468, + "ca-west-1": 0.0, "eu-central-1": 2.4148, + "eu-central-2": 2.89461, "eu-west-1": 0.0, + "eu-west-2": 2.3308, "il-central-1": 2.35272, + "sa-east-1": 3.154, "us-east-1": 2.0284, - "us-east-2": 0.0, - "us-gov-west-1": 2.5332, - "us-west-2": 2.21824 + "us-east-2": 2.0284, + "us-gov-west-1": 0.0, + "us-west-2": 2.0284 }, "m6id.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.8092, + "ap-northeast-2": 3.98308, + "ap-south-1": 0.0, + "ap-southeast-1": 4.03852, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 3.89992, - "eu-west-1": 3.62272, + "eu-central-2": 0.0, + "eu-west-1": 3.3052, + "eu-west-2": 0.0, "il-central-1": 0.0, - "us-east-1": 2.9776, - "us-east-2": 3.26236, - "us-gov-west-1": 3.7348, - "us-west-2": 3.26236 + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 4.09528, + "us-west-2": 2.9776 }, "m6id.16xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 4.9012, + "ap-northeast-2": 5.26744, + "ap-south-1": 0.0, + "ap-southeast-1": 4.8676, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 4.3636, "eu-central-1": 4.6996, + "eu-central-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 5.01998, + "sa-east-1": 6.178, "us-east-1": 4.30648, - "us-east-2": 3.9268, - "us-gov-west-1": 4.9364, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 3.9268 }, "m6id.24xlarge": { "ap-northeast-1": 8.22424, - "ap-southeast-2": 8.00248, + "ap-northeast-2": 7.1356, + "ap-south-1": 0.0, + "ap-southeast-1": 7.2364, + "ap-southeast-2": 0.0, + "ca-central-1": 6.4804, + "ca-west-1": 0.0, "eu-central-1": 7.66984, - "eu-west-1": 6.4804, + "eu-central-2": 7.66984, + "eu-west-1": 7.11544, + "eu-west-2": 6.7324, "il-central-1": 6.79816, - "us-east-1": 0.0, - "us-east-2": 6.39472, + "sa-east-1": 9.202, + "us-east-1": 6.39472, + "us-east-2": 0.0, "us-gov-west-1": 8.06056, "us-west-2": 6.39472 }, "m6id.32xlarge": { "ap-northeast-1": 9.9412, + "ap-northeast-2": 0.0, + "ap-south-1": 8.3284, + "ap-southeast-1": 9.6052, "ap-southeast-2": 9.6724, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 8.5972, + "eu-central-1": 9.2692, + "eu-central-2": 0.0, "eu-west-1": 8.5972, + "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 7.7236, "us-east-2": 0.0, - "us-gov-west-1": 9.7428, + "us-gov-west-1": 0.0, "us-west-2": 7.7236 }, "m6idn.large": { "ap-northeast-1": 0.28523, - "ap-southeast-1": 0.0, - "eu-central-1": 0.24954, + "ap-southeast-1": 0.25539, + "ap-southeast-2": 0.28136, + "eu-central-1": 0.26849, + "eu-north-1": 0.2426, + "eu-south-2": 0.0, "eu-west-1": 0.25562, - "us-east-1": 0.23503, - "us-east-2": 0.0, + "us-east-1": 0.21912, + "us-east-2": 0.23503, "us-gov-west-1": 0.26007, - "us-west-2": 0.0 + "us-west-1": 0.26178, + "us-west-2": 0.21912 }, "m6idn.xlarge": { - "ap-northeast-1": 0.4695, + "ap-northeast-1": 0.51045, "ap-southeast-1": 0.48986, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 0.392, + "eu-south-2": 0.0, + "eu-west-1": 0.41568, "us-east-1": 0.0, - "us-east-2": 0.41006, + "us-east-2": 0.0, "us-gov-west-1": 0.50015, - "us-west-2": 0.0 + "us-west-1": 0.42688, + "us-west-2": 0.41006 }, "m6idn.metal": { "ap-northeast-1": 13.234, - "ap-southeast-1": 12.63496, + "ap-southeast-1": 0.0, + "ap-southeast-2": 13.00936, "eu-central-1": 12.26056, + "eu-north-1": 10.754, + "eu-south-2": 0.0, "eu-west-1": 11.51176, "us-east-1": 10.31368, - "us-east-2": 0.0, + "us-east-2": 10.31368, "us-gov-west-1": 0.0, + "us-west-1": 11.87016, "us-west-2": 0.0 }, "m6idn.2xlarge": { "ap-northeast-1": 1.0309, "ap-southeast-1": 0.98972, + "ap-southeast-2": 0.0, "eu-central-1": 0.96398, - "eu-west-1": 0.84136, - "us-east-1": 0.76648, + "eu-north-1": 0.794, + "eu-south-2": 0.89639, + "eu-west-1": 0.9125, + "us-east-1": 0.83013, "us-east-2": 0.0, "us-gov-west-1": 0.93028, + "us-west-1": 0.86376, "us-west-2": 0.83013 }, "m6idn.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 1.64632, - "eu-west-1": 1.69499, + "ap-southeast-1": 1.69312, + "ap-southeast-2": 1.90091, + "eu-central-1": 1.79795, + "eu-north-1": 1.458, + "eu-south-2": 0.0, + "eu-west-1": 1.55272, "us-east-1": 1.40296, "us-east-2": 0.0, - "us-gov-west-1": 1.89062, + "us-gov-west-1": 0.0, + "us-west-1": 1.59752, "us-west-2": 1.53026 }, "m6idn.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.406, "ap-southeast-1": 3.56886, - "eu-central-1": 3.4659, - "eu-west-1": 3.25998, + "ap-southeast-2": 0.0, + "eu-central-1": 3.16264, + "eu-north-1": 0.0, + "eu-south-2": 2.91688, + "eu-west-1": 0.0, "us-east-1": 2.67592, "us-east-2": 2.93051, "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 2.93051 }, "m6idn.12xlarge": { - "ap-northeast-1": 5.044, + "ap-northeast-1": 5.5354, "ap-southeast-1": 4.81936, + "ap-southeast-2": 0.0, "eu-central-1": 5.13386, + "eu-north-1": 4.114, + "eu-south-2": 0.0, "eu-west-1": 4.39816, - "us-east-1": 4.33077, - "us-east-2": 4.33077, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 4.97282, + "us-west-2": 4.33077 }, "m6idn.16xlarge": { "ap-northeast-1": 6.682, "ap-southeast-1": 6.38248, + "ap-southeast-2": 7.21365, "eu-central-1": 6.19528, - "eu-west-1": 6.38997, + "eu-north-1": 0.0, + "eu-south-2": 5.70376, + "eu-west-1": 5.82088, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 6.58709, "us-west-2": 5.73102 }, "m6idn.24xlarge": { "ap-northeast-1": 9.958, "ap-southeast-1": 9.50872, + "ap-southeast-2": 0.0, "eu-central-1": 10.13771, - "eu-west-1": 8.66632, + "eu-north-1": 8.8948, + "eu-south-2": 0.0, + "eu-west-1": 9.51995, "us-east-1": 8.53154, "us-east-2": 0.0, "us-gov-west-1": 10.6937, + "us-west-1": 9.81563, "us-west-2": 7.76776 }, "m6idn.32xlarge": { "ap-northeast-1": 13.234, "ap-southeast-1": 12.63496, - "eu-central-1": 12.26056, + "ap-southeast-2": 13.00936, + "eu-central-1": 0.0, + "eu-north-1": 10.754, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 10.31368, - "us-gov-west-1": 12.93448, + "us-gov-west-1": 0.0, + "us-west-1": 11.87016, "us-west-2": 10.31368 }, "m6in.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.25691, "ap-southeast-1": 0.23082, + "ap-southeast-2": 0.25305, "eu-central-1": 0.24147, + "eu-north-1": 0.2228, + "eu-south-2": 0.0, "eu-west-1": 0.23117, "us-east-1": 0.21315, "us-east-2": 0.0, - "us-gov-west-1": 0.25176, + "us-gov-west-1": 0.0, + "us-west-1": 0.23868, "us-west-2": 0.21315 }, "m6in.xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.4358, - "eu-central-1": 0.38994, + "ap-southeast-2": 0.411, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.40234, - "us-east-1": 0.33846, - "us-east-2": 0.36631, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-east-1": 0.36631, + "us-east-2": 0.33846, + "us-gov-west-1": 0.40866, + "us-west-1": 0.38488, + "us-west-2": 0.33846 }, "m6in.metal": { "ap-northeast-1": 11.58664, - "ap-southeast-1": 11.06248, - "eu-central-1": 10.68808, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 9.602, + "eu-south-2": 10.06152, "eu-west-1": 10.08904, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 10.52616, "us-west-2": 9.04072 }, "m6in.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 0.78988, - "eu-west-1": 0.81468, + "ap-southeast-1": 0.81328, + "ap-southeast-2": 0.832, + "eu-central-1": 0.0, + "eu-north-1": 0.722, + "eu-south-2": 0.75072, + "eu-west-1": 0.75244, "us-east-1": 0.74261, "us-east-2": 0.68692, "us-gov-west-1": 0.82732, + "us-west-1": 0.0, "us-west-2": 0.68692 }, "m6in.4xlarge": { - "ap-northeast-1": 1.56208, + "ap-northeast-1": 0.0, "ap-southeast-1": 1.49656, + "ap-southeast-2": 1.534, "eu-central-1": 0.0, + "eu-north-1": 1.314, + "eu-south-2": 0.0, "eu-west-1": 1.37488, - "us-east-1": 1.35522, + "us-east-1": 0.0, "us-east-2": 1.24384, "us-gov-west-1": 0.0, + "us-west-1": 1.42952, "us-west-2": 0.0 }, "m6in.8xlarge": { "ap-northeast-1": 2.99416, - "ap-southeast-1": 2.86312, - "eu-central-1": 3.03347, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.938, + "eu-central-1": 2.76952, + "eu-north-1": 0.0, + "eu-south-2": 2.86117, "eu-west-1": 2.61976, - "us-east-1": 2.35768, + "us-east-1": 2.58045, "us-east-2": 0.0, - "us-gov-west-1": 2.91928, + "us-gov-west-1": 3.19821, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6in.12xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 4.08928, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.682, + "eu-south-2": 4.22675, "eu-west-1": 4.2381, - "us-east-1": 3.80567, - "us-east-2": 3.47152, + "us-east-1": 3.47152, + "us-east-2": 0.0, "us-gov-west-1": 4.31392, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 3.80567 }, "m6in.16xlarge": { "ap-northeast-1": 5.85832, "ap-southeast-1": 6.14286, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, + "eu-north-1": 4.866, + "eu-south-2": 0.0, "eu-west-1": 5.60747, "us-east-1": 5.0309, "us-east-2": 4.58536, - "us-gov-west-1": 5.70856, + "us-gov-west-1": 6.26642, + "us-west-1": 5.32808, "us-west-2": 0.0 }, "m6in.24xlarge": { "ap-northeast-1": 9.58173, "ap-southeast-1": 0.0, - "eu-central-1": 8.84042, + "ap-southeast-2": 8.554, + "eu-central-1": 8.04856, + "eu-north-1": 7.234, + "eu-south-2": 7.57864, "eu-west-1": 0.0, "us-east-1": 7.48134, - "us-east-2": 0.0, + "us-east-2": 7.48134, "us-gov-west-1": 0.0, + "us-west-1": 8.70683, "us-west-2": 7.48134 }, "m6in.32xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 11.58664, "ap-southeast-1": 0.0, + "ap-southeast-2": 11.362, "eu-central-1": 10.68808, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 10.08904, "us-east-1": 9.04072, "us-east-2": 9.04072, - "us-gov-west-1": 11.28712, + "us-gov-west-1": 0.0, + "us-west-1": 10.52616, "us-west-2": 9.04072 }, - "m7g.medium": { - "ap-northeast-1": 0.116, - "ap-southeast-2": 0.0, - "eu-central-1": 0.1089, + "m7a.medium": { + "ap-northeast-1": 0.13487, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.13106, + "eu-west-1": 0.13106, + "us-east-1": 0.12376, + "us-east-2": 0.0, + "us-west-2": 0.12376 + }, + "m7a.large": { + "ap-northeast-1": 0.20973, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.20212, + "us-east-1": 0.18751, + "us-east-2": 0.17592, + "us-west-2": 0.17592 + }, + "m7a.xlarge": { + "ap-northeast-1": 0.35946, + "eu-central-1": 0.33772, + "eu-north-1": 0.30632, + "eu-south-2": 0.0, + "eu-west-1": 0.34424, + "us-east-1": 0.0, + "us-east-2": 0.31502, + "us-west-2": 0.29184 + }, + "m7a.metal-48xl": { + "ap-northeast-1": 14.50408, + "eu-central-1": 13.46056, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 12.5332, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "m7a.2xlarge": { + "ap-northeast-1": 0.72892, + "eu-central-1": 0.74098, + "eu-north-1": 0.6719, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "m7a.4xlarge": { + "ap-northeast-1": 1.32784, + "eu-central-1": 1.24088, + "eu-north-1": 0.0, + "eu-south-2": 1.1636, + "eu-west-1": 1.1636, + "us-east-1": 0.0, + "us-east-2": 1.05736, + "us-west-2": 0.0 + }, + "m7a.8xlarge": { + "ap-northeast-1": 2.76525, + "eu-central-1": 2.35176, + "eu-north-1": 2.10056, + "eu-south-2": 0.0, + "eu-west-1": 2.1972, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 2.17019 + }, + "m7a.12xlarge": { + "ap-northeast-1": 3.72352, + "eu-central-1": 0.0, + "eu-north-1": 3.08584, + "eu-south-2": 3.2308, + "eu-west-1": 0.0, + "us-east-1": 3.19029, + "us-east-2": 0.0, + "us-west-2": 2.91208 + }, + "m7a.16xlarge": { + "ap-northeast-1": 5.4005, + "eu-central-1": 4.57352, + "eu-north-1": 4.46523, + "eu-south-2": 4.67784, + "eu-west-1": 4.67784, + "us-east-1": 4.21038, + "us-east-2": 4.21038, + "us-west-2": 3.83944 + }, + "m7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 7.46181, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 6.95176, + "us-east-1": 5.69416, + "us-east-2": 5.69416, + "us-west-2": 0.0 + }, + "m7a.32xlarge": { + "ap-northeast-1": 9.71272, + "eu-central-1": 9.90574, + "eu-north-1": 8.01224, + "eu-south-2": 0.0, + "eu-west-1": 9.22568, + "us-east-1": 8.29077, + "us-east-2": 7.54888, + "us-west-2": 8.29077 + }, + "m7a.48xlarge": { + "ap-northeast-1": 14.50408, + "eu-central-1": 0.0, + "eu-north-1": 11.95336, + "eu-south-2": 12.5332, + "eu-west-1": 12.5332, + "us-east-1": 11.25832, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "m7g.medium": { + "ap-northeast-1": 0.1127, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.1142, + "ap-southeast-2": 0.0, + "ca-central-1": 0.1083, + "eu-central-1": 0.0, + "eu-north-1": 0.1034, + "eu-south-2": 0.0, + "eu-west-1": 0.1083, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "me-south-1": 0.1196, + "sa-east-1": 0.1289, + "us-east-1": 0.1034, "us-east-2": 0.1008, - "us-west-2": 0.1034 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m7g.large": { "ap-northeast-1": 0.1721, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.162, + "ca-central-1": 0.1567, "eu-central-1": 0.1639, + "eu-north-1": 0.1467, + "eu-south-2": 0.1566, "eu-west-1": 0.1567, + "eu-west-2": 0.1603, + "eu-west-3": 0.1612, + "me-south-1": 0.1793, + "sa-east-1": 0.0, "us-east-1": 0.1467, - "us-east-2": 0.1467, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.1467 }, "m7g.xlarge": { - "ap-northeast-1": 0.2708, + "ap-northeast-1": 0.2841, + "ap-northeast-2": 0.2731, + "ap-south-1": 0.1766, + "ap-south-2": 0.184, + "ap-southeast-1": 0.264, "ap-southeast-2": 0.2769, + "ca-central-1": 0.2533, "eu-central-1": 0.2678, + "eu-north-1": 0.2334, + "eu-south-2": 0.0, "eu-west-1": 0.2419, - "us-east-1": 0.2232, + "eu-west-2": 0.2487, + "eu-west-3": 0.0, + "me-south-1": 0.2844, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.2335, + "us-west-1": 0.2624, "us-west-2": 0.0 }, "m7g.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.5028, + "ap-northeast-2": 3.3396, + "ap-south-1": 1.9962, + "ap-south-2": 1.9962, + "ap-southeast-1": 3.394, "ap-southeast-2": 3.394, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 2.9044, + "eu-south-2": 0.0, "eu-west-1": 3.0404, + "eu-west-2": 3.1495, + "eu-west-3": 0.0, + "me-south-1": 3.7204, + "sa-east-1": 4.2916, "us-east-1": 0.0, - "us-east-2": 2.7412, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 2.7412 }, "m7g.2xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.378, + "ap-south-2": 0.378, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.4938, "eu-central-1": 0.5457, - "eu-west-1": 0.5167, - "us-east-1": 0.4564, + "eu-north-1": 0.4986, + "eu-south-2": 0.5165, + "eu-west-1": 0.4938, + "eu-west-2": 0.5074, + "eu-west-3": 0.5347, + "me-south-1": 0.0, + "sa-east-1": 0.6809, + "us-east-1": 0.0, "us-east-2": 0.477, - "us-west-2": 0.4564 + "us-west-1": 0.5347, + "us-west-2": 0.0 }, "m7g.4xlarge": { - "ap-northeast-1": 1.0264, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.9824, + "ap-south-1": 0.0, + "ap-south-2": 0.5966, + "ap-southeast-1": 0.946, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.9614, - "eu-west-1": 0.8576, + "eu-north-1": 0.8673, + "eu-south-2": 0.903, + "eu-west-1": 0.9034, + "eu-west-2": 0.0, + "eu-west-3": 0.9394, + "me-south-1": 1.0841, + "sa-east-1": 1.1704, "us-east-1": 0.8239, - "us-east-2": 0.7828, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-1": 0.8916, + "us-west-2": 0.8239 }, "m7g.8xlarge": { - "ap-northeast-1": 1.9228, + "ap-northeast-1": 1.8164, + "ap-northeast-2": 1.8348, + "ap-south-1": 1.1218, + "ap-south-2": 1.1219, + "ap-southeast-1": 1.8648, "ap-southeast-2": 1.8648, + "ca-central-1": 0.0, "eu-central-1": 1.6942, + "eu-north-1": 1.6046, + "eu-south-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 1.6532, + "me-south-1": 1.9252, + "sa-east-1": 2.2108, "us-east-1": 1.4356, "us-east-2": 1.5179, - "us-west-2": 1.4356 + "us-west-1": 0.0, + "us-west-2": 1.5179 }, "m7g.12xlarge": { - "ap-northeast-1": 2.8192, - "ap-southeast-2": 2.7322, + "ap-northeast-1": 2.6596, + "ap-northeast-2": 2.5372, + "ap-south-1": 1.6177, + "ap-south-2": 1.6179, + "ap-southeast-1": 2.578, + "ap-southeast-2": 0.0, + "ca-central-1": 2.313, "eu-central-1": 0.0, + "eu-north-1": 2.2108, + "eu-south-2": 2.4489, "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 2.5583, + "me-south-1": 0.0, + "sa-east-1": 3.2512, + "us-east-1": 2.0884, "us-east-2": 2.0884, + "us-west-1": 2.4148, "us-west-2": 2.0884 }, "m7g.16xlarge": { "ap-northeast-1": 3.5028, + "ap-northeast-2": 3.3396, + "ap-south-1": 1.9962, + "ap-south-2": 0.0, + "ap-southeast-1": 3.394, "ap-southeast-2": 3.394, + "ca-central-1": 3.0407, "eu-central-1": 0.0, + "eu-north-1": 2.9044, + "eu-south-2": 3.0388, "eu-west-1": 3.0404, + "eu-west-2": 3.1495, + "eu-west-3": 3.1764, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 2.7412, "us-east-2": 2.7412, + "us-west-1": 3.1764, "us-west-2": 2.7412 }, "m7gd.medium": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.129, + "ap-south-1": 0.0955, + "ap-southeast-1": 0.1306, + "ap-southeast-2": 0.0, + "eu-central-1": 0.1281, + "eu-north-1": 0.1201, + "eu-south-2": 0.0, + "eu-west-1": 0.1231, + "eu-west-3": 0.1224, + "sa-east-1": 0.15, "us-east-1": 0.1134, "us-east-2": 0.1166, + "us-west-1": 0.0, "us-west-2": 0.1166 }, "m7gd.large": { + "ap-northeast-1": 0.2062, + "ap-south-1": 0.131, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.2022, + "eu-central-1": 0.1962, + "eu-north-1": 0.0, + "eu-south-2": 0.1862, "eu-west-1": 0.1791, + "eu-west-3": 0.0, + "sa-east-1": 0.2301, "us-east-1": 0.1732, "us-east-2": 0.1732, + "us-west-1": 0.1932, "us-west-2": 0.1732 }, "m7gd.xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.202, + "ap-southeast-1": 0.3265, + "ap-southeast-2": 0.3284, + "eu-central-1": 0.3325, + "eu-north-1": 0.3004, + "eu-south-2": 0.2981, "eu-west-1": 0.3124, + "eu-west-3": 0.3095, + "sa-east-1": 0.0, "us-east-1": 0.2736, "us-east-2": 0.0, - "us-west-2": 0.2736 + "us-west-1": 0.3265, + "us-west-2": 0.0 + }, + "m7gd.metal": { + "ap-northeast-1": 0.0, + "ap-south-1": 2.402, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.4241, + "eu-central-1": 0.0, + "eu-north-1": 3.7588, + "eu-south-2": 3.9402, + "eu-west-1": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 3.5471, + "us-east-2": 3.5471, + "us-west-1": 4.1519, + "us-west-2": 3.5471 }, "m7gd.2xlarge": { + "ap-northeast-1": 0.6819, + "ap-south-1": 0.0, + "ap-southeast-1": 0.663, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.6108, + "eu-south-2": 0.6349, "eu-west-1": 0.6063, + "eu-west-3": 0.629, + "sa-east-1": 0.0, "us-east-1": 0.5571, - "us-east-2": 0.5828, - "us-west-2": 0.5571 + "us-east-2": 0.0, + "us-west-1": 0.6629, + "us-west-2": 0.0 }, "m7gd.4xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.698, + "ap-southeast-1": 1.196, + "ap-southeast-2": 1.2035, + "eu-central-1": 1.2198, + "eu-north-1": 0.0, + "eu-south-2": 1.1397, "eu-west-1": 1.0826, + "eu-west-3": 1.1279, + "sa-east-1": 0.0, "us-east-1": 0.9843, - "us-east-2": 0.9843, - "us-west-2": 1.0355 + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.9843 }, "m7gd.8xlarge": { + "ap-northeast-1": 2.47, + "ap-south-1": 1.266, + "ap-southeast-1": 2.2619, + "ap-southeast-2": 2.4059, + "eu-central-1": 2.1863, + "eu-north-1": 2.0533, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 1.9411, - "us-east-2": 0.0, - "us-west-2": 1.8386 + "eu-west-3": 2.2456, + "sa-east-1": 2.8516, + "us-east-1": 0.0, + "us-east-2": 1.8386, + "us-west-1": 0.0, + "us-west-2": 1.9411 }, "m7gd.12xlarge": { + "ap-northeast-1": 3.4413, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.3506, + "eu-central-1": 3.2145, + "eu-north-1": 2.8516, + "eu-south-2": 2.9877, "eu-west-1": 2.9877, + "eu-west-3": 3.3034, + "sa-east-1": 4.448, "us-east-1": 2.8466, "us-east-2": 2.8466, + "us-west-1": 3.3274, "us-west-2": 2.8466 }, "m7gd.16xlarge": { + "ap-northeast-1": 4.545, + "ap-south-1": 2.402, + "ap-southeast-1": 4.3938, + "ap-southeast-2": 4.4241, + "eu-central-1": 4.2426, + "eu-north-1": 3.7588, + "eu-south-2": 0.0, "eu-west-1": 3.9402, - "us-east-1": 3.5471, - "us-east-2": 0.0, + "eu-west-3": 4.1217, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.5471, + "us-west-1": 4.1519, "us-west-2": 3.5471 }, "m7i.large": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1986, + "ap-southeast-2": 0.0, + "ca-central-1": 0.18359, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.18359, "eu-west-1": 0.18359, + "eu-west-2": 0.17655, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.17088, - "us-east-2": 0.0, + "us-east-2": 0.1608, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.18936, "us-west-2": 0.1608 }, "m7i.xlarge": { + "ap-northeast-1": 0.3204, + "ap-northeast-2": 0.33258, + "ap-south-1": 0.2721, + "ap-southeast-1": 0.312, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.2847, "eu-west-1": 0.30717, + "eu-west-2": 0.2931, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.0 - }, - "m7i.2xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.5332, - "us-east-2": 0.0, - "us-west-2": 0.5332 + "us-gov-east-1": 0.3141, + "us-gov-west-1": 0.3141, + "us-west-1": 0.0, + "us-west-2": 0.2616 + }, + "m7i.metal-24xl": { + "ap-northeast-1": 7.00456, + "ap-northeast-2": 0.0, + "ap-south-1": 5.2204, + "ap-southeast-1": 6.7828, + "ap-southeast-2": 6.7828, + "ca-central-1": 5.5228, + "eu-central-1": 0.0, + "eu-north-1": 5.78488, + "eu-south-2": 0.0, + "eu-west-1": 6.06208, + "eu-west-2": 0.0, + "eu-west-3": 6.33928, + "sa-east-1": 8.61232, + "us-east-1": 4.9684, + "us-east-2": 4.9684, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 6.33928, + "us-west-2": 4.9684 + }, + "m7i.metal-48xl": { + "ap-northeast-1": 12.6292, + "ap-northeast-2": 12.0244, + "ap-south-1": 10.3108, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 10.9156, + "eu-central-1": 11.722, + "eu-north-1": 0.0, + "eu-south-2": 10.9156, + "eu-west-1": 10.9156, + "eu-west-2": 0.0, + "eu-west-3": 11.4196, + "sa-east-1": 0.0, + "us-east-1": 9.8068, + "us-east-2": 9.8068, + "us-gov-east-1": 12.3268, + "us-gov-west-1": 12.3268, + "us-west-1": 11.4196, + "us-west-2": 0.0 + }, + "m7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.6256, + "ap-south-1": 0.5542, + "ap-southeast-1": 0.6844, + "ap-southeast-2": 0.634, + "ca-central-1": 0.5794, + "eu-central-1": 0.613, + "eu-north-1": 0.60124, + "eu-south-2": 0.62434, + "eu-west-1": 0.0, + "eu-west-2": 0.5962, + "eu-west-3": 0.6004, + "sa-east-1": 0.0, + "us-east-1": 0.5332, + "us-east-2": 0.0, + "us-gov-east-1": 0.68902, + "us-gov-west-1": 0.68902, + "us-west-1": 0.6004, + "us-west-2": 0.5332 }, "m7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.1212, + "ap-south-1": 1.06324, + "ap-southeast-1": 1.138, + "ap-southeast-2": 1.2388, + "ca-central-1": 0.0, + "eu-central-1": 1.1926, + "eu-north-1": 0.9868, + "eu-south-2": 1.0288, "eu-west-1": 1.0288, + "eu-west-2": 1.0624, + "eu-west-3": 1.16488, + "sa-east-1": 1.54372, "us-east-1": 0.9364, "us-east-2": 1.01704, - "us-west-2": 1.01704 + "us-gov-east-1": 1.24804, + "us-gov-west-1": 1.24804, + "us-west-1": 0.0, + "us-west-2": 0.9364 }, "m7i.8xlarge": { - "eu-west-1": 0.0, - "us-east-1": 1.90408, + "ap-northeast-1": 2.2132, + "ap-northeast-2": 2.1124, + "ap-south-1": 1.99648, + "ap-southeast-1": 2.3476, + "ap-southeast-2": 2.3476, + "ca-central-1": 1.9276, + "eu-central-1": 2.062, + "eu-north-1": 1.8436, + "eu-south-2": 0.0, + "eu-west-1": 2.10736, + "eu-west-2": 2.18128, + "eu-west-3": 2.19976, + "sa-east-1": 2.95744, + "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 2.36608, + "us-gov-west-1": 2.1628, + "us-west-1": 0.0, "us-west-2": 1.90408 }, "m7i.12xlarge": { + "ap-northeast-1": 3.2548, + "ap-northeast-2": 3.1036, + "ap-south-1": 0.0, + "ap-southeast-1": 3.154, + "ap-southeast-2": 3.4564, + "ca-central-1": 2.8264, + "eu-central-1": 3.3178, + "eu-north-1": 2.95744, + "eu-south-2": 2.8264, "eu-west-1": 3.09604, + "eu-west-2": 2.9272, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 2.5492, "us-east-2": 2.5492, - "us-west-2": 2.5492 + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.1792, + "us-west-1": 2.9524, + "us-west-2": 2.79112 }, "m7i.16xlarge": { + "ap-northeast-1": 4.71304, + "ap-northeast-2": 4.0948, + "ap-south-1": 3.5236, + "ap-southeast-1": 4.162, + "ap-southeast-2": 4.5652, + "ca-central-1": 0.0, + "eu-central-1": 4.3804, + "eu-north-1": 0.0, + "eu-south-2": 3.7252, "eu-west-1": 4.08472, + "eu-west-2": 4.23256, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 3.67816, "us-east-2": 0.0, + "us-gov-east-1": 4.1956, + "us-gov-west-1": 4.1956, + "us-west-1": 4.26952, "us-west-2": 3.67816 }, "m7i.24xlarge": { - "eu-west-1": 5.5228, + "ap-northeast-1": 0.0, + "ap-northeast-2": 6.0772, + "ap-south-1": 0.0, + "ap-southeast-1": 6.7828, + "ap-southeast-2": 6.178, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 5.2708, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 5.7244, + "eu-west-3": 5.7748, + "sa-east-1": 7.8412, "us-east-1": 0.0, "us-east-2": 5.45224, - "us-west-2": 5.45224 + "us-gov-east-1": 6.83824, + "us-gov-west-1": 6.2284, + "us-west-1": 5.7748, + "us-west-2": 4.9684 }, "m7i.48xlarge": { + "ap-northeast-1": 12.6292, + "ap-northeast-2": 0.0, + "ap-south-1": 10.3108, + "ap-southeast-1": 12.226, + "ap-southeast-2": 12.226, + "ca-central-1": 0.0, + "eu-central-1": 11.722, + "eu-north-1": 0.0, + "eu-south-2": 10.9156, "eu-west-1": 0.0, + "eu-west-2": 11.3188, + "eu-west-3": 11.4196, + "sa-east-1": 0.0, "us-east-1": 9.8068, "us-east-2": 9.8068, - "us-west-2": 0.0 + "us-gov-east-1": 12.3268, + "us-gov-west-1": 12.3268, + "us-west-1": 11.4196, + "us-west-2": 9.8068 }, "m7i-flex.large": { + "ap-northeast-1": 0.18369, + "ap-northeast-2": 0.17771, + "ap-south-1": 0.16075, + "ap-southeast-1": 0.1797, + "ap-southeast-2": 0.1797, + "ca-central-1": 0.16673, + "eu-central-1": 0.17471, + "eu-north-1": 0.16175, + "eu-south-2": 0.16673, "eu-west-1": 0.16673, + "eu-west-2": 0.17072, + "eu-west-3": 0.17172, + "sa-east-1": 0.21262, "us-east-1": 0.15576, "us-east-2": 0.15576, + "us-gov-east-1": 0.1807, + "us-gov-west-1": 0.1807, + "us-west-1": 0.17172, "us-west-2": 0.15576 }, "m7i-flex.xlarge": { + "ap-northeast-1": 0.30738, + "ap-northeast-2": 0.29542, + "ap-south-1": 0.2615, + "ap-southeast-1": 0.2994, + "ap-southeast-2": 0.2994, + "ca-central-1": 0.27346, + "eu-central-1": 0.28942, + "eu-north-1": 0.2635, + "eu-south-2": 0.27346, "eu-west-1": 0.27346, + "eu-west-2": 0.28144, + "eu-west-3": 0.28344, + "sa-east-1": 0.36524, "us-east-1": 0.25152, "us-east-2": 0.25152, + "us-gov-east-1": 0.3014, + "us-gov-west-1": 0.3014, + "us-west-1": 0.28344, "us-west-2": 0.25152 }, "m7i-flex.2xlarge": { + "ap-northeast-1": 0.62476, + "ap-northeast-2": 0.60084, + "ap-south-1": 0.533, + "ap-southeast-1": 0.6088, + "ap-southeast-2": 0.6088, + "ca-central-1": 0.55692, + "eu-central-1": 0.58884, + "eu-north-1": 0.537, + "eu-south-2": 0.55692, "eu-west-1": 0.55692, + "eu-west-2": 0.57288, + "eu-west-3": 0.57688, + "sa-east-1": 0.74048, "us-east-1": 0.51304, "us-east-2": 0.51304, + "us-gov-east-1": 0.6128, + "us-gov-west-1": 0.6128, + "us-west-1": 0.57688, "us-west-2": 0.51304 }, "m7i-flex.4xlarge": { + "ap-northeast-1": 1.11952, + "ap-northeast-2": 1.07168, + "ap-south-1": 0.936, + "ap-southeast-1": 1.0876, + "ap-southeast-2": 1.0876, + "ca-central-1": 0.98384, + "eu-central-1": 1.04768, + "eu-north-1": 0.944, + "eu-south-2": 0.98384, "eu-west-1": 0.98384, + "eu-west-2": 1.01576, + "eu-west-3": 1.02376, + "sa-east-1": 1.35096, "us-east-1": 0.89608, "us-east-2": 0.89608, + "us-gov-east-1": 1.0956, + "us-gov-west-1": 1.0956, + "us-west-1": 1.02376, "us-west-2": 0.89608 }, "m7i-flex.8xlarge": { + "ap-northeast-1": 2.10904, + "ap-northeast-2": 2.01336, + "ap-south-1": 1.742, + "ap-southeast-1": 2.0452, + "ap-southeast-2": 2.0452, + "ca-central-1": 1.83768, + "eu-central-1": 1.96536, + "eu-north-1": 1.758, + "eu-south-2": 1.83768, "eu-west-1": 1.83768, + "eu-west-2": 1.90152, + "eu-west-3": 1.91752, + "sa-east-1": 2.57192, "us-east-1": 1.66216, "us-east-2": 1.66216, + "us-gov-east-1": 2.0612, + "us-gov-west-1": 2.0612, + "us-west-1": 1.91752, "us-west-2": 1.66216 }, "p2.xlarge": { @@ -56234,9 +61321,9 @@ "ap-southeast-2": 1.756, "eu-central-1": 1.386, "eu-west-1": 1.032, - "us-east-1": 1.05, + "us-east-1": 0.96, "us-east-2": 0.0, - "us-gov-west-1": 1.248, + "us-gov-west-1": 1.14, "us-west-2": 0.0 }, "p2.8xlarge": { @@ -56246,7 +61333,7 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 12.466, "eu-central-1": 10.738, - "eu-west-1": 0.0, + "eu-west-1": 7.906, "us-east-1": 8.05, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -56260,55 +61347,55 @@ "ap-southeast-2": 24.802, "eu-central-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 14.53, "us-east-2": 0.0, "us-gov-west-1": 17.41, "us-west-2": 14.53 }, "p3.2xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 4.646, - "ap-southeast-1": 4.646, + "ap-northeast-1": 4.324, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 3.715, "eu-central-1": 0.0, - "eu-west-1": 3.65, + "eu-west-1": 3.435, "eu-west-2": 3.719, - "us-east-1": 3.389, + "us-east-1": 3.19, "us-east-2": 3.389, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.802, "us-west-2": 3.389 }, "p3.8xlarge": { - "ap-northeast-1": 18.025, + "ap-northeast-1": 16.906, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 17.066, + "ap-southeast-1": 18.196, + "ap-southeast-2": 18.196, "ca-central-1": 0.0, - "eu-central-1": 16.416, + "eu-central-1": 0.0, "eu-west-1": 13.35, "eu-west-2": 0.0, "us-east-1": 12.37, "us-east-2": 13.166, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 12.37 }, "p3.16xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-southeast-1": 34.002, + "ap-northeast-2": 34.002, + "ap-southeast-1": 0.0, "ap-southeast-2": 34.002, - "ca-central-1": 0.0, + "ca-central-1": 27.058, "eu-central-1": 30.714, "eu-west-1": 26.57, "eu-west-2": 28.842, - "us-east-1": 24.61, - "us-east-2": 24.61, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "p3dn.24xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 42.913, "eu-west-1": 0.0, "us-east-1": 0.0, "us-gov-east-1": 37.584, @@ -56317,50 +61404,59 @@ }, "p4d.24xlarge": { "ap-northeast-1": 49.544365, - "ap-northeast-2": 0.0, - "eu-central-1": 45.169225, + "ap-northeast-2": 45.51848, + "ap-southeast-1": 43.38981, + "ca-central-1": 0.0, + "eu-central-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, + "sa-east-1": 58.507, + "us-east-1": 0.13, "us-east-2": 0.0, "us-gov-west-1": 39.46, - "us-west-2": 32.9026 + "us-west-2": 0.13 }, "p4de.24xlarge": { + "ap-southeast-1": 54.2049, "il-central-1": 0.0, "us-east-1": 41.09575, - "us-west-2": 41.09575 + "us-west-2": 0.0 }, "p5.48xlarge": { - "us-east-1": 98.45, - "us-west-2": 98.45 + "ap-southeast-2": 127.946, + "ca-central-1": 113.198, + "eu-north-1": 105.3324, + "sa-east-1": 165.3076, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-west-2": 0.13 }, "r3.large": { "ap-northeast-1": 0.279, "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.26, - "eu-central-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.285, "eu-west-1": 0.264, "sa-east-1": 0.0, "us-east-1": 0.243, "us-east-2": 0.226, - "us-gov-west-1": 0.26, - "us-west-1": 0.264, - "us-west-2": 0.243 + "us-gov-west-1": 0.0, + "us-west-1": 0.245, + "us-west-2": 0.0 }, "r3.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.499, "ap-northeast-2": 0.459, "ap-south-1": 0.439, "ap-southeast-1": 0.459, - "ap-southeast-2": 0.459, + "ap-southeast-2": 0.499, "eu-central-1": 0.46, "eu-west-1": 0.468, "sa-east-1": 0.83, "us-east-1": 0.426, "us-east-2": 0.426, - "us-gov-west-1": 0.505, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.426 }, @@ -56369,41 +61465,41 @@ "ap-northeast-2": 0.928, "ap-south-1": 0.0, "ap-southeast-1": 1.008, - "ap-southeast-2": 0.0, - "eu-central-1": 1.023, - "eu-west-1": 0.0, - "sa-east-1": 1.529, + "ap-southeast-2": 0.928, + "eu-central-1": 0.93, + "eu-west-1": 0.945, + "sa-east-1": 0.0, "us-east-1": 0.795, "us-east-2": 0.0, - "us-gov-west-1": 1.021, + "us-gov-west-1": 0.928, "us-west-1": 0.945, "us-west-2": 0.795 }, "r3.4xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.886, - "ap-south-1": 0.0, + "ap-northeast-1": 1.886, + "ap-northeast-2": 1.726, + "ap-south-1": 1.811, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 1.73, - "eu-west-1": 0.0, - "sa-east-1": 3.222, - "us-east-1": 1.46, + "eu-west-1": 1.612, + "sa-east-1": 2.929, + "us-east-1": 1.593, "us-east-2": 1.593, - "us-gov-west-1": 1.726, + "us-gov-west-1": 1.899, "us-west-1": 1.76, "us-west-2": 1.46 }, "r3.8xlarge": { "ap-northeast-1": 3.322, - "ap-northeast-2": 3.322, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 3.322, "ap-southeast-2": 3.322, "eu-central-1": 0.0, "eu-west-1": 3.094, "sa-east-1": 5.727, - "us-east-1": 0.0, + "us-east-1": 2.79, "us-east-2": 0.0, "us-gov-west-1": 3.322, "us-west-1": 3.094, @@ -56420,379 +61516,387 @@ "eu-central-1": 0.236, "eu-west-1": 0.223, "eu-west-2": 0.232, - "eu-west-3": 0.0, + "eu-west-3": 0.2316, "sa-east-1": 0.0, "us-east-1": 0.193, "us-east-2": 0.206, - "us-gov-west-1": 0.236, + "us-gov-west-1": 0.2196, "us-west-1": 0.0, "us-west-2": 0.0 }, "r4.xlarge": { - "ap-northeast-1": 0.38, + "ap-northeast-1": 0.412, "ap-northeast-2": 0.412, "ap-northeast-3": 0.412, "ap-south-1": 0.334, "ap-southeast-1": 0.38, "ap-southeast-2": 0.4492, - "ca-central-1": 0.0, - "eu-central-1": 0.482, - "eu-west-1": 0.4264, + "ca-central-1": 0.352, + "eu-central-1": 0.4501, + "eu-west-1": 0.0, "eu-west-2": 0.403, "eu-west-3": 0.0, "sa-east-1": 0.676, "us-east-1": 0.396, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.4492, "us-west-1": 0.456, "us-west-2": 0.0 }, "r4.2xlarge": { - "ap-northeast-1": 0.834, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.834, "ap-northeast-3": 0.834, "ap-south-1": 0.678, "ap-southeast-1": 0.77, "ap-southeast-2": 0.832, - "ca-central-1": 0.0, + "ca-central-1": 0.772, "eu-central-1": 0.834, - "eu-west-1": 0.782, + "eu-west-1": 0.7228, "eu-west-2": 0.816, - "eu-west-3": 0.0, - "sa-east-1": 1.25, + "eu-west-3": 0.754, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.662, "us-gov-west-1": 0.7684, "us-west-1": 0.0, "us-west-2": 0.662 }, "r4.4xlarge": { "ap-northeast-1": 1.538, - "ap-northeast-2": 1.41, + "ap-northeast-2": 1.538, "ap-northeast-3": 1.538, - "ap-south-1": 1.226, + "ap-south-1": 0.0, "ap-southeast-1": 1.538, - "ap-southeast-2": 1.534, + "ap-southeast-2": 0.0, "ca-central-1": 1.298, - "eu-central-1": 1.538, + "eu-central-1": 0.0, "eu-west-1": 1.3156, - "eu-west-2": 0.0, + "eu-west-2": 1.378, "eu-west-3": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 2.594, "us-east-1": 0.0, "us-east-2": 1.194, "us-gov-west-1": 1.534, - "us-west-1": 0.0, + "us-west-1": 1.434, "us-west-2": 1.3 }, "r4.8xlarge": { "ap-northeast-1": 2.946, "ap-northeast-2": 2.946, "ap-northeast-3": 2.69, - "ap-south-1": 0.0, + "ap-south-1": 2.322, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 2.7, - "eu-central-1": 2.6908, + "eu-central-1": 2.947, "eu-west-1": 2.5012, "eu-west-2": 2.626, - "eu-west-3": 0.0, + "eu-west-3": 2.8756, "sa-east-1": 0.0, - "us-east-1": 2.471, + "us-east-1": 2.258, "us-east-2": 2.471, "us-gov-west-1": 2.939, "us-west-1": 0.0, "us-west-2": 2.471 }, "r4.16xlarge": { - "ap-northeast-1": 5.25, + "ap-northeast-1": 0.0, "ap-northeast-2": 5.25, "ap-northeast-3": 0.0, "ap-south-1": 4.514, "ap-southeast-1": 5.25, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.237, "ca-central-1": 4.802, "eu-central-1": 0.0, "eu-west-1": 4.872, - "eu-west-2": 5.122, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 5.122, "sa-east-1": 0.0, "us-east-1": 4.386, "us-east-2": 4.386, "us-gov-west-1": 5.237, - "us-west-1": 4.872, + "us-west-1": 0.0, "us-west-2": 4.386 }, "r5.large": { "af-south-1": 0.238, - "ap-east-1": 0.227, + "ap-east-1": 0.237, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.221, - "ap-south-1": 0.19, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-northeast-2": 0.212, + "ap-northeast-3": 0.212, + "ap-south-1": 0.0, + "ap-south-2": 0.198, + "ap-southeast-1": 0.221, + "ap-southeast-2": 0.211, "ap-southeast-3": 0.221, "ap-southeast-4": 0.22, "ca-central-1": 0.0, - "eu-central-1": 0.212, + "ca-west-1": 0.206, + "eu-central-1": 0.0, "eu-central-2": 0.237, - "eu-north-1": 0.194, - "eu-south-1": 0.0, - "eu-south-2": 0.201, - "eu-west-1": 0.201, + "eu-north-1": 0.0, + "eu-south-1": 0.217, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.208, - "eu-west-3": 0.217, + "eu-west-3": 0.0, "il-central-1": 0.217, "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "me-south-1": 0.224, + "sa-east-1": 0.261, + "us-east-1": 0.194, "us-east-2": 0.194, - "us-gov-east-1": 0.22, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.2, - "us-west-2": 0.186, + "us-west-1": 0.0, + "us-west-2": 0.0, "us-west-2-lax-1": 0.211 }, "r5.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 0.382, + "ap-east-1": 0.414, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.364, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.32, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.362, - "ap-southeast-3": 0.364, + "ap-southeast-1": 0.364, + "ap-southeast-2": 0.38, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.353, + "ca-west-1": 0.336, "eu-central-1": 0.382, - "eu-central-2": 0.414, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.374, "eu-south-2": 0.342, "eu-west-1": 0.359, - "eu-west-2": 0.374, - "eu-west-3": 0.356, - "il-central-1": 0.356, + "eu-west-2": 0.0, + "eu-west-3": 0.374, + "il-central-1": 0.374, "me-central-1": 0.389, - "me-south-1": 0.389, - "sa-east-1": 0.486, + "me-south-1": 0.37, + "sa-east-1": 0.0, "us-east-1": 0.327, "us-east-2": 0.312, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.362, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.34, "us-west-2": 0.312, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.362 }, "r5.metal": { "af-south-1": 0.0, "ap-east-1": 8.146, "ap-northeast-1": 7.426, - "ap-northeast-2": 0.0, + "ap-northeast-2": 7.426, "ap-northeast-3": 0.0, "ap-south-1": 6.37, - "ap-south-2": 6.37, + "ap-south-2": 0.0, "ap-southeast-1": 7.426, "ap-southeast-2": 0.0, "ap-southeast-3": 7.426, "ap-southeast-4": 7.378, "ca-central-1": 6.754, + "ca-west-1": 6.754, "eu-central-1": 7.426, "eu-central-2": 8.156, - "eu-north-1": 6.562, + "eu-north-1": 0.0, "eu-south-1": 7.234, "eu-south-2": 6.898, "eu-west-1": 0.0, - "eu-west-2": 7.234, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 7.236, "me-central-1": 0.0, "me-south-1": 7.575, - "sa-east-1": 9.778, - "us-east-1": 6.178, - "us-east-2": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 6.178, "us-gov-east-1": 7.378, "us-gov-west-1": 7.378, "us-west-1": 0.0, "us-west-2": 6.178, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 7.388 }, "r5.2xlarge": { - "af-south-1": 0.802, + "af-south-1": 0.0, "ap-east-1": 0.798, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.738, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.774, + "ap-northeast-3": 0.738, "ap-south-1": 0.65, - "ap-south-2": 0.0, + "ap-south-2": 0.681, "ap-southeast-1": 0.774, - "ap-southeast-2": 0.734, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.77, + "ap-southeast-3": 0.738, "ap-southeast-4": 0.77, - "ca-central-1": 0.0, + "ca-central-1": 0.715, + "ca-west-1": 0.682, "eu-central-1": 0.738, - "eu-central-2": 0.0, + "eu-central-2": 0.799, "eu-north-1": 0.0, - "eu-south-1": 0.722, - "eu-south-2": 0.694, + "eu-south-1": 0.758, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.722, "eu-west-3": 0.758, - "il-central-1": 0.722, + "il-central-1": 0.758, "me-central-1": 0.0, - "me-south-1": 0.75, - "sa-east-1": 0.934, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.634, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.734, "us-west-1": 0.69, "us-west-2": 0.664, "us-west-2-lax-1": 0.735 }, "r5.4xlarge": { "af-south-1": 1.474, - "ap-east-1": 1.546, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 1.419, - "ap-northeast-3": 1.419, + "ap-northeast-3": 0.0, "ap-south-1": 1.17, "ap-south-2": 1.17, "ap-southeast-1": 1.419, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.338, "ap-southeast-3": 1.419, "ap-southeast-4": 1.41, "ca-central-1": 1.234, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 1.548, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 1.314, - "eu-south-2": 1.326, + "eu-south-1": 1.385, + "eu-south-2": 1.258, "eu-west-1": 1.326, - "eu-west-2": 0.0, + "eu-west-2": 1.314, "eu-west-3": 1.314, - "il-central-1": 1.385, + "il-central-1": 0.0, "me-central-1": 1.371, "me-south-1": 1.445, "sa-east-1": 1.738, - "us-east-1": 1.198, - "us-east-2": 1.198, + "us-east-1": 1.138, + "us-east-2": 1.138, "us-gov-east-1": 1.338, - "us-gov-west-1": 1.338, + "us-gov-west-1": 1.41, "us-west-1": 1.25, "us-west-2": 0.0, - "us-west-2-lax-1": 1.34 + "us-west-2-lax-1": 1.412 }, "r5.8xlarge": { "af-south-1": 0.0, "ap-east-1": 2.962, "ap-northeast-1": 2.562, - "ap-northeast-2": 2.562, + "ap-northeast-2": 2.708, "ap-northeast-3": 2.708, "ap-south-1": 0.0, "ap-south-2": 2.334, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.691, + "ap-southeast-1": 2.708, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.708, "ap-southeast-4": 2.691, "ca-central-1": 2.47, + "ca-west-1": 2.338, "eu-central-1": 0.0, - "eu-central-2": 2.966, + "eu-central-2": 0.0, "eu-north-1": 2.274, "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-south-2": 2.386, + "eu-west-1": 2.386, "eu-west-2": 2.64, "eu-west-3": 2.498, "il-central-1": 2.499, "me-central-1": 2.76, - "me-south-1": 0.0, + "me-south-1": 2.612, "sa-east-1": 3.346, - "us-east-1": 0.0, + "us-east-1": 2.146, "us-east-2": 0.0, "us-gov-east-1": 2.546, "us-gov-west-1": 2.546, "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 2.549 + "us-west-2-lax-1": 2.695 }, "r5.12xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 3.997, - "ap-northeast-2": 3.997, - "ap-northeast-3": 3.778, - "ap-south-1": 0.0, + "af-south-1": 4.162, + "ap-east-1": 4.138, + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.778, + "ap-northeast-3": 3.997, + "ap-south-1": 3.436, "ap-south-2": 3.25, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.997, "ap-southeast-2": 3.754, - "ap-southeast-3": 3.778, + "ap-southeast-3": 3.997, "ap-southeast-4": 3.971, - "ca-central-1": 0.0, - "eu-central-1": 3.778, + "ca-central-1": 3.442, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 4.143, - "eu-north-1": 0.0, + "eu-north-1": 3.346, "eu-south-1": 0.0, - "eu-south-2": 3.717, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 3.896, + "eu-west-3": 3.682, + "il-central-1": 0.0, "me-central-1": 4.076, "me-south-1": 3.852, "sa-east-1": 4.954, "us-east-1": 0.0, - "us-east-2": 3.335, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 3.754, - "us-west-1": 3.692, - "us-west-2": 3.335, + "us-west-1": 0.0, + "us-west-2": 3.154, "us-west-2-lax-1": 3.759 }, "r5.16xlarge": { "af-south-1": 5.506, - "ap-east-1": 5.795, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 4.994, - "ap-northeast-3": 4.994, + "ap-northeast-2": 0.0, + "ap-northeast-3": 5.286, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 4.994, + "ap-south-2": 4.538, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 5.286, - "ap-southeast-4": 0.0, + "ap-southeast-4": 5.252, "ca-central-1": 4.811, + "ca-west-1": 4.546, "eu-central-1": 5.286, "eu-central-2": 0.0, "eu-north-1": 4.418, "eu-south-1": 0.0, - "eu-south-2": 4.642, + "eu-south-2": 4.913, "eu-west-1": 4.642, - "eu-west-2": 0.0, + "eu-west-2": 5.15, "eu-west-3": 5.15, "il-central-1": 4.868, - "me-central-1": 5.391, + "me-central-1": 5.093, "me-south-1": 0.0, "sa-east-1": 6.562, - "us-east-1": 4.404, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 5.252, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 4.61, "us-west-2": 4.162, "us-west-2-lax-1": 0.0 }, "r5.24xlarge": { - "af-south-1": 8.194, + "af-south-1": 0.0, "ap-east-1": 8.146, "ap-northeast-1": 7.426, "ap-northeast-2": 7.426, - "ap-northeast-3": 0.0, + "ap-northeast-3": 7.426, "ap-south-1": 6.37, "ap-south-2": 6.37, "ap-southeast-1": 7.426, @@ -56800,24 +61904,25 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 6.754, + "ca-west-1": 6.754, "eu-central-1": 7.426, - "eu-central-2": 0.0, + "eu-central-2": 8.156, "eu-north-1": 6.562, "eu-south-1": 7.234, "eu-south-2": 6.898, - "eu-west-1": 6.898, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 7.234, "il-central-1": 7.236, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 7.575, "sa-east-1": 9.778, "us-east-1": 6.178, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 7.378, "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-2": 6.178, "us-west-2-lax-1": 7.388 }, "r5a.large": { @@ -57126,19 +62231,19 @@ }, "r5b.large": { "ap-northeast-1": 0.241, - "ap-northeast-2": 0.238, - "ap-southeast-1": 0.2558, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.2591, "ca-central-1": 0.2393, "eu-central-1": 0.2558, "eu-north-1": 0.233734, - "eu-south-1": 0.2525, - "eu-west-1": 0.2437, + "eu-south-1": 0.235, + "eu-west-1": 0.0, "eu-west-2": 0.2525, - "sa-east-1": 0.297, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.209, - "us-west-2": 0.2239 + "us-west-2": 0.209 }, "r5b.xlarge": { "ap-northeast-1": 0.4582, @@ -57146,10 +62251,10 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 0.422, "ca-central-1": 0.386, - "eu-central-1": 0.0, + "eu-central-1": 0.416, "eu-north-1": 0.37588, - "eu-south-1": 0.445, - "eu-west-1": 0.4274, + "eu-south-1": 0.41, + "eu-west-1": 0.0, "eu-west-2": 0.445, "sa-east-1": 0.0, "us-east-1": 0.358, @@ -57166,132 +62271,132 @@ "eu-north-1": 7.71112, "eu-south-1": 0.0, "eu-west-1": 8.9476, - "eu-west-2": 0.0, - "sa-east-1": 0.0, - "us-east-1": 7.9972, + "eu-west-2": 9.37, + "sa-east-1": 12.6436, + "us-east-1": 7.282, "us-east-2": 0.0, "us-west-2": 7.282 }, "r5b.2xlarge": { - "ap-northeast-1": 0.9264, + "ap-northeast-1": 0.854, "ap-northeast-2": 0.9132, "ap-southeast-1": 0.842, "ap-southeast-2": 0.854, - "ca-central-1": 0.782, + "ca-central-1": 0.0, "eu-central-1": 0.9132, "eu-north-1": 0.76176, "eu-south-1": 0.9, - "eu-west-1": 0.798, - "eu-west-2": 0.83, + "eu-west-1": 0.0, + "eu-west-2": 0.9, "sa-east-1": 1.078, "us-east-1": 0.0, "us-east-2": 0.7856, - "us-west-2": 0.0 + "us-west-2": 0.7856 }, "r5b.4xlarge": { - "ap-northeast-1": 1.7228, - "ap-northeast-2": 1.6964, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-southeast-1": 1.554, "ap-southeast-2": 1.7228, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 1.554, "eu-north-1": 1.519872, - "eu-south-1": 1.53, + "eu-south-1": 0.0, "eu-west-1": 1.466, "eu-west-2": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 2.2156, "us-east-1": 0.0, "us-east-2": 1.4412, "us-west-2": 1.4412 }, "r5b.8xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 3.2628, - "ap-southeast-1": 3.2628, + "ap-northeast-2": 2.978, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.3156, "ca-central-1": 2.738, "eu-central-1": 2.978, - "eu-north-1": 0.0, + "eu-north-1": 2.909744, "eu-south-1": 2.93, - "eu-west-1": 3.0692, - "eu-west-2": 2.93, + "eu-west-1": 0.0, + "eu-west-2": 3.21, "sa-east-1": 3.922, "us-east-1": 0.0, - "us-east-2": 2.514, + "us-east-2": 0.0, "us-west-2": 2.514 }, "r5b.12xlarge": { - "ap-northeast-1": 4.9084, + "ap-northeast-1": 4.474, "ap-northeast-2": 4.8292, "ap-southeast-1": 4.402, "ap-southeast-2": 4.9084, - "ca-central-1": 4.4332, - "eu-central-1": 4.8292, + "ca-central-1": 0.0, + "eu-central-1": 4.402, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 4.33, "eu-west-1": 0.0, "eu-west-2": 4.33, "sa-east-1": 6.3868, "us-east-1": 4.0636, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 3.706, + "us-west-2": 4.0636 }, "r5b.16xlarge": { "ap-northeast-1": 5.922, "ap-northeast-2": 5.826, "ap-southeast-1": 0.0, - "ap-southeast-2": 5.922, - "ca-central-1": 5.346, - "eu-central-1": 5.826, - "eu-north-1": 0.0, + "ap-southeast-2": 6.5012, + "ca-central-1": 5.8676, + "eu-central-1": 0.0, + "eu-north-1": 5.689488, "eu-south-1": 0.0, "eu-west-1": 5.474, - "eu-west-2": 0.0, + "eu-west-2": 5.73, "sa-east-1": 0.0, "us-east-1": 4.898, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 5.3748, + "us-west-2": 5.3748 }, "r5b.24xlarge": { - "ap-northeast-1": 9.6868, - "ap-northeast-2": 0.0, - "ap-southeast-1": 9.5284, - "ap-southeast-2": 0.0, - "ca-central-1": 8.7364, - "eu-central-1": 9.5284, - "eu-north-1": 8.469232, + "ap-northeast-1": 0.0, + "ap-northeast-2": 9.5284, + "ap-southeast-1": 0.0, + "ap-southeast-2": 9.6868, + "ca-central-1": 7.954, + "eu-central-1": 0.0, + "eu-north-1": 7.71112, "eu-south-1": 9.37, "eu-west-1": 8.9476, - "eu-west-2": 9.37, - "sa-east-1": 0.0, + "eu-west-2": 0.0, + "sa-east-1": 12.6436, "us-east-1": 0.0, "us-east-2": 7.9972, "us-west-2": 0.0 }, "r5d.large": { - "af-south-1": 0.25, - "ap-east-1": 0.235, + "af-south-1": 0.261, + "ap-east-1": 0.246, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.211, "ap-south-2": 0.211, - "ap-southeast-1": 0.244, + "ap-southeast-1": 0.234, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.234, "ap-southeast-4": 0.234, - "ca-central-1": 0.218, + "ca-central-1": 0.0, "eu-central-1": 0.233, - "eu-central-2": 0.25, - "eu-north-1": 0.221, + "eu-central-2": 0.0, + "eu-north-1": 0.212, "eu-south-1": 0.228, "eu-south-2": 0.23, "eu-west-1": 0.22, "eu-west-2": 0.239, - "eu-west-3": 0.0, - "il-central-1": 0.238, - "me-central-1": 0.0, - "me-south-1": 0.236, + "eu-west-3": 0.239, + "il-central-1": 0.228, + "me-central-1": 0.247, + "me-south-1": 0.247, "sa-east-1": 0.288, "us-east-1": 0.0, "us-east-2": 0.204, @@ -57299,38 +62404,38 @@ "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.213, - "us-west-2-lax-1": 0.233 + "us-west-2-lax-1": 0.243 }, "r5d.xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.44, "ap-east-1": 0.41, "ap-northeast-1": 0.0, "ap-northeast-2": 0.427, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.362, + "ap-south-2": 0.38, "ap-southeast-1": 0.408, "ap-southeast-2": 0.429, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.429, - "ca-central-1": 0.395, - "eu-central-1": 0.427, + "ap-southeast-4": 0.408, + "ca-central-1": 0.376, + "eu-central-1": 0.0, "eu-central-2": 0.463, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-north-1": 0.382, + "eu-south-1": 0.416, + "eu-south-2": 0.399, "eu-west-1": 0.399, - "eu-west-2": 0.398, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.416, "me-central-1": 0.0, "me-south-1": 0.412, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.348, "us-east-2": 0.348, "us-gov-east-1": 0.427, "us-gov-west-1": 0.427, - "us-west-1": 0.404, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.406 }, @@ -57345,7 +62450,7 @@ "ap-southeast-1": 8.482, "ap-southeast-2": 8.482, "ap-southeast-3": 0.0, - "ap-southeast-4": 8.482, + "ap-southeast-4": 0.0, "ca-central-1": 7.714, "eu-central-1": 8.434, "eu-central-2": 9.264, @@ -57359,8 +62464,8 @@ "me-central-1": 8.578, "me-south-1": 8.578, "sa-east-1": 11.074, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 7.042, + "us-east-2": 7.042, "us-gov-east-1": 8.434, "us-gov-west-1": 8.434, "us-west-1": 7.906, @@ -57369,16 +62474,16 @@ }, "r5d.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.872, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.863, "ap-northeast-3": 0.826, - "ap-south-1": 0.0, - "ap-south-2": 0.734, + "ap-south-1": 0.734, + "ap-south-2": 0.0, "ap-southeast-1": 0.826, "ap-southeast-2": 0.826, - "ap-southeast-3": 0.868, - "ap-southeast-4": 0.0, + "ap-southeast-3": 0.826, + "ap-southeast-4": 0.868, "ca-central-1": 0.8, "eu-central-1": 0.864, "eu-central-2": 0.937, @@ -57386,51 +62491,51 @@ "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.77, - "eu-west-2": 0.0, - "eu-west-3": 0.847, + "eu-west-2": 0.806, + "eu-west-3": 0.0, "il-central-1": 0.802, "me-central-1": 0.834, - "me-south-1": 0.834, + "me-south-1": 0.0, "sa-east-1": 1.097, "us-east-1": 0.706, "us-east-2": 0.741, - "us-gov-east-1": 0.822, - "us-gov-west-1": 0.864, - "us-west-1": 0.778, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.822, + "us-west-1": 0.817, "us-west-2": 0.0, - "us-west-2-lax-1": 0.863 + "us-west-2-lax-1": 0.821 }, "r5d.4xlarge": { "af-south-1": 1.741, - "ap-east-1": 0.0, + "ap-east-1": 1.614, "ap-northeast-1": 1.522, "ap-northeast-2": 1.597, "ap-northeast-3": 1.522, - "ap-south-1": 1.41, - "ap-south-2": 1.41, - "ap-southeast-1": 1.606, + "ap-south-1": 0.0, + "ap-south-2": 1.338, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.606, "ap-southeast-3": 1.522, "ap-southeast-4": 1.522, "ca-central-1": 1.394, "eu-central-1": 1.514, - "eu-central-2": 0.0, + "eu-central-2": 1.652, "eu-north-1": 0.0, "eu-south-1": 1.474, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 1.482, + "eu-west-2": 0.0, "eu-west-3": 1.563, - "il-central-1": 1.474, - "me-central-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 1.538, "me-south-1": 1.538, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.514, - "us-gov-west-1": 1.514, - "us-west-1": 0.0, - "us-west-2": 1.282, + "us-gov-west-1": 0.0, + "us-west-1": 1.505, + "us-west-2": 1.351, "us-west-2-lax-1": 0.0 }, "r5d.8xlarge": { @@ -57438,9 +62543,9 @@ "ap-east-1": 3.098, "ap-northeast-1": 2.914, "ap-northeast-2": 2.898, - "ap-northeast-3": 2.914, + "ap-northeast-3": 3.081, "ap-south-1": 2.546, - "ap-south-2": 2.546, + "ap-south-2": 2.691, "ap-southeast-1": 2.914, "ap-southeast-2": 3.082, "ap-southeast-3": 0.0, @@ -57449,10 +62554,10 @@ "eu-central-1": 2.898, "eu-central-2": 0.0, "eu-north-1": 2.562, - "eu-south-1": 2.818, + "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 2.845, - "eu-west-2": 2.834, + "eu-west-1": 0.0, + "eu-west-2": 2.998, "eu-west-3": 2.834, "il-central-1": 0.0, "me-central-1": 2.946, @@ -57469,38 +62574,38 @@ "r5d.12xlarge": { "af-south-1": 4.964, "ap-east-1": 4.582, - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.306, "ap-northeast-2": 4.282, - "ap-northeast-3": 4.306, - "ap-south-1": 3.754, + "ap-northeast-3": 4.557, + "ap-south-1": 3.971, "ap-south-2": 3.971, - "ap-southeast-1": 4.306, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 4.557, "ca-central-1": 4.151, - "eu-central-1": 4.534, - "eu-central-2": 4.971, - "eu-north-1": 3.999, + "eu-central-1": 0.0, + "eu-central-2": 4.697, + "eu-north-1": 0.0, "eu-south-1": 4.162, - "eu-south-2": 3.97, - "eu-west-1": 3.97, - "eu-west-2": 4.186, - "eu-west-3": 0.0, + "eu-south-2": 4.2, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 4.186, "il-central-1": 4.404, "me-central-1": 4.354, "me-south-1": 0.0, "sa-east-1": 5.602, - "us-east-1": 0.0, - "us-east-2": 3.794, + "us-east-1": 3.794, + "us-east-2": 3.586, "us-gov-east-1": 4.282, "us-gov-west-1": 0.0, "us-west-1": 4.255, "us-west-2": 3.794, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 4.526 }, "r5d.16xlarge": { - "af-south-1": 6.575, + "af-south-1": 6.21, "ap-east-1": 0.0, "ap-northeast-1": 5.698, "ap-northeast-2": 5.666, @@ -57508,21 +62613,21 @@ "ap-south-1": 4.962, "ap-south-2": 0.0, "ap-southeast-1": 5.698, - "ap-southeast-2": 6.035, - "ap-southeast-3": 6.032, + "ap-southeast-2": 5.698, + "ap-southeast-3": 0.0, "ap-southeast-4": 5.698, "ca-central-1": 5.186, "eu-central-1": 5.666, - "eu-central-2": 6.22, + "eu-central-2": 6.585, "eu-north-1": 4.994, - "eu-south-1": 5.506, + "eu-south-1": 0.0, "eu-south-2": 5.25, "eu-west-1": 5.25, "eu-west-2": 5.538, "eu-west-3": 5.538, "il-central-1": 5.506, - "me-central-1": 5.762, - "me-south-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 5.762, "sa-east-1": 7.868, "us-east-1": 4.738, "us-east-2": 4.738, @@ -57539,13 +62644,13 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 8.482, "ap-south-1": 7.378, - "ap-south-2": 0.0, + "ap-south-2": 7.378, "ap-southeast-1": 8.482, - "ap-southeast-2": 8.482, + "ap-southeast-2": 0.0, "ap-southeast-3": 8.482, - "ap-southeast-4": 0.0, + "ap-southeast-4": 8.482, "ca-central-1": 7.714, - "eu-central-1": 8.434, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, @@ -57557,101 +62662,101 @@ "me-central-1": 8.578, "me-south-1": 8.578, "sa-east-1": 0.0, - "us-east-1": 7.042, + "us-east-1": 0.0, "us-east-2": 7.042, "us-gov-east-1": 8.434, - "us-gov-west-1": 0.0, - "us-west-1": 7.906, - "us-west-2": 0.0, + "us-gov-west-1": 8.434, + "us-west-1": 0.0, + "us-west-2": 7.042, "us-west-2-lax-1": 8.424 }, "r5dn.large": { - "af-south-1": 0.0, - "ap-northeast-1": 0.263, + "af-south-1": 0.281, + "ap-northeast-1": 0.276, "ap-northeast-2": 0.259, - "ap-southeast-1": 0.272, + "ap-southeast-1": 0.26, "ap-southeast-2": 0.27624, - "eu-central-1": 0.271, + "eu-central-1": 0.259, "eu-north-1": 0.24762, - "eu-south-1": 0.26776, - "eu-west-1": 0.257, + "eu-south-1": 0.0, + "eu-west-1": 0.246, "eu-west-3": 0.26776, "us-east-1": 0.237, - "us-east-2": 0.0, + "us-east-2": 0.227, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.273, "us-west-2": 0.227 }, "r5dn.xlarge": { "af-south-1": 0.52852, "ap-northeast-1": 0.466, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.458, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.458, - "eu-north-1": 0.43524, - "eu-south-1": 0.0, + "ap-southeast-2": 0.468, + "eu-central-1": 0.482, + "eu-north-1": 0.414, + "eu-south-1": 0.47552, "eu-west-1": 0.0, "eu-west-3": 0.47552, - "us-east-1": 0.394, + "us-east-1": 0.414, "us-east-2": 0.414, - "us-gov-east-1": 0.48612, - "us-gov-west-1": 0.462, - "us-west-2": 0.414 + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.486, + "us-west-2": 0.0 }, "r5dn.metal": { - "af-south-1": 10.738, + "af-south-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 9.682, + "ap-northeast-2": 0.0, "ap-southeast-1": 9.73, "ap-southeast-2": 0.0, "eu-central-1": 9.682, "eu-north-1": 8.626, - "eu-south-1": 9.538, + "eu-south-1": 0.0, "eu-west-1": 9.058, "eu-west-3": 0.0, "us-east-1": 8.146, "us-east-2": 8.146, "us-gov-east-1": 0.0, "us-gov-west-1": 9.778, - "us-west-2": 8.146 + "us-west-2": 0.0 }, "r5dn.2xlarge": { - "af-south-1": 0.0, - "ap-northeast-1": 0.992, + "af-south-1": 1.014, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.979, "ap-southeast-2": 0.946, - "eu-central-1": 0.975, + "eu-central-1": 0.0, "eu-north-1": 0.88048, "eu-south-1": 0.96104, - "eu-west-1": 0.92, + "eu-west-1": 0.874, "eu-west-3": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.98224, - "us-gov-west-1": 0.0, - "us-west-2": 0.838 + "us-gov-east-1": 0.934, + "us-gov-west-1": 0.982, + "us-west-2": 0.798 }, "r5dn.4xlarge": { - "af-south-1": 1.898, + "af-south-1": 2.00408, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.81752, "ap-southeast-1": 1.73, - "ap-southeast-2": 1.762, + "ap-southeast-2": 1.85992, "eu-central-1": 1.722, "eu-north-1": 1.63096, "eu-south-1": 1.79208, "eu-west-1": 1.709, - "eu-west-3": 1.698, - "us-east-1": 1.466, + "eu-west-3": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 1.738, - "us-gov-west-1": 1.738, - "us-west-2": 0.0 + "us-gov-east-1": 1.83448, + "us-gov-west-1": 1.834, + "us-west-2": 1.466 }, "r5dn.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.87816, "ap-northeast-1": 3.378, "ap-northeast-2": 3.50504, "ap-southeast-1": 0.0, @@ -57660,15 +62765,15 @@ "eu-north-1": 2.962, "eu-south-1": 3.45416, "eu-west-1": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 3.45416, "us-east-1": 0.0, "us-east-2": 2.802, - "us-gov-east-1": 3.53896, - "us-gov-west-1": 0.0, - "us-west-2": 2.802 + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.539, + "us-west-2": 0.0 }, "r5dn.12xlarge": { - "af-south-1": 5.75224, + "af-south-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 4.906, "ap-southeast-1": 4.93, @@ -57679,8 +62784,8 @@ "eu-west-1": 4.867, "eu-west-3": 0.0, "us-east-1": 4.138, - "us-east-2": 4.138, - "us-gov-east-1": 5.24344, + "us-east-2": 4.379, + "us-gov-east-1": 0.0, "us-gov-west-1": 4.954, "us-west-2": 0.0 }, @@ -57689,29 +62794,29 @@ "ap-northeast-1": 6.626, "ap-northeast-2": 6.88008, "ap-southeast-1": 6.918, - "ap-southeast-2": 7.04968, - "eu-central-1": 6.888, - "eu-north-1": 0.0, - "eu-south-1": 6.402, - "eu-west-1": 6.446, + "ap-southeast-2": 6.658, + "eu-central-1": 0.0, + "eu-north-1": 5.794, + "eu-south-1": 6.77832, + "eu-west-1": 6.082, "eu-west-3": 6.402, "us-east-1": 5.474, "us-east-2": 0.0, "us-gov-east-1": 6.94792, "us-gov-west-1": 6.948, - "us-west-2": 0.0 + "us-west-2": 5.795 }, "r5dn.24xlarge": { "af-south-1": 0.0, "ap-northeast-1": 9.874, "ap-northeast-2": 9.682, - "ap-southeast-1": 9.73, + "ap-southeast-1": 0.0, "ap-southeast-2": 9.922, "eu-central-1": 9.682, "eu-north-1": 8.626, "eu-south-1": 9.538, - "eu-west-1": 0.0, - "eu-west-3": 9.538, + "eu-west-1": 9.058, + "eu-west-3": 0.0, "us-east-1": 0.0, "us-east-2": 8.146, "us-gov-east-1": 9.778, @@ -57720,48 +62825,48 @@ }, "r5n.large": { "af-south-1": 0.271, - "ap-east-1": 0.262, - "ap-northeast-1": 0.252, + "ap-east-1": 0.274, + "ap-northeast-1": 0.241, "ap-northeast-2": 0.238, "ap-south-1": 0.213, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.241, - "ca-central-1": 0.223, - "eu-central-1": 0.238, + "ap-southeast-1": 0.238, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.249, "eu-north-1": 0.219, "eu-south-1": 0.246, "eu-west-1": 0.0, - "eu-west-2": 0.235, - "eu-west-3": 0.235, - "sa-east-1": 0.296, - "us-east-1": 0.209, - "us-east-2": 0.209, + "eu-west-2": 0.246, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.218, "us-gov-east-1": 0.25, "us-gov-west-1": 0.25, - "us-west-1": 0.229, + "us-west-1": 0.0, "us-west-2": 0.218 }, "r5n.xlarge": { "af-south-1": 0.481, - "ap-east-1": 0.464, - "ap-northeast-1": 0.444, - "ap-northeast-2": 0.0, - "ap-south-1": 0.366, - "ap-southeast-1": 0.0, + "ap-east-1": 0.488, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.416, + "ap-south-1": 0.0, + "ap-southeast-1": 0.438, "ap-southeast-2": 0.422, - "ca-central-1": 0.386, - "eu-central-1": 0.438, - "eu-north-1": 0.378, - "eu-south-1": 0.431, + "ca-central-1": 0.0, + "eu-central-1": 0.416, + "eu-north-1": 0.0, + "eu-south-1": 0.41, "eu-west-1": 0.414, - "eu-west-2": 0.41, - "eu-west-3": 0.41, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "sa-east-1": 0.532, "us-east-1": 0.376, "us-east-2": 0.0, "us-gov-east-1": 0.418, "us-gov-west-1": 0.439, - "us-west-1": 0.398, + "us-west-1": 0.418, "us-west-2": 0.358 }, "r5n.metal": { @@ -57771,7 +62876,7 @@ "ap-northeast-2": 8.674, "ap-south-1": 7.474, "ap-southeast-1": 8.674, - "ap-southeast-2": 8.818, + "ap-southeast-2": 0.0, "ca-central-1": 7.954, "eu-central-1": 8.674, "eu-north-1": 7.762, @@ -57782,264 +62887,309 @@ "sa-east-1": 11.458, "us-east-1": 7.282, "us-east-2": 7.282, - "us-gov-east-1": 8.722, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 8.242, - "us-west-2": 0.0 + "us-west-2": 7.282 }, "r5n.2xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.938, + "af-south-1": 0.925, + "ap-east-1": 0.986, "ap-northeast-1": 0.898, - "ap-northeast-2": 0.842, - "ap-south-1": 0.742, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.885, - "ap-southeast-2": 0.854, - "ca-central-1": 0.782, - "eu-central-1": 0.0, - "eu-north-1": 0.766, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.885, + "eu-north-1": 0.804, "eu-south-1": 0.0, "eu-west-1": 0.798, "eu-west-2": 0.83, "eu-west-3": 0.83, - "sa-east-1": 1.074, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.726, - "us-gov-east-1": 0.846, + "us-gov-east-1": 0.889, "us-gov-west-1": 0.846, "us-west-1": 0.806, "us-west-2": 0.762 }, "r5n.4xlarge": { "af-south-1": 0.0, - "ap-east-1": 1.746, + "ap-east-1": 1.843, "ap-northeast-1": 1.578, "ap-northeast-2": 1.554, - "ap-south-1": 1.354, + "ap-south-1": 1.427, "ap-southeast-1": 1.554, "ap-southeast-2": 1.578, - "ca-central-1": 1.434, + "ca-central-1": 0.0, "eu-central-1": 1.554, "eu-north-1": 1.402, "eu-south-1": 0.0, "eu-west-1": 1.546, - "eu-west-2": 1.53, - "eu-west-3": 1.53, - "sa-east-1": 2.018, - "us-east-1": 1.322, + "eu-west-2": 1.614, + "eu-west-3": 1.614, + "sa-east-1": 0.0, + "us-east-1": 1.394, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 1.562, - "us-west-1": 1.482, + "us-west-1": 0.0, "us-west-2": 1.322 }, "r5n.8xlarge": { - "af-south-1": 0.0, - "ap-east-1": 3.362, + "af-south-1": 3.309, + "ap-east-1": 0.0, "ap-northeast-1": 3.204, - "ap-northeast-2": 0.0, - "ap-south-1": 2.578, + "ap-northeast-2": 3.149, + "ap-south-1": 0.0, "ap-southeast-1": 3.151, "ap-southeast-2": 3.026, - "ca-central-1": 2.738, - "eu-central-1": 0.0, + "ca-central-1": 2.895, + "eu-central-1": 3.151, "eu-north-1": 2.674, "eu-south-1": 3.098, "eu-west-1": 2.802, - "eu-west-2": 2.93, + "eu-west-2": 0.0, "eu-west-3": 2.93, - "sa-east-1": 3.906, - "us-east-1": 2.657, - "us-east-2": 2.514, - "us-gov-east-1": 3.166, + "sa-east-1": 4.133, + "us-east-1": 2.514, + "us-east-2": 2.657, + "us-gov-east-1": 2.994, "us-gov-west-1": 0.0, "us-west-1": 2.834, - "us-west-2": 2.514 + "us-west-2": 2.657 }, "r5n.12xlarge": { "af-south-1": 4.898, - "ap-east-1": 4.978, + "ap-east-1": 5.268, "ap-northeast-1": 4.474, "ap-northeast-2": 4.402, - "ap-south-1": 3.802, + "ap-south-1": 4.022, "ap-southeast-1": 4.402, - "ap-southeast-2": 4.474, - "ca-central-1": 4.042, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 3.946, "eu-south-1": 0.0, - "eu-west-1": 4.378, - "eu-west-2": 4.33, - "eu-west-3": 4.33, - "sa-east-1": 5.794, + "eu-west-1": 4.138, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 6.134, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 4.426, + "us-gov-east-1": 4.684, "us-gov-west-1": 0.0, "us-west-1": 4.186, "us-west-2": 3.706 }, "r5n.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 6.594, - "ap-northeast-1": 6.277, - "ap-northeast-2": 5.826, - "ap-south-1": 5.026, + "ap-east-1": 6.981, + "ap-northeast-1": 5.922, + "ap-northeast-2": 6.168, + "ap-south-1": 5.32, "ap-southeast-1": 5.826, - "ap-southeast-2": 5.922, - "ca-central-1": 5.346, - "eu-central-1": 0.0, + "ap-southeast-2": 6.27, + "ca-central-1": 0.0, + "eu-central-1": 5.826, "eu-north-1": 5.218, "eu-south-1": 5.731, "eu-west-1": 0.0, - "eu-west-2": 5.73, - "eu-west-3": 5.73, - "sa-east-1": 7.682, + "eu-west-2": 6.068, + "eu-west-3": 6.068, + "sa-east-1": 0.0, "us-east-1": 4.898, "us-east-2": 4.898, "us-gov-east-1": 6.202, "us-gov-west-1": 6.202, "us-west-1": 5.538, - "us-west-2": 5.184 + "us-west-2": 0.0 }, "r5n.24xlarge": { - "af-south-1": 0.0, - "ap-east-1": 9.826, - "ap-northeast-1": 8.818, + "af-south-1": 9.666, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 8.674, - "ap-south-1": 7.474, - "ap-southeast-1": 0.0, - "ap-southeast-2": 8.818, - "ca-central-1": 7.954, + "ap-south-1": 0.0, + "ap-southeast-1": 8.674, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 8.674, "eu-north-1": 7.762, "eu-south-1": 8.531, "eu-west-1": 8.146, - "eu-west-2": 8.53, + "eu-west-2": 0.0, "eu-west-3": 8.53, "sa-east-1": 11.458, "us-east-1": 7.282, - "us-east-2": 7.282, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 8.242, + "us-gov-west-1": 8.722, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r6a.large": { + "ap-northeast-1": 0.0, "ap-south-1": 0.13865, + "ap-southeast-1": 0.21048, + "ap-southeast-2": 0.1959, "eu-central-1": 0.21048, "eu-west-1": 0.19959, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.1734, + "us-west-1": 0.0, + "us-west-2": 0.18474 }, "r6a.xlarge": { - "ap-south-1": 0.0, - "eu-central-1": 0.0, + "ap-northeast-1": 0.36096, + "ap-south-1": 0.203, + "ap-southeast-1": 0.3336, + "ap-southeast-2": 0.3318, + "eu-central-1": 0.36096, "eu-west-1": 0.0, - "us-east-1": 0.30948, + "us-east-1": 0.2868, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.30948 }, "r6a.metal": { + "ap-northeast-1": 0.0, "ap-south-1": 0.0, + "ap-southeast-1": 13.2628, + "ap-southeast-2": 0.0, "eu-central-1": 13.2628, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 11.0164, + "us-west-1": 12.226, "us-west-2": 0.0 }, "r6a.2xlarge": { - "ap-south-1": 0.416, - "eu-central-1": 0.73192, + "ap-northeast-1": 0.73192, + "ap-south-1": 0.4446, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, "eu-west-1": 0.68836, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.62896, + "us-west-1": 0.0, + "us-west-2": 0.62896 }, "r6a.4xlarge": { - "ap-south-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.702, + "ap-southeast-1": 1.33384, + "ap-southeast-2": 1.32592, "eu-central-1": 0.0, "eu-west-1": 1.24672, - "us-east-1": 1.0372, - "us-east-2": 1.0372, + "us-east-1": 0.0, + "us-east-2": 1.12792, + "us-west-1": 1.138, "us-west-2": 1.12792 }, "r6a.8xlarge": { + "ap-northeast-1": 2.53768, "ap-south-1": 1.274, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.3044, "eu-central-1": 2.53768, "eu-west-1": 2.1604, "us-east-1": 1.9444, - "us-east-2": 2.12584, + "us-east-2": 0.0, + "us-west-1": 2.146, "us-west-2": 0.0 }, "r6a.12xlarge": { + "ap-northeast-1": 3.74152, "ap-south-1": 0.0, + "ap-southeast-1": 3.4132, + "ap-southeast-2": 0.0, "eu-central-1": 3.74152, - "eu-west-1": 3.1756, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 3.12376, + "us-west-1": 0.0, "us-west-2": 3.12376 }, "r6a.16xlarge": { + "ap-northeast-1": 4.5076, "ap-south-1": 0.0, - "eu-central-1": 4.5076, - "eu-west-1": 4.59688, - "us-east-1": 4.12168, + "ap-southeast-1": 4.94536, + "ap-southeast-2": 4.4788, + "eu-central-1": 4.94536, + "eu-west-1": 4.1908, + "us-east-1": 3.7588, "us-east-2": 4.12168, + "us-west-1": 0.0, "us-west-2": 3.7588 }, "r6a.24xlarge": { + "ap-northeast-1": 6.6964, "ap-south-1": 3.562, + "ap-southeast-1": 6.6964, + "ap-southeast-2": 7.30552, "eu-central-1": 7.35304, "eu-west-1": 6.83032, - "us-east-1": 6.11752, - "us-east-2": 6.11752, + "us-east-1": 5.5732, + "us-east-2": 5.5732, + "us-west-1": 6.178, "us-west-2": 0.0 }, "r6a.32xlarge": { + "ap-northeast-1": 8.8852, "ap-south-1": 4.706, + "ap-southeast-1": 0.0, + "ap-southeast-2": 8.8276, "eu-central-1": 0.0, "eu-west-1": 9.06376, "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 8.194, "us-west-2": 0.0 }, "r6a.48xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 0.0, + "ap-southeast-1": 13.2628, + "ap-southeast-2": 13.1764, "eu-central-1": 13.2628, "eu-west-1": 12.3124, "us-east-1": 11.0164, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 11.0164 }, "r6g.medium": { - "af-south-1": 0.1312, + "af-south-1": 0.0, "ap-east-1": 0.131, "ap-northeast-1": 0.1208, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0925, + "ap-south-1": 0.0945, + "ap-south-2": 0.0, "ap-southeast-1": 0.1208, "ap-southeast-2": 0.0, "ap-southeast-3": 0.1208, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.1185, "eu-central-1": 0.1244, "eu-central-2": 0.1309, - "eu-north-1": 0.0, - "eu-south-1": 0.1192, + "eu-north-1": 0.1135, + "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.119, + "eu-west-1": 0.1164, + "eu-west-2": 0.1192, + "eu-west-3": 0.1225, "il-central-1": 0.1228, - "me-central-1": 0.122, + "me-central-1": 0.1258, "me-south-1": 0.1258, "sa-east-1": 0.1452, - "us-east-1": 0.0, - "us-east-2": 0.1104, + "us-east-1": 0.1104, + "us-east-2": 0.1134, "us-gov-east-1": 0.124, "us-gov-west-1": 0.0, "us-west-1": 0.116, @@ -58048,21 +63198,22 @@ "r6g.large": { "af-south-1": 0.1944, "ap-east-1": 0.194, - "ap-northeast-1": 0.1816, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1889, "ap-south-1": 0.125, "ap-south-2": 0.125, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.1808, + "ap-southeast-1": 0.1816, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.1816, "ap-southeast-4": 0.0, - "ca-central-1": 0.1704, - "eu-central-1": 0.0, - "eu-central-2": 0.2018, + "ca-central-1": 0.177, + "ca-west-1": 0.177, + "eu-central-1": 0.1889, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.1728, + "eu-south-2": 0.1796, "eu-west-1": 0.0, "eu-west-2": 0.1855, "eu-west-3": 0.0, @@ -58071,61 +63222,63 @@ "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.1608, - "us-east-2": 0.1608, + "us-east-2": 0.0, "us-gov-east-1": 0.188, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.1608 + "us-west-2": 0.0 }, "r6g.xlarge": { "af-south-1": 0.3449, "ap-east-1": 0.328, - "ap-northeast-1": 0.3178, + "ap-northeast-1": 0.3032, "ap-northeast-2": 0.3186, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.3178, "ap-southeast-2": 0.3016, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.3032, "ap-southeast-4": 0.3161, "ca-central-1": 0.0, + "ca-west-1": 0.294, "eu-central-1": 0.0, "eu-central-2": 0.3275, - "eu-north-1": 0.2868, + "eu-north-1": 0.274, "eu-south-1": 0.0, - "eu-south-2": 0.2856, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.2856, + "eu-west-2": 0.2968, + "eu-west-3": 0.296, "il-central-1": 0.0, - "me-central-1": 0.323, + "me-central-1": 0.3082, "me-south-1": 0.0, - "sa-east-1": 0.3816, - "us-east-1": 0.2737, - "us-east-2": 0.2616, + "sa-east-1": 0.4009, + "us-east-1": 0.2616, + "us-east-2": 0.0, "us-gov-east-1": 0.3161, "us-gov-west-1": 0.0, "us-west-1": 0.284, - "us-west-2": 0.2616 + "us-west-2": 0.0 }, "r6g.metal": { "af-south-1": 4.4308, "ap-east-1": 0.0, "ap-northeast-1": 4.0212, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.2676, "ap-northeast-3": 4.0212, "ap-south-1": 0.0, - "ap-south-2": 2.21, - "ap-southeast-1": 4.0212, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.9956, "ap-southeast-3": 0.0, "ap-southeast-4": 4.2275, "ca-central-1": 3.8748, + "ca-west-1": 3.6628, "eu-central-1": 4.2547, "eu-central-2": 4.4103, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 4.1464, "eu-south-2": 0.0, "eu-west-1": 3.7396, "eu-west-2": 4.1461, @@ -58133,17 +63286,17 @@ "il-central-1": 3.9201, "me-central-1": 4.1006, "me-south-1": 4.1006, - "sa-east-1": 0.0, - "us-east-1": 3.5491, + "sa-east-1": 5.5843, + "us-east-1": 3.3556, "us-east-2": 0.0, "us-gov-east-1": 3.9956, "us-gov-west-1": 4.2275, - "us-west-1": 3.929, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 3.3556 }, "r6g.2xlarge": { - "af-south-1": 0.6676, - "ap-east-1": 0.0, + "af-south-1": 0.6999, + "ap-east-1": 0.698, "ap-northeast-1": 0.6164, "ap-northeast-2": 0.618, "ap-northeast-3": 0.0, @@ -58154,223 +63307,238 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.5981, "eu-central-1": 0.0, "eu-central-2": 0.665, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.6083, - "eu-west-2": 0.6036, - "eu-west-3": 0.602, - "il-central-1": 0.6038, + "eu-west-2": 0.632, + "eu-west-3": 0.0, + "il-central-1": 0.6322, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 0.6263, "sa-east-1": 0.8118, "us-east-1": 0.5574, "us-east-2": 0.5332, - "us-gov-east-1": 0.6132, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.6049, - "us-west-2": 0.5332 + "us-west-1": 0.578, + "us-west-2": 0.5574 }, "r6g.4xlarge": { "af-south-1": 1.2052, "ap-east-1": 1.266, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.106, - "ap-northeast-3": 1.1612, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.1028, "ap-south-1": 0.6812, - "ap-south-2": 0.6812, + "ap-south-2": 0.0, "ap-southeast-1": 1.1028, "ap-southeast-2": 1.1544, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 1.1544, "ca-central-1": 1.0132, + "ca-west-1": 1.0662, "eu-central-1": 1.1028, "eu-central-2": 0.0, - "eu-north-1": 0.986, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 1.0865, - "eu-west-1": 1.0324, + "eu-south-2": 0.0, + "eu-west-1": 1.0865, "eu-west-2": 0.0, "eu-west-3": 1.1308, "il-central-1": 0.0, - "me-central-1": 1.1226, + "me-central-1": 0.0, "me-south-1": 1.1226, - "sa-east-1": 1.4164, - "us-east-1": 0.9848, + "sa-east-1": 1.4936, + "us-east-1": 0.0, "us-east-2": 0.9364, - "us-gov-east-1": 1.0964, - "us-gov-west-1": 0.0, + "us-gov-east-1": 1.1544, + "us-gov-west-1": 1.1544, "us-west-1": 1.026, "us-west-2": 0.0 }, "r6g.8xlarge": { - "af-south-1": 2.4094, + "af-south-1": 2.2804, "ap-east-1": 2.274, - "ap-northeast-1": 2.0756, - "ap-northeast-2": 2.082, - "ap-northeast-3": 2.0756, - "ap-south-1": 0.0, - "ap-south-2": 1.17, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 1.17, + "ap-south-2": 0.0, "ap-southeast-1": 2.0756, "ap-southeast-2": 2.0628, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.0628, "ca-central-1": 2.0024, - "eu-central-1": 2.0756, - "eu-central-2": 2.3986, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 1.9444, "eu-south-1": 2.1382, "eu-south-2": 0.0, "eu-west-1": 1.9348, "eu-west-2": 0.0, - "eu-west-3": 2.1316, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 2.1387, "me-central-1": 2.2344, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 1.7428, "us-gov-east-1": 2.1788, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.1788, "us-west-1": 0.0, "us-west-2": 1.8396 }, "r6g.12xlarge": { "af-south-1": 3.3556, - "ap-east-1": 3.346, + "ap-east-1": 3.538, "ap-northeast-1": 3.0484, - "ap-northeast-2": 3.2332, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.0484, - "ap-south-1": 1.7836, - "ap-south-2": 1.69, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 3.0484, - "ap-southeast-2": 3.0292, + "ap-southeast-2": 3.2032, "ap-southeast-3": 0.0, - "ap-southeast-4": 3.0292, - "ca-central-1": 0.0, + "ap-southeast-4": 3.2032, + "ca-central-1": 2.7796, + "ca-west-1": 2.7796, "eu-central-1": 3.0484, "eu-central-2": 0.0, "eu-north-1": 2.698, "eu-south-1": 0.0, "eu-south-2": 2.8372, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 3.1324, + "eu-west-2": 3.1421, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 3.2866, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 4.2208, "us-east-1": 0.0, "us-east-2": 2.5492, - "us-gov-east-1": 3.0292, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.2032, "us-west-1": 2.9793, "us-west-2": 0.0 }, "r6g.16xlarge": { "af-south-1": 4.4308, - "ap-east-1": 4.674, + "ap-east-1": 0.0, "ap-northeast-1": 4.2547, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 2.21, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.9956, - "ap-southeast-3": 4.0212, + "ap-southeast-2": 4.2275, + "ap-southeast-3": 0.0, "ap-southeast-4": 4.2275, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 3.8748, + "ca-west-1": 0.0, + "eu-central-1": 4.0212, "eu-central-2": 4.4103, - "eu-north-1": 0.0, + "eu-north-1": 3.7588, "eu-south-1": 4.1464, "eu-south-2": 3.7396, - "eu-west-1": 3.9562, + "eu-west-1": 0.0, "eu-west-2": 3.9188, "eu-west-3": 3.906, - "il-central-1": 3.9201, + "il-central-1": 0.0, "me-central-1": 4.1006, "me-south-1": 4.1006, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.5491, "us-gov-east-1": 3.9956, "us-gov-west-1": 0.0, - "us-west-1": 3.929, + "us-west-1": 3.714, "us-west-2": 3.3556 }, "r6gd.medium": { "ap-northeast-1": 0.1295, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.1333, "ap-northeast-3": 0.0, - "ap-south-1": 0.0974, - "ap-southeast-1": 0.1337, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.1295, - "ca-central-1": 0.0, - "eu-central-1": 0.1331, + "ca-central-1": 0.1232, + "eu-central-1": 0.0, + "eu-central-2": 0.1405, "eu-north-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.1276, + "eu-west-2": 0.1317, "eu-west-3": 0.1276, "sa-east-1": 0.1512, "us-east-1": 0.1176, - "us-east-2": 0.1176, + "us-east-2": 0.1211, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.1292, "us-west-1": 0.125, - "us-west-2": 0.0 + "us-west-2": 0.1176 }, "r6gd.large": { - "ap-northeast-1": 0.199, - "ap-northeast-2": 0.1984, + "ap-northeast-1": 0.2074, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.2076, - "ap-south-1": 0.0, + "ap-south-1": 0.1347, "ap-southeast-1": 0.199, "ap-southeast-2": 0.2074, "ap-southeast-3": 0.0, "ca-central-1": 0.1864, "eu-central-1": 0.198, - "eu-north-1": 0.0, - "eu-west-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.1816, + "eu-west-1": 0.188, "eu-west-2": 0.0, "eu-west-3": 0.1952, "sa-east-1": 0.0, "us-east-1": 0.1752, "us-east-2": 0.1821, - "us-west-1": 0.0, + "us-gov-east-1": 0.2067, + "us-gov-west-1": 0.1984, + "us-west-1": 0.1978, "us-west-2": 0.1821 }, "r6gd.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.3534, + "ap-northeast-2": 0.3368, "ap-northeast-3": 0.3384, - "ap-south-1": 0.2184, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.3548, + "ap-south-1": 0.2095, + "ap-southeast-1": 0.3548, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.3548, "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.3178, "eu-west-1": 0.0, "eu-west-2": 0.3304, "eu-west-3": 0.0, - "sa-east-1": 0.4248, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "r6gd.metal": { "ap-northeast-1": 4.578, "ap-northeast-2": 4.5588, - "ap-northeast-3": 0.0, + "ap-northeast-3": 4.5844, "ap-south-1": 2.5217, - "ap-southeast-1": 4.8468, + "ap-southeast-1": 4.578, "ap-southeast-2": 0.0, "ap-southeast-3": 4.578, "ca-central-1": 0.0, "eu-central-1": 4.546, + "eu-central-2": 4.9876, "eu-north-1": 4.0212, "eu-west-1": 0.0, "eu-west-2": 4.4564, @@ -58378,27 +63546,32 @@ "sa-east-1": 5.9668, "us-east-1": 3.8164, "us-east-2": 4.0376, + "us-gov-east-1": 4.5588, + "us-gov-west-1": 0.0, "us-west-1": 4.5396, - "us-west-2": 0.0 + "us-west-2": 3.8164 }, "r6gd.2xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.6836, "ap-northeast-3": 0.7202, - "ap-south-1": 0.4469, + "ap-south-1": 0.0, "ap-southeast-1": 0.686, "ap-southeast-2": 0.686, "ap-southeast-3": 0.686, - "ca-central-1": 0.6356, + "ca-central-1": 0.0, "eu-central-1": 0.7152, - "eu-north-1": 0.6456, - "eu-west-1": 0.642, + "eu-central-2": 0.0, + "eu-north-1": 0.6164, + "eu-west-1": 0.6727, "eu-west-2": 0.6708, "eu-west-3": 0.7032, - "sa-east-1": 0.9034, - "us-east-1": 0.6184, + "sa-east-1": 0.8596, + "us-east-1": 0.0, "us-east-2": 0.6184, - "us-west-1": 0.65, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.6836, + "us-west-1": 0.0, "us-west-2": 0.5908 }, "r6gd.4xlarge": { @@ -58411,186 +63584,206 @@ "ap-southeast-3": 0.0, "ca-central-1": 1.2019, "eu-central-1": 1.3004, - "eu-north-1": 1.1028, + "eu-central-2": 1.3444, + "eu-north-1": 1.1612, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 1.2116, "eu-west-3": 1.2116, - "sa-east-1": 1.6768, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 1.1069, + "us-east-2": 1.0516, + "us-gov-east-1": 1.2372, + "us-gov-west-1": 0.0, "us-west-1": 1.2324, "us-west-2": 1.0516 }, "r6gd.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 2.3444, - "ap-northeast-3": 2.4908, + "ap-northeast-3": 2.3572, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.4884, + "ap-southeast-1": 2.354, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ca-central-1": 2.1524, + "ca-central-1": 2.2737, "eu-central-1": 2.338, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 2.423, - "eu-west-3": 2.423, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "sa-east-1": 0.0, "us-east-1": 1.9732, - "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-east-2": 1.9732, + "us-gov-east-1": 2.3444, + "us-gov-west-1": 0.0, + "us-west-1": 2.21, + "us-west-2": 1.9732 }, "r6gd.12xlarge": { "ap-northeast-1": 3.466, - "ap-northeast-2": 3.4516, - "ap-northeast-3": 3.4708, - "ap-south-1": 2.0314, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 3.466, "ap-southeast-2": 3.6676, "ap-southeast-3": 3.466, "ca-central-1": 3.3456, "eu-central-1": 3.442, + "eu-central-2": 3.7732, "eu-north-1": 3.2235, - "eu-west-1": 3.202, + "eu-west-1": 3.3863, "eu-west-2": 3.3748, "eu-west-3": 3.3748, "sa-east-1": 0.0, "us-east-1": 2.8948, "us-east-2": 3.0607, + "us-gov-east-1": 3.4516, + "us-gov-west-1": 3.4516, "us-west-1": 3.4372, "us-west-2": 2.8948 }, "r6gd.16xlarge": { "ap-northeast-1": 4.578, - "ap-northeast-2": 0.0, - "ap-northeast-3": 4.5844, - "ap-south-1": 2.5217, - "ap-southeast-1": 4.578, - "ap-southeast-2": 4.578, + "ap-northeast-2": 4.5588, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 4.8468, + "ap-southeast-2": 4.8468, "ap-southeast-3": 0.0, "ca-central-1": 4.1748, "eu-central-1": 0.0, + "eu-central-2": 4.9876, "eu-north-1": 0.0, - "eu-west-1": 4.4718, + "eu-west-1": 0.0, "eu-west-2": 4.4564, "eu-west-3": 4.4564, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 3.8164, "us-east-2": 4.0376, + "us-gov-east-1": 0.0, + "us-gov-west-1": 4.5588, "us-west-1": 0.0, - "us-west-2": 4.0376 + "us-west-2": 3.8164 }, "r6i.large": { - "af-south-1": 0.0, - "ap-east-1": 0.227, + "af-south-1": 0.228, + "ap-east-1": 0.2437, "ap-northeast-1": 0.2272, "ap-northeast-2": 0.2272, - "ap-northeast-3": 0.0, - "ap-south-1": 0.203, + "ap-northeast-3": 0.212, + "ap-south-1": 0.0, "ap-south-2": 0.19, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.211, + "ap-southeast-2": 0.0, "ca-central-1": 0.2118, + "ca-west-1": 0.2118, "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-central-2": 0.2272, + "eu-north-1": 0.2074, + "eu-south-1": 0.208, "eu-west-1": 0.0, - "eu-west-2": 0.208, + "eu-west-2": 0.2228, "eu-west-3": 0.208, "il-central-1": 0.22286, "me-central-1": 0.23061, "me-south-1": 0.2151, "sa-east-1": 0.0, - "us-east-1": 0.186, + "us-east-1": 0.1986, "us-east-2": 0.186, - "us-gov-east-1": 0.2261, - "us-gov-west-1": 0.2261, + "us-gov-east-1": 0.211, + "us-gov-west-1": 0.0, "us-west-1": 0.2, "us-west-2": 0.1986 }, "r6i.xlarge": { "af-south-1": 0.4296, - "ap-east-1": 0.0, + "ap-east-1": 0.4274, "ap-northeast-1": 0.364, "ap-northeast-2": 0.0, "ap-northeast-3": 0.364, "ap-south-1": 0.0, - "ap-south-2": 0.346, + "ap-south-2": 0.0, "ap-southeast-1": 0.364, - "ap-southeast-2": 0.362, - "ca-central-1": 0.336, - "eu-central-1": 0.364, + "ap-southeast-2": 0.3922, + "ca-central-1": 0.3636, + "ca-west-1": 0.336, + "eu-central-1": 0.0, + "eu-central-2": 0.3944, "eu-north-1": 0.328, "eu-south-1": 0.0, - "eu-west-1": 0.342, - "eu-west-2": 0.0, - "eu-west-3": 0.356, + "eu-west-1": 0.0, + "eu-west-2": 0.3856, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.3702, - "me-south-1": 0.40122, - "sa-east-1": 0.0, - "us-east-1": 0.312, - "us-east-2": 0.312, - "us-gov-east-1": 0.3922, + "me-south-1": 0.0, + "sa-east-1": 0.462, + "us-east-1": 0.0, + "us-east-2": 0.3372, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.3922, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.312 }, "r6i.metal": { - "af-south-1": 10.882, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 10.818, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 9.858, "ap-northeast-3": 9.858, "ap-south-1": 8.45, "ap-south-2": 0.0, "ap-southeast-1": 9.858, "ap-southeast-2": 9.794, - "ca-central-1": 8.962, + "ca-central-1": 0.0, + "ca-west-1": 8.962, "eu-central-1": 9.858, - "eu-north-1": 0.0, + "eu-central-2": 10.8308, + "eu-north-1": 8.706, "eu-south-1": 9.602, "eu-west-1": 9.154, "eu-west-2": 9.602, - "eu-west-3": 9.602, + "eu-west-3": 0.0, "il-central-1": 9.6052, "me-central-1": 10.0564, - "me-south-1": 10.0564, + "me-south-1": 0.0, "sa-east-1": 12.994, "us-east-1": 8.194, - "us-east-2": 0.0, + "us-east-2": 8.194, "us-gov-east-1": 0.0, - "us-gov-west-1": 9.794, + "us-gov-west-1": 0.0, "us-west-1": 9.09, - "us-west-2": 0.0 + "us-west-2": 8.194 }, "r6i.2xlarge": { "af-south-1": 0.8692, "ap-east-1": 0.798, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.7988, "ap-northeast-3": 0.7988, "ap-south-1": 0.65, "ap-south-2": 0.702, "ap-southeast-1": 0.0, "ap-southeast-2": 0.7944, "ca-central-1": 0.0, - "eu-central-1": 0.738, + "ca-west-1": 0.7372, + "eu-central-1": 0.0, + "eu-central-2": 0.86568, "eu-north-1": 0.7196, "eu-south-1": 0.7812, "eu-west-1": 0.0, "eu-west-2": 0.722, "eu-west-3": 0.0, - "il-central-1": 0.78142, + "il-central-1": 0.0, "me-central-1": 0.7504, - "me-south-1": 0.81244, - "sa-east-1": 0.934, + "me-south-1": 0.7504, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.6844, - "us-gov-east-1": 0.7944, + "us-gov-east-1": 0.734, "us-gov-west-1": 0.7944, - "us-west-1": 0.0, + "us-west-1": 0.69, "us-west-2": 0.0 }, "r6i.4xlarge": { @@ -58601,158 +63794,170 @@ "ap-northeast-3": 0.0, "ap-south-1": 1.274, "ap-south-2": 0.0, - "ap-southeast-1": 1.346, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.4588, "ca-central-1": 0.0, - "eu-central-1": 1.4676, + "ca-west-1": 1.234, + "eu-central-1": 0.0, + "eu-central-2": 1.60136, "eu-north-1": 1.3092, - "eu-south-1": 0.0, + "eu-south-1": 1.4324, "eu-west-1": 1.3708, "eu-west-2": 1.314, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 1.8988, - "us-east-1": 0.0, + "eu-west-3": 1.314, + "il-central-1": 1.43284, + "me-central-1": 1.49488, + "me-south-1": 1.3708, + "sa-east-1": 1.738, + "us-east-1": 1.138, "us-east-2": 0.0, "us-gov-east-1": 1.338, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 1.25, "us-west-2": 1.2388 }, "r6i.8xlarge": { - "af-south-1": 3.0868, + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 2.562, "ap-northeast-2": 2.562, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.8052, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 2.562, "ap-southeast-2": 2.7876, - "ca-central-1": 2.5588, + "ca-central-1": 2.338, + "ca-west-1": 0.0, "eu-central-1": 2.8052, + "eu-central-2": 2.8052, "eu-north-1": 2.274, "eu-south-1": 0.0, "eu-west-1": 2.6116, "eu-west-2": 2.7348, - "eu-west-3": 2.7348, + "eu-west-3": 2.498, "il-central-1": 0.0, - "me-central-1": 2.85976, - "me-south-1": 2.85976, + "me-central-1": 2.6116, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.146, "us-gov-east-1": 0.0, - "us-gov-west-1": 2.7876, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 2.146 + "us-west-2": 0.0 }, "r6i.12xlarge": { - "af-south-1": 4.162, + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 4.1428, "ap-northeast-2": 4.1428, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 3.562, "ap-southeast-1": 0.0, "ap-southeast-2": 3.754, - "ca-central-1": 0.0, - "eu-central-1": 3.778, + "ca-central-1": 3.442, + "ca-west-1": 3.7732, + "eu-central-1": 4.1428, + "eu-central-2": 4.54408, "eu-north-1": 0.0, "eu-south-1": 3.682, - "eu-west-1": 3.514, + "eu-west-1": 0.0, "eu-west-2": 4.0372, "eu-west-3": 4.0372, "il-central-1": 3.6832, - "me-central-1": 3.8524, + "me-central-1": 4.22464, "me-south-1": 4.22464, - "sa-east-1": 4.954, + "sa-east-1": 5.4364, "us-east-1": 3.154, "us-east-2": 0.0, "us-gov-east-1": 3.754, "us-gov-west-1": 0.0, - "us-west-1": 3.826, - "us-west-2": 3.154 + "us-west-1": 3.49, + "us-west-2": 0.0 }, "r6i.16xlarge": { - "af-south-1": 6.0436, + "af-south-1": 5.506, "ap-east-1": 0.0, "ap-northeast-1": 5.4804, "ap-northeast-2": 0.0, - "ap-northeast-3": 4.994, + "ap-northeast-3": 0.0, "ap-south-1": 4.29, "ap-south-2": 0.0, "ap-southeast-1": 4.994, "ap-southeast-2": 4.962, "ca-central-1": 4.9876, - "eu-central-1": 4.994, + "ca-west-1": 4.9876, + "eu-central-1": 5.4804, + "eu-central-2": 5.4804, "eu-north-1": 4.418, "eu-south-1": 5.3396, "eu-west-1": 4.642, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 5.34136, + "eu-west-3": 4.866, + "il-central-1": 4.8676, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 5.58952, "sa-east-1": 0.0, "us-east-1": 4.5652, "us-east-2": 4.162, "us-gov-east-1": 0.0, "us-gov-west-1": 4.962, - "us-west-1": 5.058, + "us-west-1": 4.61, "us-west-2": 4.5652 }, "r6i.24xlarge": { - "af-south-1": 8.194, + "af-south-1": 9.0004, "ap-east-1": 8.146, "ap-northeast-1": 0.0, "ap-northeast-2": 8.1556, "ap-northeast-3": 8.1556, "ap-south-1": 6.37, - "ap-south-2": 6.37, + "ap-south-2": 6.994, "ap-southeast-1": 8.1556, - "ap-southeast-2": 7.378, - "ca-central-1": 7.4164, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 7.4164, "eu-central-1": 7.426, + "eu-central-2": 8.1556, "eu-north-1": 0.0, "eu-south-1": 7.234, - "eu-west-1": 0.0, - "eu-west-2": 7.9444, + "eu-west-1": 7.5748, + "eu-west-2": 7.234, "eu-west-3": 7.9444, "il-central-1": 7.94704, "me-central-1": 7.5748, "me-south-1": 7.5748, - "sa-east-1": 0.0, + "sa-east-1": 10.7428, "us-east-1": 6.178, - "us-east-2": 6.7828, + "us-east-2": 0.0, "us-gov-east-1": 7.378, - "us-gov-west-1": 0.0, - "us-west-1": 7.522, - "us-west-2": 0.0 + "us-gov-west-1": 8.1028, + "us-west-1": 0.0, + "us-west-2": 6.7828 }, "r6i.32xlarge": { "af-south-1": 10.882, "ap-east-1": 10.818, "ap-northeast-1": 9.858, "ap-northeast-2": 0.0, - "ap-northeast-3": 9.858, + "ap-northeast-3": 0.0, "ap-south-1": 8.45, "ap-south-2": 8.45, - "ap-southeast-1": 9.858, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 8.962, + "ca-west-1": 8.962, "eu-central-1": 9.858, + "eu-central-2": 10.8308, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 9.602, "eu-west-3": 9.602, - "il-central-1": 0.0, + "il-central-1": 9.6052, "me-central-1": 10.0564, - "me-south-1": 0.0, + "me-south-1": 10.0564, "sa-east-1": 12.994, "us-east-1": 8.194, "us-east-2": 8.194, @@ -58763,28 +63968,30 @@ }, "r6id.large": { "ap-northeast-1": 0.26097, - "ap-northeast-2": 0.2417, - "ap-south-1": 0.23446, + "ap-northeast-2": 0.0, + "ap-south-1": 0.2186, "ap-southeast-1": 0.26097, - "ap-southeast-2": 0.234, - "eu-central-1": 0.24165, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "il-central-1": 0.0, - "us-east-1": 0.22632, + "il-central-1": 0.25404, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.25987, - "us-west-2": 0.0 + "us-gov-west-1": 0.2417, + "us-west-2": 0.2112 }, "r6id.xlarge": { "ap-northeast-1": 0.4254, "ap-northeast-2": 0.4234, - "ap-south-1": 0.3772, - "ap-southeast-1": 0.46194, + "ap-south-1": 0.40892, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.4428, - "eu-central-1": 0.0, + "ca-west-1": 0.3918, + "eu-central-1": 0.45963, "eu-west-1": 0.4296, - "eu-west-2": 0.45039, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 0.39264, "us-east-2": 0.3624, @@ -58793,13 +64000,14 @@ }, "r6id.metal": { "ap-northeast-1": 11.8228, - "ap-northeast-2": 0.0, + "ap-northeast-2": 11.7588, "ap-south-1": 10.2804, "ap-southeast-1": 11.8228, "ap-southeast-2": 11.266, + "ca-west-1": 10.7476, "eu-central-1": 11.7556, "eu-west-1": 10.882, - "eu-west-2": 11.4868, + "eu-west-2": 0.0, "il-central-1": 11.4196, "us-east-1": 9.8068, "us-east-2": 9.8068, @@ -58808,59 +64016,63 @@ }, "r6id.2xlarge": { "ap-northeast-1": 0.93388, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.8568, "ap-south-1": 0.0, "ap-southeast-1": 0.93388, - "ap-southeast-2": 0.826, + "ap-southeast-2": 0.8956, + "ca-west-1": 0.0, "eu-central-1": 0.92926, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 0.0, - "us-east-1": 0.79528, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.92948, "us-west-2": 0.79528 }, "r6id.4xlarge": { - "ap-northeast-1": 1.5916, + "ap-northeast-1": 1.73776, "ap-northeast-2": 0.0, "ap-south-1": 1.52568, "ap-southeast-1": 0.0, "ap-southeast-2": 1.522, + "ca-west-1": 1.58992, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.5496, + "eu-west-1": 1.6084, + "eu-west-2": 1.69156, "il-central-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 1.46056, "us-east-2": 1.3396, - "us-gov-west-1": 1.5836, + "us-gov-west-1": 1.72896, "us-west-2": 1.46056 }, "r6id.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-south-1": 2.92136, + "ap-south-1": 2.6676, "ap-southeast-1": 3.0532, - "ap-southeast-2": 3.1924, + "ap-southeast-2": 0.0, + "ca-west-1": 3.04984, "eu-central-1": 3.0364, - "eu-west-1": 3.0868, + "eu-west-1": 2.818, "eu-west-2": 0.0, - "il-central-1": 2.9524, + "il-central-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 2.5492 + "us-west-2": 2.79112 }, "r6id.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.95328, "ap-northeast-2": 4.92688, - "ap-south-1": 4.31704, - "ap-southeast-1": 4.95328, - "ap-southeast-2": 4.306, + "ap-south-1": 0.0, + "ap-southeast-1": 4.5148, + "ap-southeast-2": 0.0, + "ca-west-1": 4.50976, "eu-central-1": 4.4896, - "eu-west-1": 4.5652, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "il-central-1": 4.3636, + "il-central-1": 4.78696, "us-east-1": 0.0, "us-east-2": 4.12168, "us-gov-west-1": 4.92688, @@ -58870,29 +64082,31 @@ "ap-northeast-1": 5.9764, "ap-northeast-2": 5.9444, "ap-south-1": 0.0, - "ap-southeast-1": 6.56104, + "ap-southeast-1": 5.9764, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 6.52408, "eu-west-1": 5.506, "eu-west-2": 0.0, "il-central-1": 5.7748, - "us-east-1": 5.45224, - "us-east-2": 4.9684, - "us-gov-west-1": 5.9444, + "us-east-1": 0.0, + "us-east-2": 5.45224, + "us-gov-west-1": 0.0, "us-west-2": 5.45224 }, "r6id.24xlarge": { - "ap-northeast-1": 8.8996, - "ap-northeast-2": 9.72376, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 8.50408, "ap-southeast-1": 8.8996, - "ap-southeast-2": 8.482, + "ap-southeast-2": 9.3172, + "ca-west-1": 8.88952, "eu-central-1": 0.0, "eu-west-1": 8.194, - "eu-west-2": 8.6476, - "il-central-1": 0.0, - "us-east-1": 8.11336, - "us-east-2": 7.3876, + "eu-west-2": 0.0, + "il-central-1": 9.44392, + "us-east-1": 7.3876, + "us-east-2": 8.11336, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, @@ -58900,8 +64114,9 @@ "ap-northeast-1": 11.8228, "ap-northeast-2": 0.0, "ap-south-1": 10.2804, - "ap-southeast-1": 0.0, + "ap-southeast-1": 11.8228, "ap-southeast-2": 0.0, + "ca-west-1": 10.7476, "eu-central-1": 11.7556, "eu-west-1": 10.882, "eu-west-2": 11.4868, @@ -58914,27 +64129,30 @@ "r6idn.large": { "ap-northeast-1": 0.32126, "ap-southeast-1": 0.0, - "eu-central-1": 0.31611, + "eu-central-1": 0.0, + "eu-north-1": 0.26709, "eu-west-1": 0.27762, - "us-east-1": 0.25539, + "us-east-1": 0.27493, "us-east-2": 0.0, "us-gov-west-1": 0.31869, "us-west-2": 0.27493 }, "r6idn.xlarge": { - "ap-northeast-1": 0.53502, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.5748, "eu-central-1": 0.0, - "eu-west-1": 0.53876, + "eu-north-1": 0.5156, + "eu-west-1": 0.49524, "us-east-1": 0.45078, - "us-east-2": 0.48986, - "us-gov-west-1": 0.53034, + "us-east-2": 0.45078, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6idn.metal": { "ap-northeast-1": 0.0, "ap-southeast-1": 15.106, - "eu-central-1": 0.0, + "eu-central-1": 15.03112, + "eu-north-1": 13.38376, "eu-west-1": 14.05768, "us-east-1": 0.0, "us-east-2": 12.63496, @@ -58945,76 +64163,84 @@ "ap-northeast-1": 1.17504, "ap-southeast-1": 1.066, "eu-central-1": 1.06132, + "eu-north-1": 0.0, "eu-west-1": 1.08753, - "us-east-1": 0.98972, - "us-east-2": 0.98972, - "us-gov-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 1.16475, "us-west-2": 0.0 }, "r6idn.4xlarge": { "ap-northeast-1": 2.03008, "ap-southeast-1": 2.002, "eu-central-1": 0.0, + "eu-north-1": 1.78672, "eu-west-1": 0.0, - "us-east-1": 1.69312, + "us-east-1": 1.84943, "us-east-2": 1.69312, "us-gov-west-1": 2.1995, "us-west-2": 1.69312 }, "r6idn.8xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 4.22781, + "ap-southeast-1": 3.874, + "eu-central-1": 0.0, + "eu-north-1": 3.77478, "eu-west-1": 3.61192, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.25624, "us-gov-west-1": 0.0, - "us-west-2": 3.56886 + "us-west-2": 0.0 }, "r6idn.12xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 6.27671, + "eu-north-1": 0.0, "eu-west-1": 5.87517, "us-east-1": 4.81936, - "us-east-2": 4.81936, + "us-east-2": 5.2883, "us-gov-west-1": 5.77408, "us-west-2": 5.2883 }, "r6idn.16xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 7.618, - "eu-central-1": 0.0, + "ap-northeast-1": 7.73032, + "ap-southeast-1": 8.3668, + "eu-central-1": 8.32562, + "eu-north-1": 6.75688, "eu-west-1": 7.09384, "us-east-1": 6.38248, "us-east-2": 6.38248, "us-gov-west-1": 7.65544, - "us-west-2": 6.38248 + "us-west-2": 7.00773 }, "r6idn.24xlarge": { "ap-northeast-1": 12.67053, - "ap-southeast-1": 11.362, - "eu-central-1": 12.42342, + "ap-southeast-1": 12.4852, + "eu-central-1": 0.0, + "eu-north-1": 10.07032, "eu-west-1": 0.0, "us-east-1": 10.44659, "us-east-2": 0.0, - "us-gov-west-1": 12.54698, + "us-gov-west-1": 11.41816, "us-west-2": 9.50872 }, "r6idn.32xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 15.106, "eu-central-1": 15.03112, + "eu-north-1": 13.38376, "eu-west-1": 14.05768, "us-east-1": 12.63496, "us-east-2": 12.63496, - "us-gov-west-1": 15.18088, + "us-gov-west-1": 0.0, "us-west-2": 12.63496 }, "r6in.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.27177, "ap-southeast-1": 0.0, "eu-central-1": 0.26826, + "eu-north-1": 0.0, "eu-west-1": 0.25539, "us-east-1": 0.25176, "us-east-2": 0.23433, @@ -59025,8 +64251,9 @@ "ap-northeast-1": 0.48354, "ap-southeast-1": 0.51817, "eu-central-1": 0.51817, - "eu-west-1": 0.45078, - "us-east-1": 0.40866, + "eu-north-1": 0.0, + "eu-west-1": 0.48986, + "us-east-1": 0.0, "us-east-2": 0.40866, "us-gov-west-1": 0.0, "us-west-2": 0.40866 @@ -59034,17 +64261,19 @@ "r6in.metal": { "ap-northeast-1": 0.0, "ap-southeast-1": 13.45864, - "eu-central-1": 0.0, + "eu-central-1": 13.45864, + "eu-north-1": 0.0, "eu-west-1": 12.63496, "us-east-1": 11.28712, "us-east-2": 11.28712, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 11.28712 }, "r6in.2xlarge": { - "ap-northeast-1": 1.06179, + "ap-northeast-1": 0.97708, "ap-southeast-1": 1.04634, - "eu-central-1": 1.04634, + "eu-central-1": 0.0, + "eu-north-1": 0.94853, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, @@ -59055,191 +64284,798 @@ "ap-northeast-1": 0.0, "ap-southeast-1": 1.79608, "eu-central-1": 1.96269, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 1.69312, + "us-east-1": 1.52464, "us-east-2": 1.6641, - "us-gov-west-1": 1.97298, + "us-gov-west-1": 0.0, "us-west-2": 1.52464 }, "r6in.8xlarge": { "ap-northeast-1": 3.85715, "ap-southeast-1": 3.79538, "eu-central-1": 3.46216, - "eu-west-1": 0.0, + "eu-north-1": 3.40413, + "eu-west-1": 3.25624, "us-east-1": 0.0, - "us-east-2": 2.91928, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-gov-west-1": 3.48088, + "us-west-2": 2.91928 }, "r6in.12xlarge": { - "ap-northeast-1": 5.72073, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 5.12824, + "eu-north-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 4.73231, - "us-east-2": 4.73231, + "us-east-1": 0.0, + "us-east-2": 4.31392, "us-gov-west-1": 5.65895, - "us-west-2": 0.0 + "us-west-2": 4.73231 }, "r6in.16xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 6.79432, "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-west-1": 7.00773, "us-east-1": 5.70856, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 6.83176, "us-west-2": 0.0 }, "r6in.24xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 10.12648, + "eu-central-1": 11.12613, + "eu-north-1": 0.0, "eu-west-1": 10.44659, "us-east-1": 9.33462, - "us-east-2": 9.33462, - "us-gov-west-1": 11.1879, - "us-west-2": 0.0 + "us-east-2": 8.49784, + "us-gov-west-1": 0.0, + "us-west-2": 8.49784 }, "r6in.32xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 13.45864, "eu-central-1": 13.45864, - "eu-west-1": 0.0, + "eu-north-1": 12.03592, + "eu-west-1": 12.63496, "us-east-1": 11.28712, - "us-east-2": 0.0, + "us-east-2": 11.28712, "us-gov-west-1": 0.0, "us-west-2": 11.28712 }, + "r7a.medium": { + "ap-northeast-1": 0.15177, + "eu-central-1": 0.0, + "eu-north-1": 0.14899, + "eu-south-2": 0.0, + "eu-west-1": 0.14513, + "us-east-1": 0.14368, + "us-east-2": 0.13608, + "us-west-2": 0.0 + }, + "r7a.large": { + "ap-northeast-1": 0.24354, + "eu-central-1": 0.24354, + "eu-north-1": 0.0, + "eu-south-2": 0.24729, + "eu-west-1": 0.24729, + "us-east-1": 0.22737, + "us-east-2": 0.22737, + "us-west-2": 0.0 + }, + "r7a.xlarge": { + "ap-northeast-1": 0.46379, + "eu-central-1": 0.46379, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.43457, + "us-east-1": 0.0, + "us-east-2": 0.3643, + "us-west-2": 0.3643 + }, + "r7a.metal-48xl": { + "ap-northeast-1": 17.74984, + "eu-central-1": 17.74984, + "eu-north-1": 15.6628, + "eu-south-2": 0.0, + "eu-west-1": 16.47496, + "us-east-1": 14.7364, + "us-east-2": 0.0, + "us-west-2": 14.7364 + }, + "r7a.2xlarge": { + "ap-northeast-1": 0.93758, + "eu-central-1": 0.0, + "eu-north-1": 0.84192, + "eu-south-2": 0.87914, + "eu-west-1": 0.0, + "us-east-1": 0.79946, + "us-east-2": 0.0, + "us-west-2": 0.79946 + }, + "r7a.4xlarge": { + "ap-northeast-1": 1.59832, + "eu-central-1": 1.59832, + "eu-north-1": 1.55384, + "eu-south-2": 1.49208, + "eu-west-1": 1.62829, + "us-east-1": 0.0, + "us-east-2": 1.3472, + "us-west-2": 1.3472 + }, + "r7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 2.5644, + "us-east-2": 2.5644, + "us-west-2": 0.0 + }, + "r7a.12xlarge": { + "ap-northeast-1": 4.97546, + "eu-central-1": 4.53496, + "eu-north-1": 4.0132, + "eu-south-2": 4.21624, + "eu-west-1": 4.21624, + "us-east-1": 4.14676, + "us-east-2": 0.0, + "us-west-2": 3.7816 + }, + "r7a.16xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 6.59061, + "eu-north-1": 0.0, + "eu-south-2": 5.57832, + "eu-west-1": 0.0, + "us-east-1": 4.9988, + "us-east-2": 5.48568, + "us-west-2": 4.9988 + }, + "r7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 9.82091, + "eu-north-1": 7.8964, + "eu-south-2": 8.30248, + "eu-west-1": 8.30248, + "us-east-1": 8.16352, + "us-east-2": 8.16352, + "us-west-2": 8.16352 + }, + "r7a.32xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 13.05122, + "eu-north-1": 10.4852, + "eu-south-2": 11.02664, + "eu-west-1": 12.1163, + "us-east-1": 9.8676, + "us-east-2": 9.8676, + "us-west-2": 9.8676 + }, + "r7a.48xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 17.74984, + "eu-north-1": 15.6628, + "eu-south-2": 16.47496, + "eu-west-1": 0.0, + "us-east-1": 14.7364, + "us-east-2": 14.7364, + "us-west-2": 14.7364 + }, "r7g.medium": { "ap-northeast-1": 0.1246, + "ap-northeast-2": 0.1287, + "ap-south-1": 0.0999, + "ap-south-2": 0.0999, + "ap-southeast-1": 0.1287, "ap-southeast-2": 0.1282, + "ca-central-1": 0.0, "eu-central-1": 0.1246, - "eu-west-1": 0.1237, + "eu-north-1": 0.0, + "eu-south-2": 0.1237, + "eu-west-1": 0.1199, + "eu-west-2": 0.1229, "us-east-1": 0.1169, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.1136 }, "r7g.large": { "ap-northeast-1": 0.1973, - "ap-southeast-2": 0.1964, - "eu-central-1": 0.1973, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.1671, - "us-west-2": 0.1671 + "ap-northeast-2": 0.1973, + "ap-south-1": 0.1351, + "ap-south-2": 0.1351, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.1884, + "ca-central-1": 0.1773, + "eu-central-1": 0.1892, + "eu-north-1": 0.1739, + "eu-south-2": 0.1873, + "eu-west-1": 0.1799, + "eu-west-2": 0.1858, + "us-east-1": 0.1738, + "us-east-2": 0.0, + "us-west-1": 0.1865, + "us-west-2": 0.0 }, "r7g.xlarge": { "ap-northeast-1": 0.3347, - "ap-southeast-2": 0.3329, + "ap-northeast-2": 0.3346, + "ap-south-1": 0.2196, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.3184, + "eu-north-1": 0.0, + "eu-south-2": 0.2996, "eu-west-1": 0.2997, + "eu-west-2": 0.0, "us-east-1": 0.2877, "us-east-2": 0.0, - "us-west-2": 0.2877 + "us-west-1": 0.298, + "us-west-2": 0.0 }, "r7g.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.2644, + "ap-northeast-2": 4.2644, + "ap-south-1": 2.5326, + "ap-south-2": 0.0, + "ap-southeast-1": 4.2644, "ap-southeast-2": 4.2375, + "ca-central-1": 0.0, "eu-central-1": 4.2644, + "eu-north-1": 3.7748, + "eu-south-2": 0.0, "eu-west-1": 3.9652, + "eu-west-2": 0.0, "us-east-1": 3.5572, "us-east-2": 3.5572, + "us-west-1": 0.0, "us-west-2": 3.5572 }, "r7g.2xlarge": { - "ap-northeast-1": 0.6794, + "ap-northeast-1": 0.6468, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.4491, + "ap-southeast-1": 0.6794, "ap-southeast-2": 0.6434, + "ca-central-1": 0.6288, "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-west-2": 0.0, + "us-east-1": 0.5584, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.606, + "us-west-2": 0.5584 }, "r7g.4xlarge": { - "ap-northeast-1": 1.2287, + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.2286, + "ap-south-1": 0.7682, + "ap-south-2": 0.7683, + "ap-southeast-1": 1.2287, "ap-southeast-2": 1.1569, - "eu-central-1": 1.2287, + "ca-central-1": 1.1277, + "eu-central-1": 1.1636, + "eu-north-1": 0.0, + "eu-south-2": 1.1488, "eu-west-1": 0.0, + "eu-west-2": 1.1999, "us-east-1": 1.0408, "us-east-2": 1.0408, + "us-west-1": 1.142, "us-west-2": 0.0 }, "r7g.8xlarge": { - "ap-northeast-1": 2.1972, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.4065, + "ap-south-2": 0.0, + "ap-southeast-1": 2.3274, "ap-southeast-2": 2.313, - "eu-central-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 1.9516, - "us-west-2": 1.9516 + "ca-central-1": 2.0068, + "eu-central-1": 2.3274, + "eu-north-1": 2.0617, + "eu-south-2": 2.1676, + "eu-west-1": 2.0476, + "eu-west-2": 0.0, + "us-east-1": 1.8436, + "us-east-2": 1.8436, + "us-west-1": 2.034, + "us-west-2": 1.8436 }, "r7g.12xlarge": { - "ap-northeast-1": 3.4262, + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.2308, + "ap-south-1": 0.0, + "ap-south-2": 2.0449, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.2106, + "ca-central-1": 3.123, "eu-central-1": 3.2308, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 3.1876, - "us-east-1": 2.7004, + "eu-west-2": 3.1492, + "us-east-1": 2.8623, "us-east-2": 2.7004, + "us-west-1": 0.0, "us-west-2": 2.7004 }, "r7g.16xlarge": { "ap-northeast-1": 4.2644, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 4.2644, "ap-southeast-2": 4.2375, - "eu-central-1": 4.2644, - "eu-west-1": 0.0, - "us-east-1": 3.5572, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 3.9636, + "eu-west-1": 3.9652, + "eu-west-2": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 3.938, "us-west-2": 3.5572 }, "r7gd.medium": { + "ap-northeast-1": 0.1422, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1471, + "ap-southeast-2": 0.143, + "eu-central-1": 0.1417, + "eu-north-1": 0.1318, + "eu-south-2": 0.1401, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.128, + "us-west-1": 0.1365, "us-west-2": 0.128 }, "r7gd.large": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.2343, + "ap-south-1": 0.148, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.2333, + "eu-north-1": 0.2036, + "eu-south-2": 0.2112, + "eu-west-1": 0.2203, "us-east-1": 0.0, "us-east-2": 0.2042, + "us-west-1": 0.2131, "us-west-2": 0.1961 }, "r7gd.xlarge": { + "ap-northeast-1": 0.4086, + "ap-south-1": 0.236, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.3645, + "eu-south-2": 0.3624, "eu-west-1": 0.0, "us-east-1": 0.3485, "us-east-2": 0.3485, + "us-west-1": 0.3846, "us-west-2": 0.3322 }, - "r7gd.2xlarge": { - "eu-west-1": 0.7348, - "us-east-1": 0.7069, - "us-east-2": 0.7069, - "us-west-2": 0.6743 - }, - "r7gd.4xlarge": { - "eu-west-1": 1.4122, + "r7gd.metal": { + "ap-northeast-1": 5.3918, + "ap-south-1": 0.0, + "ap-southeast-1": 5.3918, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 4.7265, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 4.4846, + "us-east-2": 4.4846, + "us-west-1": 0.0, + "us-west-2": 4.4846 + }, + "r7gd.2xlarge": { + "ap-northeast-1": 0.8272, + "ap-south-1": 0.0, + "ap-southeast-1": 0.8272, + "ap-southeast-2": 0.794, + "eu-central-1": 0.8232, + "eu-north-1": 0.0, + "eu-south-2": 0.7711, + "eu-west-1": 0.7711, + "us-east-1": 0.7069, + "us-east-2": 0.7069, + "us-west-1": 0.7424, + "us-west-2": 0.7069 + }, + "r7gd.4xlarge": { + "ap-northeast-1": 1.5244, + "ap-south-1": 0.8762, + "ap-southeast-1": 1.5244, + "ap-southeast-2": 1.458, + "eu-central-1": 0.0, + "eu-north-1": 1.2791, + "eu-south-2": 1.3396, + "eu-west-1": 1.4122, "us-east-1": 1.2186, - "us-east-2": 1.2838, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7gd.8xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 2.7609, + "ap-southeast-2": 2.7859, + "eu-central-1": 2.9027, + "eu-north-1": 2.4282, + "eu-south-2": 2.5492, "eu-west-1": 2.6944, "us-east-1": 2.4376, "us-east-2": 2.4376, + "us-west-1": 2.7264, "us-west-2": 0.0 }, "r7gd.12xlarge": { + "ap-northeast-1": 4.0763, + "ap-south-1": 2.3687, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.8884, + "eu-central-1": 0.0, + "eu-north-1": 3.5774, + "eu-south-2": 3.7588, "eu-west-1": 0.0, - "us-east-1": 3.3959, - "us-east-2": 0.0, + "us-east-1": 3.5914, + "us-east-2": 3.3959, + "us-west-1": 0.0, "us-west-2": 3.3959 }, "r7gd.16xlarge": { + "ap-northeast-1": 5.3918, + "ap-south-1": 2.946, + "ap-southeast-1": 5.3918, + "ap-southeast-2": 5.1412, + "eu-central-1": 5.3615, + "eu-north-1": 4.7265, + "eu-south-2": 4.9684, "eu-west-1": 0.0, "us-east-1": 4.4846, "us-east-2": 0.0, + "us-west-1": 5.0289, "us-west-2": 4.4846 }, + "r7i.large": { + "ap-northeast-1": 0.2196, + "ap-northeast-2": 0.23556, + "ap-south-1": 0.21015, + "ap-southeast-1": 0.2196, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.2196, + "ca-central-1": 0.0, + "eu-central-1": 0.23556, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.22286, + "eu-west-2": 0.2154, + "eu-west-3": 0.2154, + "sa-east-1": 0.0, + "us-east-1": 0.20553, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.23441, + "us-west-1": 0.0, + "us-west-2": 0.20553 + }, + "r7i.xlarge": { + "ap-northeast-1": 0.41112, + "ap-northeast-2": 0.0, + "ap-south-1": 0.3603, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.3771, + "ap-southeast-3": 0.3792, + "ca-central-1": 0.37878, + "eu-central-1": 0.3792, + "eu-north-1": 0.36954, + "eu-south-2": 0.3561, + "eu-west-1": 0.38571, + "eu-west-2": 0.3708, + "eu-west-3": 0.3708, + "sa-east-1": 0.0, + "us-east-1": 0.3246, + "us-east-2": 0.35106, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.3771, + "us-west-1": 0.0, + "us-west-2": 0.35106 + }, + "r7i.metal-24xl": { + "ap-northeast-1": 7.7908, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 7.7908, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 7.7908, + "eu-north-1": 6.8836, + "eu-south-2": 7.2364, + "eu-west-1": 7.94704, + "eu-west-2": 7.5892, + "eu-west-3": 7.5892, + "sa-east-1": 10.2604, + "us-east-1": 6.4804, + "us-east-2": 7.11544, + "us-gov-east-1": 0.0, + "us-gov-west-1": 7.7404, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "r7i.metal-48xl": { + "ap-northeast-1": 15.4516, + "ap-northeast-2": 15.4516, + "ap-south-1": 13.234, + "ap-southeast-1": 15.4516, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 14.0404, + "eu-central-1": 15.4516, + "eu-north-1": 13.6372, + "eu-south-2": 0.0, + "eu-west-1": 14.3428, + "eu-west-2": 0.0, + "eu-west-3": 15.0484, + "sa-east-1": 0.0, + "us-east-1": 12.8308, + "us-east-2": 12.8308, + "us-gov-east-1": 15.3508, + "us-gov-west-1": 15.3508, + "us-west-1": 14.242, + "us-west-2": 0.0 + }, + "r7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.676, + "ap-southeast-1": 0.83224, + "ap-southeast-2": 0.7642, + "ap-southeast-3": 0.0, + "ca-central-1": 0.7096, + "eu-central-1": 0.83224, + "eu-north-1": 0.0, + "eu-south-2": 0.7222, + "eu-west-1": 0.78142, + "eu-west-2": 0.7516, + "eu-west-3": 0.81376, + "sa-east-1": 0.9742, + "us-east-1": 0.71212, + "us-east-2": 0.71212, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.82762, + "us-west-1": 0.0, + "us-west-2": 0.71212 + }, + "r7i.4xlarge": { + "ap-northeast-1": 1.4068, + "ap-northeast-2": 1.53448, + "ap-south-1": 1.3312, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.52524, + "ap-southeast-3": 0.0, + "ca-central-1": 1.2892, + "eu-central-1": 0.0, + "eu-north-1": 1.36816, + "eu-south-2": 1.43284, + "eu-west-1": 1.3144, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 1.8184, + "us-east-1": 1.29424, + "us-east-2": 1.29424, + "us-gov-east-1": 1.3984, + "us-gov-west-1": 1.3984, + "us-west-1": 1.4236, + "us-west-2": 1.29424 + }, + "r7i.8xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.93896, + "ap-south-1": 2.314, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.92048, + "ap-southeast-3": 2.6836, + "ca-central-1": 2.68024, + "eu-central-1": 0.0, + "eu-north-1": 2.60632, + "eu-south-2": 2.73568, + "eu-west-1": 0.0, + "eu-west-2": 2.86504, + "eu-west-3": 2.6164, + "sa-east-1": 3.5068, + "us-east-1": 2.2468, + "us-east-2": 2.2468, + "us-gov-east-1": 2.92048, + "us-gov-west-1": 0.0, + "us-west-1": 2.482, + "us-west-2": 0.0 + }, + "r7i.12xlarge": { + "ap-northeast-1": 3.9604, + "ap-northeast-2": 4.34344, + "ap-south-1": 3.406, + "ap-southeast-1": 4.34344, + "ap-southeast-2": 4.31572, + "ap-southeast-3": 0.0, + "ca-central-1": 3.6076, + "eu-central-1": 3.9604, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 4.23256, + "sa-east-1": 5.70172, + "us-east-1": 3.62272, + "us-east-2": 3.62272, + "us-gov-east-1": 3.9352, + "us-gov-west-1": 3.9352, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "r7i.16xlarge": { + "ap-northeast-1": 5.2372, + "ap-northeast-2": 5.74792, + "ap-south-1": 4.9348, + "ap-southeast-1": 5.2372, + "ap-southeast-2": 5.2036, + "ap-southeast-3": 0.0, + "ca-central-1": 5.23048, + "eu-central-1": 0.0, + "eu-north-1": 5.08264, + "eu-south-2": 5.34136, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 6.8836, + "us-east-1": 4.3636, + "us-east-2": 4.3636, + "us-gov-east-1": 5.2036, + "us-gov-west-1": 0.0, + "us-west-1": 4.834, + "us-west-2": 0.0 + }, + "r7i.24xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 8.55688, + "ap-south-1": 7.3372, + "ap-southeast-1": 7.7908, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 7.55896, + "eu-south-2": 7.94704, + "eu-west-1": 7.2364, + "eu-west-2": 7.5892, + "eu-west-3": 0.0, + "sa-east-1": 11.27344, + "us-east-1": 6.4804, + "us-east-2": 0.0, + "us-gov-east-1": 7.7404, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 6.4804 + }, + "r7i.48xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 15.4516, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 15.4516, + "ca-central-1": 14.0404, + "eu-central-1": 0.0, + "eu-north-1": 13.6372, + "eu-south-2": 14.3428, + "eu-west-1": 14.3428, + "eu-west-2": 15.0484, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 12.8308, + "us-east-2": 0.0, + "us-gov-east-1": 15.3508, + "us-gov-west-1": 0.0, + "us-west-1": 14.242, + "us-west-2": 12.8308 + }, + "r7iz.large": { + "ap-northeast-1": 0.3097, + "eu-central-1": 0.285, + "eu-west-1": 0.268, + "us-east-1": 0.246, + "us-east-2": 0.0, + "us-west-2": 0.2646 + }, + "r7iz.xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.555, + "eu-west-1": 0.5176, + "us-east-1": 0.432, + "us-east-2": 0.432, + "us-west-2": 0.432 + }, + "r7iz.metal-16xl": { + "ap-northeast-1": 0.0, + "eu-central-1": 7.33, + "eu-west-1": 6.786, + "us-east-1": 0.0, + "us-east-2": 6.6772, + "us-west-2": 0.0 + }, + "r7iz.metal-32xl": { + "ap-northeast-1": 16.1108, + "eu-central-1": 0.0, + "eu-west-1": 13.442, + "us-east-1": 13.2244, + "us-east-2": 13.2244, + "us-west-2": 12.034 + }, + "r7iz.2xlarge": { + "ap-northeast-1": 1.038, + "eu-central-1": 1.03, + "eu-west-1": 0.0, + "us-east-1": 0.9484, + "us-east-2": 0.9484, + "us-west-2": 0.874 + }, + "r7iz.4xlarge": { + "ap-northeast-1": 2.1276, + "eu-central-1": 1.93, + "eu-west-1": 1.794, + "us-east-1": 1.618, + "us-east-2": 1.618, + "us-west-2": 1.7668 + }, + "r7iz.8xlarge": { + "ap-northeast-1": 3.762, + "eu-central-1": 3.73, + "eu-west-1": 3.458, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 5.122, + "us-east-1": 4.594, + "us-east-2": 4.594, + "us-west-2": 0.0 + }, + "r7iz.16xlarge": { + "ap-northeast-1": 7.394, + "eu-central-1": 8.05, + "eu-west-1": 0.0, + "us-east-1": 6.082, + "us-east-2": 0.0, + "us-west-2": 6.082 + }, + "r7iz.32xlarge": { + "ap-northeast-1": 16.1108, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 13.2244, + "us-west-2": 0.0 + }, "t1.micro": { "ap-northeast-1": 0.086, "ap-southeast-1": 0.08, @@ -59370,20 +65206,21 @@ "ap-east-1": 0.0, "ap-northeast-1": 0.0745, "ap-northeast-2": 0.0737, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.0744, "ap-south-1": 0.0712, "ap-south-2": 0.0712, - "ap-southeast-1": 0.074, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0732, + "ap-southeast-2": 0.0741, "ap-southeast-3": 0.0732, - "ap-southeast-4": 0.074, + "ap-southeast-4": 0.0, "ca-central-1": 0.0716, + "ca-west-1": 0.0, "eu-central-1": 0.0728, "eu-central-2": 0.0, "eu-north-1": 0.0708, "eu-south-1": 0.0727, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.0722, "eu-west-2": 0.0718, "eu-west-3": 0.0718, "il-central-1": 0.0, @@ -59391,7 +65228,7 @@ "me-south-1": 0.0, "sa-east-1": 0.0777, "us-east-1": 0.0704, - "us-east-2": 0.0, + "us-east-2": 0.0704, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0733, @@ -59400,98 +65237,101 @@ }, "t3.small": { "af-south-1": 0.0887, - "ap-east-1": 0.0, + "ap-east-1": 0.0892, "ap-northeast-1": 0.089, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.086, "ap-northeast-3": 0.0872, "ap-south-1": 0.0824, "ap-south-2": 0.0824, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.088, "ap-southeast-2": 0.0881, "ap-southeast-3": 0.0864, "ap-southeast-4": 0.088, "ca-central-1": 0.0846, + "ca-west-1": 0.0846, "eu-central-1": 0.0856, "eu-central-2": 0.0864, - "eu-north-1": 0.0816, + "eu-north-1": 0.0, "eu-south-1": 0.0854, "eu-south-2": 0.0828, - "eu-west-1": 0.0, + "eu-west-1": 0.0828, "eu-west-2": 0.0836, - "eu-west-3": 0.085, + "eu-west-3": 0.0836, "il-central-1": 0.0, - "me-central-1": 0.0851, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.082, + "us-east-1": 0.0, "us-east-2": 0.0808, "us-gov-east-1": 0.0844, "us-gov-west-1": 0.0844, - "us-west-1": 0.0, + "us-west-1": 0.0848, "us-west-2": 0.0, "us-west-2-lax-1": 0.085 }, "t3.medium": { "af-south-1": 0.1142, "ap-east-1": 0.0, - "ap-northeast-1": 0.1144, - "ap-northeast-2": 0.112, + "ap-northeast-1": 0.1179, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.1048, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 0.1048, + "ap-southeast-1": 0.116, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.1128, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.1113, "eu-central-2": 0.1128, "eu-north-1": 0.0, "eu-south-1": 0.1079, "eu-south-2": 0.1056, "eu-west-1": 0.1056, - "eu-west-2": 0.1072, + "eu-west-2": 0.1104, "eu-west-3": 0.11, "il-central-1": 0.0, "me-central-1": 0.1102, "me-south-1": 0.0, "sa-east-1": 0.1309, "us-east-1": 0.1016, - "us-east-2": 0.0, + "us-east-2": 0.1016, "us-gov-east-1": 0.1088, "us-gov-west-1": 0.0, - "us-west-1": 0.1131, - "us-west-2": 0.0, + "us-west-1": 0.1096, + "us-west-2": 0.1016, "us-west-2-lax-1": 0.1099 }, "t3.large": { - "af-south-1": 0.0, + "af-south-1": 0.175, "ap-east-1": 0.0, - "ap-northeast-1": 0.1759, + "ap-northeast-1": 0.1688, "ap-northeast-2": 0.17, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1688, "ap-south-1": 0.0, "ap-south-2": 0.1496, - "ap-southeast-1": 0.1656, - "ap-southeast-2": 0.1656, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.1656, + "ap-southeast-4": 0.0, "ca-central-1": 0.1528, - "eu-central-1": 0.0, - "eu-central-2": 0.0, + "ca-west-1": 0.1584, + "eu-central-1": 0.1626, + "eu-central-2": 0.1656, "eu-north-1": 0.1464, "eu-south-1": 0.1558, "eu-south-2": 0.1512, - "eu-west-1": 0.1512, + "eu-west-1": 0.1574, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.1558, + "il-central-1": 0.1616, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.1482, + "us-east-1": 0.1432, "us-east-2": 0.1432, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.1576, "us-gov-west-1": 0.1576, "us-west-1": 0.1592, "us-west-2": 0.0, @@ -59501,65 +65341,67 @@ "af-south-1": 0.277, "ap-east-1": 0.0, "ap-northeast-1": 0.2776, - "ap-northeast-2": 0.268, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.2499, - "ap-south-2": 0.0, - "ap-southeast-1": 0.2838, + "ap-south-1": 0.2392, + "ap-south-2": 0.2392, + "ap-southeast-1": 0.2712, "ap-southeast-2": 0.2849, "ap-southeast-3": 0.2712, - "ap-southeast-4": 0.2712, + "ap-southeast-4": 0.2839, "ca-central-1": 0.2567, - "eu-central-1": 0.252, + "ca-west-1": 0.2456, + "eu-central-1": 0.2652, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.2632, - "eu-south-2": 0.0, - "eu-west-1": 0.2424, - "eu-west-2": 0.2615, + "eu-south-2": 0.2424, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.2601, "il-central-1": 0.2632, - "me-central-1": 0.0, + "me-central-1": 0.2606, "me-south-1": 0.0, "sa-east-1": 0.3288, - "us-east-1": 0.2363, + "us-east-1": 0.2264, "us-east-2": 0.2363, "us-gov-east-1": 0.2552, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.2584, "us-west-2": 0.2264, "us-west-2-lax-1": 0.2597 }, "t3.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.59, "ap-east-1": 0.0, "ap-northeast-1": 0.5935, "ap-northeast-2": 0.5699, "ap-northeast-3": 0.5652, - "ap-south-1": 0.4884, + "ap-south-1": 0.5099, "ap-south-2": 0.0, "ap-southeast-1": 0.5524, - "ap-southeast-2": 0.5797, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.5524, "ca-central-1": 0.0, + "ca-west-1": 0.5235, "eu-central-1": 0.5404, - "eu-central-2": 0.0, + "eu-central-2": 0.5524, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 0.5134, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.5195, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.5134, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.697, + "sa-east-1": 0.0, "us-east-1": 0.4827, "us-east-2": 0.4827, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.5204, "us-gov-west-1": 0.5204, - "us-west-1": 0.5268, + "us-west-1": 0.0, "us-west-2": 0.4827, "us-west-2-lax-1": 0.5294 }, @@ -59702,6 +65544,7 @@ "ap-southeast-3": 0.0706, "ap-southeast-4": 0.0706, "ca-central-1": 0.0692, + "ca-west-1": 0.0692, "eu-central-1": 0.0696, "eu-central-2": 0.0706, "eu-north-1": 0.0686, @@ -59734,6 +65577,7 @@ "ap-southeast-3": 0.0812, "ap-southeast-4": 0.0812, "ca-central-1": 0.0784, + "ca-west-1": 0.0784, "eu-central-1": 0.0792, "eu-central-2": 0.0811, "eu-north-1": 0.0772, @@ -59766,6 +65610,7 @@ "ap-southeast-3": 0.1024, "ap-southeast-4": 0.1024, "ca-central-1": 0.0968, + "ca-west-1": 0.0968, "eu-central-1": 0.0984, "eu-central-2": 0.1022, "eu-north-1": 0.0944, @@ -59798,6 +65643,7 @@ "ap-southeast-3": 0.1448, "ap-southeast-4": 0.1448, "ca-central-1": 0.1336, + "ca-west-1": 0.1336, "eu-central-1": 0.1368, "eu-central-2": 0.1445, "eu-north-1": 0.1288, @@ -59830,6 +65676,7 @@ "ap-southeast-3": 0.2296, "ap-southeast-4": 0.2296, "ca-central-1": 0.2072, + "ca-west-1": 0.2072, "eu-central-1": 0.2136, "eu-central-2": 0.229, "eu-north-1": 0.1976, @@ -59862,6 +65709,7 @@ "ap-southeast-3": 0.4692, "ap-southeast-4": 0.4692, "ca-central-1": 0.4244, + "ca-west-1": 0.4244, "eu-central-1": 0.4372, "eu-central-2": 0.4679, "eu-north-1": 0.4052, @@ -59881,6 +65729,24 @@ "us-west-1": 0.45, "us-west-2": 0.3988 }, + "u7i-12tb.224xlarge": { + "us-east-1": 153.01, + "us-west-2": 0.0 + }, + "u7in-16tb.224xlarge": { + "ap-northeast-2": 246.032, + "ap-southeast-2": 244.414, + "us-east-1": 203.97, + "us-west-2": 203.97 + }, + "u7in-24tb.224xlarge": { + "us-east-1": 305.89, + "us-west-2": 305.89 + }, + "u7in-32tb.224xlarge": { + "us-east-1": 407.81, + "us-west-2": 0.0 + }, "u-3tb1.56xlarge": { "ap-northeast-1": 33.0633, "ap-southeast-1": 33.06, @@ -59896,102 +65762,169 @@ "us-west-2": 27.43 }, "u-6tb1.metal": { - "eu-central-2": 0.13 + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, + "ap-south-1": 0.13, + "ap-southeast-1": 0.13, + "ap-southeast-2": 0.13, + "ca-central-1": 0.13, + "eu-central-1": 0.13, + "eu-central-2": 0.13, + "eu-north-1": 0.13, + "eu-south-1": 0.13, + "eu-south-2": 0.13, + "eu-west-1": 0.13, + "eu-west-2": 0.13, + "eu-west-3": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-6tb1.56xlarge": { - "ap-northeast-1": 56.1096, - "ap-northeast-2": 56.1096, - "ap-south-1": 48.00676, - "ap-southeast-1": 56.1096, - "ap-southeast-2": 55.74075, - "ca-central-1": 50.95333, - "eu-central-1": 56.1096, + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, + "ap-south-1": 0.13, + "ap-southeast-1": 0.13, + "ap-southeast-2": 0.13, + "ca-central-1": 0.13, + "eu-central-1": 0.13, "eu-central-2": 0.13, - "eu-north-1": 49.46177, - "eu-south-1": 54.65459, - "eu-west-1": 52.05818, - "eu-west-3": 54.63589, - "sa-east-1": 74.15528, - "us-east-1": 46.53391, - "us-east-2": 46.53391, - "us-gov-east-1": 55.74075, - "us-gov-west-1": 55.74075, - "us-west-2": 46.53391 + "eu-north-1": 0.13, + "eu-south-1": 0.13, + "eu-south-2": 0.13, + "eu-west-1": 0.13, + "eu-west-2": 0.13, + "eu-west-3": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-6tb1.112xlarge": { - "ap-northeast-1": 65.997, - "ap-northeast-2": 65.997, - "ap-south-1": 56.463, - "ap-southeast-1": 65.997, - "ap-southeast-2": 65.563, - "ca-central-1": 59.93, - "eu-central-1": 65.997, + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, + "ap-south-1": 0.13, + "ap-southeast-1": 0.13, + "ap-southeast-2": 0.13, + "ca-central-1": 0.13, + "eu-central-1": 0.13, "eu-central-2": 0.13, - "eu-north-1": 58.175, - "eu-south-1": 64.285, - "eu-west-1": 61.23, - "eu-west-3": 64.263, - "sa-east-1": 87.23, - "us-east-1": 54.73, - "us-east-2": 54.73, - "us-gov-east-1": 65.563, - "us-gov-west-1": 65.563, - "us-west-2": 54.73 + "eu-north-1": 0.13, + "eu-south-1": 0.13, + "eu-south-2": 0.13, + "eu-west-1": 0.13, + "eu-west-2": 0.13, + "eu-west-3": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-9tb1.metal": { + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, "ap-south-2": 0.13, - "us-gov-east-1": 0.13 + "ap-southeast-1": 0.13, + "eu-central-1": 0.13, + "eu-north-1": 0.13, + "eu-west-1": 0.13, + "eu-west-2": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-9tb1.112xlarge": { - "ap-northeast-1": 98.93, + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, "ap-south-2": 0.13, - "ap-southeast-1": 98.93, - "eu-central-1": 98.93, - "eu-west-1": 91.78, - "us-east-1": 82.03, + "ap-southeast-1": 0.13, + "eu-central-1": 0.13, + "eu-north-1": 0.13, + "eu-west-1": 0.13, + "eu-west-2": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, "us-gov-east-1": 0.13, - "us-gov-west-1": 98.28, - "us-west-2": 82.03 + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-12tb1.metal": { - "ap-south-1": 0.13 + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, + "ap-northeast-3": 0.13, + "ap-south-1": 0.13, + "ap-southeast-1": 0.13, + "ap-southeast-2": 0.13, + "eu-central-1": 0.13, + "eu-south-1": 0.13, + "eu-west-1": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 }, "u-12tb1.112xlarge": { - "ap-northeast-1": 131.863, + "ap-northeast-1": 0.13, + "ap-northeast-2": 0.13, + "ap-northeast-3": 0.13, "ap-south-1": 0.13, - "ap-southeast-1": 131.863, - "eu-central-1": 131.863, - "eu-west-1": 122.33, - "sa-east-1": 174.33, - "us-east-1": 109.33, - "us-east-2": 109.33, - "us-gov-east-1": 130.997, - "us-gov-west-1": 130.997, - "us-west-2": 109.33 + "ap-southeast-1": 0.13, + "ap-southeast-2": 0.13, + "eu-central-1": 0.13, + "eu-south-1": 128.44, + "eu-west-1": 0.13, + "sa-east-1": 0.13, + "us-east-1": 0.13, + "us-east-2": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, + "us-west-2": 0.13 + }, + "u-18tb1.metal": { + "eu-west-1": 0.13, + "us-east-1": 0.13, + "us-west-2": 0.13 }, "u-18tb1.112xlarge": { - "eu-west-1": 183.43, - "us-east-1": 163.93, - "us-west-2": 163.93 + "eu-west-1": 0.13, + "us-east-1": 0.13, + "us-west-2": 0.13 }, "u-24tb1.metal": { + "ap-northeast-2": 0.13, + "us-east-1": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, "us-west-2": 0.13 }, "u-24tb1.112xlarge": { - "ap-northeast-2": 263.6, - "us-east-1": 218.53, - "us-gov-east-1": 261.86, - "us-gov-west-1": 261.86, + "ap-northeast-2": 0.13, + "us-east-1": 0.13, + "us-gov-east-1": 0.13, + "us-gov-west-1": 0.13, "us-west-2": 0.13 }, "vt1.3xlarge": { - "ap-northeast-1": 1.03006, - "eu-west-1": 0.86412, + "ap-northeast-1": 0.0, + "eu-west-1": 0.0, "us-east-1": 0.0, - "us-west-2": 0.78 + "us-west-2": 0.0 }, "vt1.6xlarge": { - "ap-northeast-1": 1.93012, + "ap-northeast-1": 0.0, "eu-west-1": 1.74506, "us-east-1": 1.56, "us-west-2": 1.56 @@ -60003,20 +65936,20 @@ "us-west-2": 5.85 }, "x1.16xlarge": { - "af-south-1": 9.654, - "ap-east-1": 0.0, + "af-south-1": 10.606, + "ap-east-1": 10.768, "ap-northeast-1": 9.801, "ap-northeast-2": 9.801, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 9.801, + "ap-south-1": 7.011, "ap-southeast-1": 9.801, "ap-southeast-2": 9.801, - "ca-central-1": 0.0, + "ca-central-1": 8.2, "eu-central-1": 9.467, "eu-west-1": 8.133, "eu-west-2": 8.533, "eu-west-3": 0.0, - "sa-east-1": 14.436, + "sa-east-1": 0.0, "us-east-1": 6.799, "us-east-2": 6.799, "us-gov-east-1": 8.133, @@ -60028,7 +65961,7 @@ "ap-east-1": 21.406, "ap-northeast-1": 19.471, "ap-northeast-2": 19.471, - "ap-northeast-3": 19.472, + "ap-northeast-3": 0.0, "ap-south-1": 13.892, "ap-southeast-1": 19.471, "ap-southeast-2": 19.471, @@ -60036,7 +65969,7 @@ "eu-central-1": 18.804, "eu-west-1": 16.136, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 16.936, "sa-east-1": 26.14, "us-east-1": 13.468, "us-east-2": 13.468, @@ -60045,7 +65978,7 @@ "us-west-2": 13.468 }, "x1e.xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.25, "ap-northeast-1": 0.0, "ap-northeast-2": 1.39, "ap-northeast-3": 0.0, @@ -60054,12 +65987,12 @@ "ap-southeast-2": 1.39, "ca-central-1": 0.0, "eu-central-1": 1.344, - "eu-west-1": 0.0, + "eu-west-1": 1.16, "sa-east-1": 1.686, - "us-east-1": 0.0, + "us-east-1": 0.894, "us-east-2": 0.0, "us-gov-east-1": 1.06, - "us-gov-west-1": 1.06, + "us-gov-west-1": 1.16, "us-west-2": 0.0 }, "x1e.2xlarge": { @@ -60068,56 +66001,56 @@ "ap-northeast-2": 2.548, "ap-northeast-3": 0.0, "ap-south-1": 1.85, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.79, - "ca-central-1": 2.147, - "eu-central-1": 2.697, - "eu-west-1": 2.13, + "ap-southeast-1": 2.79, + "ap-southeast-2": 0.0, + "ca-central-1": 1.964, + "eu-central-1": 2.464, + "eu-west-1": 0.0, "sa-east-1": 3.381, - "us-east-1": 0.0, + "us-east-1": 1.965, "us-east-2": 1.965, "us-gov-east-1": 2.33, "us-gov-west-1": 2.13, "us-west-2": 0.0 }, "x1e.4xlarge": { - "af-south-1": 5.366, + "af-south-1": 4.89, "ap-northeast-1": 4.966, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.966, "ap-northeast-3": 0.0, "ap-south-1": 3.57, "ap-southeast-1": 0.0, "ap-southeast-2": 5.45, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 5.265, "eu-west-1": 4.53, "sa-east-1": 6.632, "us-east-1": 3.466, "us-east-2": 3.466, "us-gov-east-1": 4.53, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-west-1": 4.13, + "us-west-2": 3.466 }, "x1e.8xlarge": { "af-south-1": 9.65, - "ap-northeast-1": 0.0, + "ap-northeast-1": 9.802, "ap-northeast-2": 10.769, "ap-northeast-3": 0.0, "ap-south-1": 7.01, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ca-central-1": 7.464, + "ap-southeast-1": 10.769, + "ap-southeast-2": 9.802, + "ca-central-1": 0.0, "eu-central-1": 10.4, - "eu-west-1": 8.13, + "eu-west-1": 0.0, "sa-east-1": 13.135, "us-east-1": 0.0, - "us-east-2": 7.469, + "us-east-2": 0.0, "us-gov-east-1": 8.13, - "us-gov-west-1": 0.0, - "us-west-2": 6.802 + "us-gov-west-1": 8.13, + "us-west-2": 0.0 }, "x1e.16xlarge": { - "af-south-1": 21.074, + "af-south-1": 19.17, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, @@ -60128,23 +66061,23 @@ "eu-central-1": 20.669, "eu-west-1": 0.0, "sa-east-1": 26.14, - "us-east-1": 14.808, - "us-east-2": 14.808, - "us-gov-east-1": 0.0, - "us-gov-west-1": 17.73, + "us-east-1": 13.474, + "us-east-2": 13.474, + "us-gov-east-1": 17.73, + "us-gov-west-1": 16.13, "us-west-2": 0.0 }, "x1e.32xlarge": { - "af-south-1": 0.0, + "af-south-1": 38.21, "ap-northeast-1": 38.818, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 38.818, + "ap-northeast-3": 38.818, "ap-south-1": 27.65, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 29.468, "eu-central-1": 0.0, - "eu-west-1": 32.13, + "eu-west-1": 0.0, "sa-east-1": 52.149, "us-east-1": 26.818, "us-east-2": 26.818, @@ -60155,11 +66088,11 @@ "x2gd.medium": { "eu-west-1": 0.0, "us-east-1": 0.1435, - "us-east-2": 0.0, + "us-east-2": 0.1435, "us-west-2": 0.1519 }, "x2gd.large": { - "eu-west-1": 0.0, + "eu-west-1": 0.26, "us-east-1": 0.0, "us-east-2": 0.2437, "us-west-2": 0.2437 @@ -60168,17 +66101,17 @@ "eu-west-1": 0.5, "us-east-1": 0.4274, "us-east-2": 0.4274, - "us-west-2": 0.4274 + "us-west-2": 0.0 }, "x2gd.metal": { - "eu-west-1": 7.17, - "us-east-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 6.0084, "us-east-2": 5.474, - "us-west-2": 6.0084 + "us-west-2": 5.474 }, "x2gd.2xlarge": { - "eu-west-1": 0.93, - "us-east-1": 0.8648, + "eu-west-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.8648, "us-west-2": 0.8648 }, @@ -60186,36 +66119,37 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.466 }, "x2gd.8xlarge": { "eu-west-1": 3.65, "us-east-1": 2.802, - "us-east-2": 3.0692, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 2.802 }, "x2gd.12xlarge": { "eu-west-1": 4.93, "us-east-1": 4.5388, - "us-east-2": 0.0, + "us-east-2": 4.138, "us-west-2": 4.5388 }, "x2gd.16xlarge": { - "eu-west-1": 7.17, + "eu-west-1": 6.53, "us-east-1": 6.0084, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-2": 6.0084 }, "x2idn.metal": { + "af-south-1": 0.0, "ap-northeast-1": 19.471, "ap-northeast-2": 19.471, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 19.472, + "ap-south-1": 13.892, "ap-south-2": 0.0, - "ap-southeast-1": 19.471, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 19.471, - "ca-central-1": 0.0, + "ca-central-1": 14.802, "eu-central-1": 0.0, "eu-central-2": 20.6714, "eu-north-1": 15.341, @@ -60234,79 +66168,82 @@ "us-west-2": 0.0 }, "x2idn.16xlarge": { - "ap-northeast-1": 10.76755, - "ap-northeast-2": 9.8005, + "af-south-1": 9.654, + "ap-northeast-1": 0.0, + "ap-northeast-2": 10.76755, "ap-northeast-3": 10.7681, "ap-south-1": 7.6991, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 10.76755, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ca-central-1": 7.466, + "ap-southeast-3": 9.8005, + "ca-central-1": 8.1996, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 7.7355, + "eu-north-1": 8.49605, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 8.533, "eu-west-3": 9.3733, - "me-central-1": 0.0, - "sa-east-1": 14.4355, + "me-central-1": 8.334, + "sa-east-1": 13.135, "us-east-1": 6.799, "us-east-2": 0.0, "us-gov-east-1": 8.9333, - "us-gov-west-1": 8.133, + "us-gov-west-1": 0.0, "us-west-1": 9.667, "us-west-2": 6.799 }, "x2idn.24xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 16.08633, "ap-northeast-2": 16.08633, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-northeast-3": 16.08715, + "ap-south-1": 10.4515, + "ap-south-2": 10.4515, "ap-southeast-1": 0.0, - "ap-southeast-2": 16.08633, + "ap-southeast-2": 14.63575, "ap-southeast-3": 16.08633, "ca-central-1": 11.134, - "eu-central-1": 0.0, + "eu-central-1": 14.1355, "eu-central-2": 17.07666, - "eu-north-1": 11.53825, + "eu-north-1": 12.67908, "eu-south-1": 13.99083, "eu-south-2": 0.0, "eu-west-1": 12.1345, "eu-west-2": 12.7345, - "eu-west-3": 13.99495, + "eu-west-3": 12.7345, "me-central-1": 13.6666, "sa-east-1": 19.6375, - "us-east-1": 0.0, - "us-east-2": 10.1335, - "us-gov-east-1": 12.1345, - "us-gov-west-1": 0.0, - "us-west-1": 13.135, + "us-east-1": 10.1335, + "us-east-2": 11.13385, + "us-gov-east-1": 0.0, + "us-gov-west-1": 13.33495, + "us-west-1": 14.4355, "us-west-2": 11.13385 }, "x2idn.32xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 19.471, - "ap-northeast-2": 0.0, - "ap-northeast-3": 19.472, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-northeast-2": 19.471, + "ap-northeast-3": 0.0, + "ap-south-1": 13.892, + "ap-south-2": 13.892, "ap-southeast-1": 19.471, "ap-southeast-2": 19.471, "ap-southeast-3": 19.471, "ca-central-1": 14.802, "eu-central-1": 0.0, "eu-central-2": 20.6714, - "eu-north-1": 0.0, + "eu-north-1": 15.341, "eu-south-1": 16.931, - "eu-south-2": 0.0, + "eu-south-2": 16.136, "eu-west-1": 16.136, "eu-west-2": 16.936, "eu-west-3": 16.936, "me-central-1": 16.538, - "sa-east-1": 0.0, + "sa-east-1": 26.14, "us-east-1": 13.468, "us-east-2": 13.468, "us-gov-east-1": 0.0, @@ -60315,93 +66252,101 @@ "us-west-2": 13.468 }, "x2iedn.xlarge": { + "af-south-1": 1.2505, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.38969, + "ap-northeast-2": 1.26881, "ap-northeast-3": 1.38976, - "ap-south-1": 0.0, + "ap-south-1": 0.92013, "ap-south-2": 0.0, "ap-southeast-1": 1.38969, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.26881, "ap-southeast-3": 1.26881, "ca-central-1": 0.977, "eu-central-1": 1.22713, "eu-north-1": 0.0, - "eu-south-1": 1.21503, - "eu-west-1": 1.06038, - "eu-west-2": 1.11038, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 1.16041, + "eu-west-2": 0.0, "eu-west-3": 1.21541, "sa-east-1": 1.68563, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 1.16041, + "us-east-1": 0.89363, + "us-east-2": 0.89363, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.16041, "us-west-1": 1.25213, - "us-west-2": 0.0 + "us-west-2": 0.89363 }, "x2iedn.metal": { - "ap-northeast-1": 38.812, + "af-south-1": 38.226, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 27.654, + "ap-northeast-3": 38.814, + "ap-south-1": 27.654, + "ap-south-2": 0.0, "ap-southeast-1": 38.812, "ap-southeast-2": 38.812, "ap-southeast-3": 38.812, "ca-central-1": 29.474, - "eu-central-1": 37.478, + "eu-central-1": 0.0, "eu-north-1": 30.553, "eu-south-1": 33.731, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 33.742, "eu-west-3": 33.742, "sa-east-1": 52.15, - "us-east-1": 26.806, - "us-east-2": 26.806, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 32.142, "us-gov-west-1": 32.142, "us-west-1": 0.0, - "us-west-2": 26.806 + "us-west-2": 0.0 }, "x2iedn.2xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 2.54775, "ap-south-1": 1.85025, "ap-south-2": 2.02228, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.54763, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 2.69768, "eu-north-1": 2.22158, - "eu-south-1": 2.23006, - "eu-west-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 2.13075, "eu-west-2": 0.0, - "eu-west-3": 2.44083, + "eu-west-3": 0.0, "sa-east-1": 0.0, "us-east-1": 1.79725, "us-east-2": 1.79725, "us-gov-east-1": 2.13075, - "us-gov-west-1": 2.33083, + "us-gov-west-1": 2.13075, "us-west-1": 2.2975, "us-west-2": 0.0 }, "x2iedn.4xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 5.44878, - "ap-northeast-2": 4.96525, + "ap-northeast-2": 5.44878, "ap-northeast-3": 4.9655, - "ap-south-1": 3.5705, - "ap-south-2": 3.5705, - "ap-southeast-1": 4.96525, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.96525, "ca-central-1": 0.0, - "eu-central-1": 4.7985, + "eu-central-1": 5.26535, "eu-north-1": 3.93288, "eu-south-1": 4.33013, - "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-south-2": 4.53165, + "eu-west-1": 4.53165, + "eu-west-2": 4.75165, + "eu-west-3": 4.3315, "sa-east-1": 7.28275, "us-east-1": 3.4645, "us-east-2": 3.79795, @@ -60411,104 +66356,112 @@ "us-west-2": 0.0 }, "x2iedn.8xlarge": { + "af-south-1": 10.6064, "ap-northeast-1": 10.76755, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 7.011, + "ap-northeast-2": 10.76755, + "ap-northeast-3": 9.801, + "ap-south-1": 7.011, + "ap-south-2": 7.6991, "ap-southeast-1": 10.76755, - "ap-southeast-2": 0.0, + "ap-southeast-2": 10.76755, "ap-southeast-3": 10.76755, - "ca-central-1": 0.0, + "ca-central-1": 7.466, "eu-central-1": 10.4007, "eu-north-1": 8.49633, "eu-south-1": 8.53025, + "eu-south-2": 8.133, "eu-west-1": 8.133, - "eu-west-2": 0.0, + "eu-west-2": 9.3733, "eu-west-3": 8.533, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 8.133, - "us-west-1": 8.8, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 6.799 }, "x2iedn.16xlarge": { + "af-south-1": 21.0828, "ap-northeast-1": 19.471, - "ap-northeast-2": 0.0, - "ap-northeast-3": 21.4062, + "ap-northeast-2": 21.4051, + "ap-northeast-3": 0.0, "ap-south-1": 15.2682, - "ap-south-2": 0.0, - "ap-southeast-1": 19.471, + "ap-south-2": 13.892, + "ap-southeast-1": 0.0, "ap-southeast-2": 21.4051, - "ap-southeast-3": 21.4051, - "ca-central-1": 16.2692, + "ap-southeast-3": 19.471, + "ca-central-1": 0.0, "eu-central-1": 20.6714, "eu-north-1": 15.3415, "eu-south-1": 16.9305, - "eu-west-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 17.7366, "eu-west-2": 16.936, "eu-west-3": 0.0, "sa-east-1": 28.741, "us-east-1": 14.8018, - "us-east-2": 13.468, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "x2iedn.24xlarge": { + "af-south-1": 31.5592, "ap-northeast-1": 29.1415, "ap-northeast-2": 32.04265, - "ap-northeast-3": 32.0443, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 20.773, "ap-southeast-1": 32.04265, "ap-southeast-2": 32.04265, "ap-southeast-3": 29.1415, "ca-central-1": 24.3388, - "eu-central-1": 0.0, + "eu-central-1": 28.141, "eu-north-1": 0.0, "eu-south-1": 25.33075, + "eu-south-2": 24.139, "eu-west-1": 26.5399, - "eu-west-2": 27.8599, + "eu-west-2": 25.339, "eu-west-3": 25.339, - "sa-east-1": 0.0, + "sa-east-1": 39.145, "us-east-1": 22.1377, "us-east-2": 0.0, "us-gov-east-1": 24.139, - "us-gov-west-1": 26.5399, + "us-gov-west-1": 24.139, "us-west-1": 0.0, "us-west-2": 20.137 }, "x2iedn.32xlarge": { + "af-south-1": 38.226, "ap-northeast-1": 38.812, "ap-northeast-2": 38.812, "ap-northeast-3": 38.814, "ap-south-1": 27.654, "ap-south-2": 27.654, - "ap-southeast-1": 0.0, + "ap-southeast-1": 38.812, "ap-southeast-2": 38.812, "ap-southeast-3": 38.812, "ca-central-1": 29.474, "eu-central-1": 37.478, "eu-north-1": 30.553, "eu-south-1": 33.731, + "eu-south-2": 32.142, "eu-west-1": 32.142, - "eu-west-2": 33.742, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "sa-east-1": 52.15, + "sa-east-1": 0.0, "us-east-1": 26.806, "us-east-2": 26.806, - "us-gov-east-1": 32.142, + "us-gov-east-1": 0.0, "us-gov-west-1": 32.142, - "us-west-1": 0.0, + "us-west-1": 34.81, "us-west-2": 26.806 }, "x2iezn.metal": { - "ap-northeast-1": 14.638, - "eu-west-1": 12.13, + "ap-northeast-1": 0.0, + "eu-west-1": 0.0, "us-east-1": 10.138, "us-west-2": 10.138 }, @@ -60526,7 +66479,7 @@ }, "x2iezn.6xlarge": { "ap-northeast-1": 8.1094, - "eu-west-1": 0.0, + "eu-west-1": 6.73, "us-east-1": 0.0, "us-west-2": 5.134 }, @@ -60547,11 +66500,11 @@ "ap-northeast-2": 0.285, "ap-south-1": 0.268, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.3, - "eu-central-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.299, "eu-west-1": 0.268, "eu-west-2": 0.28, - "us-east-1": 0.257, + "us-east-1": 0.246, "us-east-2": 0.0, "us-west-1": 0.284, "us-west-2": 0.246 @@ -60561,14 +66514,14 @@ "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.539, - "ap-southeast-2": 0.512, - "eu-central-1": 0.537, + "ap-southeast-2": 0.0, + "eu-central-1": 0.51, "eu-west-1": 0.0, "eu-west-2": 0.526, "us-east-1": 0.454, "us-east-2": 0.432, - "us-west-1": 0.508, - "us-west-2": 0.454 + "us-west-1": 0.482, + "us-west-2": 0.432 }, "z1d.metal": { "ap-northeast-1": 5.578, @@ -60576,27 +66529,27 @@ "ap-south-1": 4.834, "ap-southeast-1": 5.554, "ap-southeast-2": 5.554, - "eu-central-1": 5.53, + "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 4.594, - "us-west-1": 0.0, - "us-west-2": 4.594 + "us-west-1": 5.194, + "us-west-2": 0.0 }, "z1d.2xlarge": { - "ap-northeast-1": 1.093, + "ap-northeast-1": 1.038, "ap-northeast-2": 1.084, "ap-south-1": 0.0, "ap-southeast-1": 1.088, - "ap-southeast-2": 1.034, - "eu-central-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.009, + "ap-southeast-2": 0.0, + "eu-central-1": 1.03, + "eu-west-1": 0.962, + "eu-west-2": 0.0, "us-east-1": 0.874, "us-east-2": 0.919, "us-west-1": 0.0, - "us-west-2": 0.874 + "us-west-2": 0.919 }, "z1d.3xlarge": { "ap-northeast-1": 1.575, @@ -60605,24 +66558,24 @@ "ap-southeast-1": 1.486, "ap-southeast-2": 1.568, "eu-central-1": 0.0, - "eu-west-1": 1.454, - "eu-west-2": 1.528, + "eu-west-1": 1.378, + "eu-west-2": 1.448, "us-east-1": 0.0, - "us-east-2": 1.313, + "us-east-2": 0.0, "us-west-1": 1.396, "us-west-2": 0.0 }, "z1d.6xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 2.992, - "ap-south-1": 2.482, + "ap-south-1": 2.623, "ap-southeast-1": 2.842, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 2.83, "eu-west-1": 2.626, - "eu-west-2": 0.0, + "eu-west-2": 2.927, "us-east-1": 0.0, - "us-east-2": 2.496, + "us-east-2": 2.362, "us-west-1": 2.817, "us-west-2": 0.0 }, @@ -60632,46 +66585,46 @@ "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 5.554, - "eu-central-1": 0.0, + "eu-central-1": 5.53, "eu-west-1": 5.122, "eu-west-2": 5.403, "us-east-1": 4.594, "us-east-2": 4.594, - "us-west-1": 5.194, + "us-west-1": 0.0, "us-west-2": 4.594 } }, "ec2_rhel_ha": { "a1.medium": { "ap-northeast-1": 0.0, - "ap-south-1": 0.1205, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-1": 0.122, + "ap-southeast-1": 0.1244, + "ap-southeast-2": 0.1283, "eu-central-1": 0.1241, "eu-west-1": 0.0, "us-east-1": 0.1205, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.122, + "us-west-2": 0.122 }, "a1.large": { "ap-northeast-1": 0.0, "ap-south-1": 0.1491, - "ap-southeast-1": 0.1538, + "ap-southeast-1": 0.1573, "ap-southeast-2": 0.1616, "eu-central-1": 0.1567, "eu-west-1": 0.1526, "us-east-1": 0.1491, "us-east-2": 0.0, - "us-west-2": 0.1491 + "us-west-2": 0.0 }, "a1.xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.197, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.2282, + "ap-southeast-1": 0.2197, + "ap-southeast-2": 0.2362, "eu-central-1": 0.0, "eu-west-1": 0.2102, - "us-east-1": 0.0, + "us-east-1": 0.2031, "us-east-2": 0.197, "us-west-2": 0.2031 }, @@ -60683,77 +66636,77 @@ "eu-central-1": 0.631, "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.573, "us-west-2": 0.0 }, "a1.2xlarge": { - "ap-northeast-1": 0.4372, - "ap-south-1": 0.0, + "ap-northeast-1": 0.4218, + "ap-south-1": 0.3812, "ap-southeast-1": 0.4143, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.4314, "eu-central-1": 0.4118, "eu-west-1": 0.3954, - "us-east-1": 0.369, - "us-east-2": 0.369, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-west-2": 0.3812 }, "a1.4xlarge": { "ap-northeast-1": 0.6786, - "ap-south-1": 0.573, + "ap-south-1": 0.0, "ap-southeast-1": 0.6354, "ap-southeast-2": 0.6978, "eu-central-1": 0.0, "eu-west-1": 0.6258, - "us-east-1": 0.0, + "us-east-1": 0.573, "us-east-2": 0.573, "us-west-2": 0.573 }, "c3.large": { - "ap-northeast-1": 0.236, - "ap-southeast-1": 0.24, + "ap-northeast-1": 0.0, + "ap-southeast-1": 0.227, "ap-southeast-2": 0.227, - "eu-central-1": 0.237, + "eu-central-1": 0.0, "eu-west-1": 0.227, "sa-east-1": 0.0, "us-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.215, + "us-west-1": 0.227, "us-west-2": 0.2 }, "c3.xlarge": { "ap-northeast-1": 0.377, - "ap-southeast-1": 0.359, + "ap-southeast-1": 0.385, "ap-southeast-2": 0.0, - "eu-central-1": 0.353, - "eu-west-1": 0.359, + "eu-central-1": 0.379, + "eu-west-1": 0.0, "sa-east-1": 0.454, - "us-east-1": 0.0, - "us-gov-west-1": 0.347, + "us-east-1": 0.305, + "us-gov-west-1": 0.0, "us-west-1": 0.335, "us-west-2": 0.305 }, "c3.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.693, + "ap-southeast-1": 0.746, "ap-southeast-2": 0.746, "eu-central-1": 0.733, "eu-west-1": 0.0, - "sa-east-1": 0.817, + "sa-east-1": 0.882, "us-east-1": 0.585, "us-gov-west-1": 0.0, - "us-west-1": 0.693, + "us-west-1": 0.645, "us-west-2": 0.627 }, "c3.4xlarge": { "ap-northeast-1": 1.291, - "ap-southeast-1": 1.327, - "ap-southeast-2": 1.221, + "ap-southeast-1": 1.221, + "ap-southeast-2": 1.327, "eu-central-1": 1.197, "eu-west-1": 1.125, "sa-east-1": 1.599, "us-east-1": 1.089, "us-gov-west-1": 0.0, - "us-west-1": 1.221, + "us-west-1": 0.0, "us-west-2": 1.005 }, "c3.8xlarge": { @@ -60765,92 +66718,92 @@ "sa-east-1": 2.773, "us-east-1": 1.845, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 2.085, "us-west-2": 0.0 }, "c4.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.209, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.205, - "ap-southeast-1": 0.222, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.225, - "ca-central-1": 0.205, - "eu-central-1": 0.0, - "eu-west-1": 0.0, + "ca-central-1": 0.216, + "eu-central-1": 0.22, + "eu-west-1": 0.219, "eu-west-2": 0.214, "sa-east-1": 0.25, - "us-east-1": 0.205, + "us-east-1": 0.195, "us-east-2": 0.195, "us-gov-west-1": 0.227, "us-west-1": 0.219, - "us-west-2": 0.0 + "us-west-2": 0.205 }, "c4.xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.346, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-1": 0.347, + "ap-northeast-2": 0.323, + "ap-northeast-3": 0.347, + "ap-south-1": 0.315, "ap-southeast-1": 0.325, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.355, "ca-central-1": 0.315, "eu-central-1": 0.346, - "eu-west-1": 0.0, + "eu-west-1": 0.344, "eu-west-2": 0.357, "sa-east-1": 0.0, "us-east-1": 0.295, "us-east-2": 0.315, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.359, "us-west-1": 0.0, "us-west-2": 0.0 }, "c4.2xlarge": { "ap-northeast-1": 0.719, "ap-northeast-2": 0.667, - "ap-northeast-3": 0.719, + "ap-northeast-3": 0.669, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.685, - "ca-central-1": 0.605, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.662, - "eu-west-2": 0.641, + "eu-west-2": 0.689, "sa-east-1": 0.785, "us-east-1": 0.565, "us-east-2": 0.0, - "us-gov-west-1": 0.693, + "us-gov-west-1": 0.645, "us-west-1": 0.0, - "us-west-2": 0.565 + "us-west-2": 0.0 }, "c4.4xlarge": { - "ap-northeast-1": 1.274, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.965, + "ap-south-1": 1.045, "ap-southeast-1": 0.0, "ap-southeast-2": 1.309, - "ca-central-1": 1.133, - "eu-central-1": 0.0, + "ca-central-1": 1.045, + "eu-central-1": 1.168, "eu-west-1": 1.069, "eu-west-2": 1.117, "sa-east-1": 1.405, "us-east-1": 0.0, "us-east-2": 0.965, - "us-gov-west-1": 1.221, + "us-gov-west-1": 1.125, "us-west-1": 1.256, - "us-west-2": 0.965 + "us-west-2": 0.0 }, "c4.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 1.989, "ap-northeast-3": 2.181, - "ap-south-1": 0.0, + "ap-south-1": 1.765, "ap-southeast-1": 2.005, - "ap-southeast-2": 2.245, + "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 1.989, "eu-west-1": 1.973, - "eu-west-2": 2.069, + "eu-west-2": 0.0, "sa-east-1": 2.645, "us-east-1": 0.0, "us-east-2": 0.0, @@ -60859,25 +66812,26 @@ "us-west-2": 1.765 }, "c5.large": { - "af-south-1": 0.209, + "af-south-1": 0.216, "ap-east-1": 0.203, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.202, + "ap-northeast-2": 0.197, "ap-northeast-3": 0.208, - "ap-south-1": 0.0, + "ap-south-1": 0.185, "ap-south-2": 0.185, - "ap-southeast-1": 0.193, + "ap-southeast-1": 0.199, "ap-southeast-2": 0.0, "ap-southeast-3": 0.199, - "ap-southeast-4": 0.206, + "ap-southeast-4": 0.213, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.202, + "ca-west-1": 0.188, + "eu-central-1": 0.198, + "eu-central-2": 0.0, "eu-north-1": 0.186, "eu-south-1": 0.0, "eu-south-2": 0.197, "eu-west-1": 0.191, - "eu-west-2": 0.196, + "eu-west-2": 0.0, "eu-west-3": 0.202, "il-central-1": 0.202, "me-central-1": 0.0, @@ -60885,44 +66839,45 @@ "sa-east-1": 0.234, "us-east-1": 0.185, "us-east-2": 0.185, - "us-gov-east-1": 0.197, + "us-gov-east-1": 0.203, "us-gov-west-1": 0.0, - "us-west-1": 0.201, + "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 0.197 + "us-west-2-lax-1": 0.203 }, "c5.xlarge": { "af-south-1": 0.337, "ap-east-1": 0.311, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.322, "ap-northeast-2": 0.299, "ap-northeast-3": 0.322, - "ap-south-1": 0.275, - "ap-south-2": 0.275, + "ap-south-1": 0.265, + "ap-south-2": 0.0, "ap-southeast-1": 0.291, "ap-southeast-2": 0.33, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.292, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.308, - "eu-north-1": 0.277, + "eu-central-2": 0.321, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.299, + "eu-south-2": 0.287, "eu-west-1": 0.287, "eu-west-2": 0.309, - "eu-west-3": 0.297, + "eu-west-3": 0.0, "il-central-1": 0.309, - "me-central-1": 0.319, + "me-central-1": 0.0, "me-south-1": 0.306, - "sa-east-1": 0.373, + "sa-east-1": 0.357, "us-east-1": 0.275, - "us-east-2": 0.0, - "us-gov-east-1": 0.299, + "us-east-2": 0.265, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.32, - "us-west-2": 0.265, - "us-west-2-lax-1": 0.299 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.0 }, "c5.metal": { "af-south-1": 0.0, @@ -60930,15 +66885,16 @@ "ap-northeast-1": 5.301, "ap-northeast-2": 4.773, "ap-northeast-3": 0.0, - "ap-south-1": 4.245, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 4.869, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.493, - "ap-southeast-3": 4.869, + "ap-southeast-3": 0.0, "ap-southeast-4": 5.493, "ca-central-1": 4.629, - "eu-central-1": 0.0, - "eu-central-2": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 4.821, + "eu-central-2": 5.287, "eu-north-1": 4.533, "eu-south-1": 5.013, "eu-south-2": 4.773, @@ -60949,10 +66905,10 @@ "me-central-1": 5.234, "me-south-1": 5.234, "sa-east-1": 6.453, - "us-east-1": 0.0, + "us-east-1": 4.245, "us-east-2": 0.0, "us-gov-east-1": 5.061, - "us-gov-west-1": 0.0, + "us-gov-west-1": 5.061, "us-west-1": 5.253, "us-west-2": 0.0, "us-west-2-lax-1": 5.061 @@ -60964,112 +66920,116 @@ "ap-northeast-2": 0.572, "ap-northeast-3": 0.593, "ap-south-1": 0.505, - "ap-south-2": 0.505, + "ap-south-2": 0.0, "ap-southeast-1": 0.557, "ap-southeast-2": 0.636, "ap-southeast-3": 0.557, - "ap-southeast-4": 0.609, + "ap-southeast-4": 0.636, "ca-central-1": 0.0, + "ca-west-1": 0.559, "eu-central-1": 0.0, "eu-central-2": 0.592, - "eu-north-1": 0.529, + "eu-north-1": 0.0, "eu-south-1": 0.569, - "eu-south-2": 0.572, - "eu-west-1": 0.0, - "eu-west-2": 0.593, + "eu-south-2": 0.0, + "eu-west-1": 0.549, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 0.587, "me-south-1": 0.587, "sa-east-1": 0.72, - "us-east-1": 0.525, + "us-east-1": 0.505, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.573, - "us-west-1": 0.589, + "us-gov-east-1": 0.597, + "us-gov-west-1": 0.0, + "us-west-1": 0.614, "us-west-2": 0.505, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.573 }, "c5.4xlarge": { "af-south-1": 1.077, - "ap-east-1": 0.0, + "ap-east-1": 1.081, "ap-northeast-1": 1.021, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.072, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.886, "ap-south-2": 0.845, "ap-southeast-1": 0.996, "ap-southeast-2": 1.106, "ap-southeast-3": 0.949, - "ap-southeast-4": 1.053, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.954, "eu-central-1": 0.988, "eu-central-2": 1.07, - "eu-north-1": 0.893, - "eu-south-1": 0.973, - "eu-south-2": 0.0, - "eu-west-1": 0.933, - "eu-west-2": 0.973, - "eu-west-3": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.933, + "eu-west-1": 0.0, + "eu-west-2": 1.021, + "eu-west-3": 0.973, "il-central-1": 0.971, - "me-central-1": 0.0, - "me-south-1": 1.06, + "me-central-1": 1.06, + "me-south-1": 1.01, "sa-east-1": 1.213, - "us-east-1": 0.0, + "us-east-1": 0.886, "us-east-2": 0.845, - "us-gov-east-1": 0.981, - "us-gov-west-1": 1.03, - "us-west-1": 1.064, + "us-gov-east-1": 1.03, + "us-gov-west-1": 0.981, + "us-west-1": 0.0, "us-west-2": 0.845, "us-west-2-lax-1": 1.03 }, "c5.9xlarge": { "af-south-1": 2.217, "ap-east-1": 2.109, - "ap-northeast-1": 2.207, + "ap-northeast-1": 2.091, "ap-northeast-2": 1.893, - "ap-northeast-3": 2.207, + "ap-northeast-3": 0.0, "ap-south-1": 1.787, - "ap-south-2": 1.787, + "ap-south-2": 0.0, "ap-southeast-1": 1.929, "ap-southeast-2": 2.163, - "ap-southeast-3": 1.929, - "ap-southeast-4": 2.163, + "ap-southeast-3": 0.0, + "ap-southeast-4": 2.283, "ca-central-1": 1.939, + "ca-west-1": 0.0, "eu-central-1": 2.016, "eu-central-2": 2.201, "eu-north-1": 1.803, - "eu-south-1": 0.0, + "eu-south-1": 1.983, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 1.893, "eu-west-2": 1.983, - "eu-west-3": 0.0, - "il-central-1": 2.088, + "eu-west-3": 2.092, + "il-central-1": 0.0, "me-central-1": 2.18, - "me-south-1": 2.18, + "me-south-1": 0.0, "sa-east-1": 2.664, "us-east-1": 1.695, - "us-east-2": 1.787, - "us-gov-east-1": 2.111, + "us-east-2": 1.695, + "us-gov-east-1": 2.001, "us-gov-west-1": 0.0, - "us-west-1": 2.187, - "us-west-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 1.787, "us-west-2-lax-1": 2.001 }, "c5.12xlarge": { - "af-south-1": 3.065, + "af-south-1": 2.901, "ap-east-1": 2.757, "ap-northeast-1": 0.0, "ap-northeast-2": 2.469, "ap-northeast-3": 2.733, "ap-south-1": 2.327, - "ap-south-2": 2.205, + "ap-south-2": 2.327, "ap-southeast-1": 2.658, - "ap-southeast-2": 2.829, + "ap-southeast-2": 2.989, "ap-southeast-3": 2.658, "ap-southeast-4": 2.829, "ca-central-1": 2.397, - "eu-central-1": 2.633, + "ca-west-1": 0.0, + "eu-central-1": 2.493, "eu-central-2": 2.879, "eu-north-1": 2.349, "eu-south-1": 2.589, @@ -61077,82 +67037,84 @@ "eu-west-1": 2.469, "eu-west-2": 0.0, "eu-west-3": 2.589, - "il-central-1": 2.729, + "il-central-1": 2.584, "me-central-1": 2.851, "me-south-1": 2.699, - "sa-east-1": 3.309, - "us-east-1": 2.327, + "sa-east-1": 3.498, + "us-east-1": 0.0, "us-east-2": 2.327, "us-gov-east-1": 2.613, - "us-gov-west-1": 2.76, + "us-gov-west-1": 2.613, "us-west-1": 0.0, "us-west-2": 2.205, "us-west-2-lax-1": 2.613 }, "c5.18xlarge": { - "af-south-1": 0.0, + "af-south-1": 4.269, "ap-east-1": 4.053, - "ap-northeast-1": 4.017, + "ap-northeast-1": 0.0, "ap-northeast-2": 3.621, "ap-northeast-3": 4.017, "ap-south-1": 3.225, - "ap-south-2": 0.0, + "ap-south-2": 3.225, "ap-southeast-1": 3.693, "ap-southeast-2": 4.161, "ap-southeast-3": 0.0, "ap-southeast-4": 4.161, "ca-central-1": 3.513, + "ca-west-1": 3.513, "eu-central-1": 3.657, "eu-central-2": 4.006, "eu-north-1": 0.0, "eu-south-1": 3.801, - "eu-south-2": 0.0, + "eu-south-2": 3.621, "eu-west-1": 3.621, "eu-west-2": 3.801, - "eu-west-3": 0.0, - "il-central-1": 0.0, + "eu-west-3": 3.801, + "il-central-1": 3.794, "me-central-1": 3.967, "me-south-1": 0.0, "sa-east-1": 4.881, "us-east-1": 0.0, "us-east-2": 3.225, - "us-gov-east-1": 3.837, + "us-gov-east-1": 0.0, "us-gov-west-1": 3.837, "us-west-1": 3.981, "us-west-2": 3.225, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 3.837 }, "c5.24xlarge": { "af-south-1": 5.637, "ap-east-1": 5.349, "ap-northeast-1": 5.301, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.301, "ap-south-1": 4.245, "ap-south-2": 4.245, "ap-southeast-1": 4.869, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.493, "ap-southeast-3": 4.869, "ap-southeast-4": 5.493, "ca-central-1": 4.629, - "eu-central-1": 4.821, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 4.533, "eu-south-1": 5.013, "eu-south-2": 4.773, - "eu-west-1": 4.773, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 5.013, - "il-central-1": 0.0, + "il-central-1": 5.003, "me-central-1": 5.234, "me-south-1": 5.234, "sa-east-1": 6.453, "us-east-1": 4.245, "us-east-2": 4.245, "us-gov-east-1": 5.061, - "us-gov-west-1": 0.0, - "us-west-1": 5.253, - "us-west-2": 4.245, + "us-gov-west-1": 5.061, + "us-west-1": 0.0, + "us-west-2": 0.0, "us-west-2-lax-1": 5.061 }, "c5a.large": { @@ -61454,25 +67416,25 @@ "c5d.large": { "af-south-1": 0.233, "ap-east-1": 0.218, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.224, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.2, + "ap-northeast-3": 0.217, + "ap-south-1": 0.194, "ap-south-2": 0.194, "ap-southeast-1": 0.207, - "ap-southeast-2": 0.229, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.221, + "ap-southeast-3": 0.214, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.206, + "eu-central-1": 0.213, "eu-central-2": 0.224, "eu-north-1": 0.205, - "eu-south-1": 0.216, + "eu-south-1": 0.0, "eu-south-2": 0.204, - "eu-west-1": 0.211, + "eu-west-1": 0.204, "eu-west-2": 0.217, "eu-west-3": 0.0, - "il-central-1": 0.216, + "il-central-1": 0.0, "me-central-1": 0.215, "me-south-1": 0.215, "sa-east-1": 0.244, @@ -61492,19 +67454,19 @@ "ap-south-1": 0.0, "ap-south-2": 0.305, "ap-southeast-1": 0.319, - "ap-southeast-2": 0.362, + "ap-southeast-2": 0.347, "ap-southeast-3": 0.332, "ap-southeast-4": 0.347, "ca-central-1": 0.307, - "eu-central-1": 0.0, - "eu-central-2": 0.354, + "eu-central-1": 0.33, + "eu-central-2": 0.0, "eu-north-1": 0.303, - "eu-south-1": 0.323, + "eu-south-1": 0.0, "eu-south-2": 0.326, - "eu-west-1": 0.326, + "eu-west-1": 0.313, "eu-west-2": 0.325, - "eu-west-3": 0.339, - "il-central-1": 0.0, + "eu-west-3": 0.325, + "il-central-1": 0.324, "me-central-1": 0.349, "me-south-1": 0.335, "sa-east-1": 0.393, @@ -61520,19 +67482,19 @@ "ap-northeast-1": 6.021, "ap-northeast-2": 5.445, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 4.917, "ap-south-2": 0.0, "ap-southeast-1": 5.541, "ap-southeast-2": 6.213, "ap-southeast-3": 5.541, "ap-southeast-4": 6.213, - "ca-central-1": 5.253, + "ca-central-1": 0.0, "eu-central-1": 5.493, - "eu-central-2": 6.026, + "eu-central-2": 0.0, "eu-north-1": 5.157, "eu-south-1": 5.637, - "eu-south-2": 0.0, - "eu-west-1": 5.397, + "eu-south-2": 5.397, + "eu-west-1": 0.0, "eu-west-2": 5.685, "il-central-1": 5.659, "me-central-1": 5.92, @@ -61547,15 +67509,15 @@ "af-south-1": 0.716, "ap-east-1": 0.657, "ap-northeast-1": 0.653, - "ap-northeast-2": 0.605, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.653, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.613, + "ap-south-2": 0.561, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.64, "ap-southeast-4": 0.669, - "ca-central-1": 0.589, + "ca-central-1": 0.614, "eu-central-1": 0.0, "eu-central-2": 0.653, "eu-north-1": 0.0, @@ -61565,99 +67527,99 @@ "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.623, - "me-central-1": 0.0, + "me-central-1": 0.645, "me-south-1": 0.645, "sa-east-1": 0.761, "us-east-1": 0.572, "us-east-2": 0.572, "us-gov-east-1": 0.629, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.674, "us-west-2": 0.572 }, "c5d.4xlarge": { "af-south-1": 0.0, "ap-east-1": 1.149, "ap-northeast-1": 1.141, - "ap-northeast-2": 1.098, - "ap-northeast-3": 1.2, - "ap-south-1": 0.957, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 1.005, "ap-south-2": 0.0, "ap-southeast-1": 1.115, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 1.233, + "ap-southeast-3": 1.115, + "ap-southeast-4": 1.173, "ca-central-1": 1.064, "eu-central-1": 1.106, - "eu-central-2": 1.2, - "eu-north-1": 0.997, + "eu-central-2": 0.0, + "eu-north-1": 1.047, "eu-south-1": 1.077, "eu-south-2": 1.037, "eu-west-1": 1.037, - "eu-west-2": 0.0, + "eu-west-2": 1.14, "eu-west-3": 1.14, "il-central-1": 1.081, "me-central-1": 1.124, - "me-south-1": 1.124, + "me-south-1": 0.0, "sa-east-1": 1.429, - "us-east-1": 0.0, + "us-east-1": 0.979, "us-east-2": 0.933, "us-gov-east-1": 1.149, "us-gov-west-1": 0.0, "us-west-1": 1.125, - "us-west-2": 0.933 + "us-west-2": 0.0 }, "c5d.9xlarge": { - "af-south-1": 2.645, + "af-south-1": 0.0, "ap-east-1": 2.379, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-1": 2.361, + "ap-northeast-2": 2.264, + "ap-northeast-3": 2.493, "ap-south-1": 0.0, - "ap-south-2": 2.054, + "ap-south-2": 1.947, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 2.302, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.569, "ca-central-1": 2.073, "eu-central-1": 2.163, - "eu-central-2": 0.0, - "eu-north-1": 2.149, + "eu-central-2": 2.495, + "eu-north-1": 2.037, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 2.245, - "eu-west-2": 2.235, + "eu-west-2": 2.359, "eu-west-3": 2.235, "il-central-1": 2.349, - "me-central-1": 2.453, + "me-central-1": 0.0, "me-south-1": 2.323, - "sa-east-1": 2.847, + "sa-east-1": 0.0, "us-east-1": 1.997, "us-east-2": 1.893, "us-gov-east-1": 0.0, "us-gov-west-1": 2.378, - "us-west-1": 2.455, + "us-west-1": 0.0, "us-west-2": 1.893 }, "c5d.12xlarge": { "af-south-1": 3.285, "ap-northeast-1": 3.093, "ap-northeast-2": 2.805, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.093, "ap-south-1": 0.0, "ap-south-2": 2.684, "ap-southeast-1": 2.853, - "ap-southeast-2": 3.189, + "ap-southeast-2": 0.0, "ap-southeast-3": 3.014, - "ap-southeast-4": 3.189, + "ap-southeast-4": 3.37, "ca-central-1": 2.862, "eu-central-1": 2.829, "eu-central-2": 0.0, "eu-north-1": 2.661, - "eu-south-1": 3.065, + "eu-south-1": 2.901, "eu-south-2": 2.781, - "eu-west-1": 2.781, - "eu-west-2": 2.925, + "eu-west-1": 0.0, + "eu-west-2": 3.091, "il-central-1": 3.077, "me-central-1": 3.215, "sa-east-1": 3.741, @@ -61668,31 +67630,31 @@ "us-west-2": 2.469 }, "c5d.18xlarge": { - "af-south-1": 4.845, + "af-south-1": 0.0, "ap-east-1": 4.593, "ap-northeast-1": 4.557, - "ap-northeast-2": 4.125, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.557, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 3.729, "ap-southeast-1": 4.197, - "ap-southeast-2": 4.701, + "ap-southeast-2": 0.0, "ap-southeast-3": 4.197, "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 3.909, "eu-south-1": 4.269, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 4.305, - "eu-west-3": 4.305, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 4.481, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "me-south-1": 4.481, + "sa-east-1": 5.529, + "us-east-1": 3.621, "us-east-2": 3.621, "us-gov-east-1": 4.341, "us-gov-west-1": 0.0, @@ -61704,68 +67666,68 @@ "ap-northeast-1": 6.021, "ap-northeast-2": 5.445, "ap-northeast-3": 6.021, - "ap-south-1": 5.202, - "ap-south-2": 4.917, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 5.541, - "ap-southeast-2": 0.0, + "ap-southeast-2": 6.213, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "ca-central-1": 5.558, + "ap-southeast-4": 6.576, + "ca-central-1": 0.0, "eu-central-1": 5.493, - "eu-central-2": 6.026, + "eu-central-2": 0.0, "eu-north-1": 5.157, - "eu-south-1": 5.965, - "eu-south-2": 0.0, + "eu-south-1": 5.637, + "eu-south-2": 5.397, "eu-west-1": 5.711, - "eu-west-2": 5.685, + "eu-west-2": 0.0, "il-central-1": 5.659, - "me-central-1": 0.0, + "me-central-1": 5.92, "sa-east-1": 7.317, "us-east-1": 4.773, "us-east-2": 4.773, - "us-gov-west-1": 5.733, + "us-gov-west-1": 0.0, "us-west-1": 5.925, "us-west-2": 4.773 }, "c5n.large": { "af-south-1": 0.0, - "ap-east-1": 0.247, - "ap-northeast-1": 0.231, + "ap-east-1": 0.238, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.224, "ap-northeast-3": 0.239, - "ap-south-1": 0.209, - "ap-southeast-1": 0.219, + "ap-south-1": 0.0, + "ap-southeast-1": 0.226, "ap-southeast-2": 0.244, "ap-southeast-3": 0.0, "ca-central-1": 0.22, - "eu-central-1": 0.225, - "eu-north-1": 0.211, + "eu-central-1": 0.218, + "eu-north-1": 0.218, "eu-south-1": 0.224, "eu-west-1": 0.0, "eu-west-2": 0.231, "eu-west-3": 0.223, "me-south-1": 0.229, - "sa-east-1": 0.0, + "sa-east-1": 0.261, "us-east-1": 0.209, - "us-east-2": 0.203, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.233, + "us-east-2": 0.209, + "us-gov-east-1": 0.225, + "us-gov-west-1": 0.0, "us-west-1": 0.23, - "us-west-2": 0.209 + "us-west-2": 0.0 }, "c5n.xlarge": { "af-south-1": 0.385, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.339, - "ap-northeast-3": 0.367, + "ap-northeast-3": 0.383, "ap-south-1": 0.324, "ap-southeast-1": 0.358, "ap-southeast-2": 0.394, "ap-southeast-3": 0.343, "ca-central-1": 0.345, "eu-central-1": 0.341, - "eu-north-1": 0.327, + "eu-north-1": 0.341, "eu-south-1": 0.353, "eu-west-1": 0.354, "eu-west-2": 0.366, @@ -61773,16 +67735,16 @@ "me-south-1": 0.363, "sa-east-1": 0.447, "us-east-1": 0.324, - "us-east-2": 0.311, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.365, - "us-west-2": 0.311 + "us-gov-west-1": 0.371, + "us-west-1": 0.0, + "us-west-2": 0.324 }, "c5n.metal": { "af-south-1": 5.392, "ap-east-1": 5.313, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.061, "ap-northeast-2": 4.557, "ap-northeast-3": 0.0, "ap-south-1": 4.053, @@ -61807,28 +67769,28 @@ }, "c5n.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.737, + "ap-east-1": 0.771, "ap-northeast-1": 0.742, "ap-northeast-2": 0.653, - "ap-northeast-3": 0.742, - "ap-south-1": 0.623, + "ap-northeast-3": 0.709, + "ap-south-1": 0.597, "ap-southeast-1": 0.661, "ap-southeast-2": 0.729, "ap-southeast-3": 0.0, - "ca-central-1": 0.665, + "ca-central-1": 0.637, "eu-central-1": 0.687, "eu-north-1": 0.0, "eu-south-1": 0.681, - "eu-west-1": 0.682, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.677, "me-south-1": 0.701, - "sa-east-1": 0.0, + "sa-east-1": 0.869, "us-east-1": 0.623, - "us-east-2": 0.597, + "us-east-2": 0.623, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.716, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.705, "us-west-2": 0.597 }, "c5n.4xlarge": { @@ -61837,20 +67799,20 @@ "ap-northeast-1": 1.253, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 1.157, + "ap-south-1": 1.081, + "ap-southeast-1": 1.217, "ap-southeast-2": 1.293, "ap-southeast-3": 0.0, - "ca-central-1": 1.166, + "ca-central-1": 1.109, "eu-central-1": 1.149, "eu-north-1": 0.0, "eu-south-1": 1.197, - "eu-west-1": 1.141, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 1.189, "eu-west-3": 1.189, "me-south-1": 1.237, "sa-east-1": 1.573, - "us-east-1": 1.029, + "us-east-1": 0.0, "us-east-2": 1.081, "us-gov-east-1": 1.205, "us-gov-west-1": 1.267, @@ -61860,44 +67822,44 @@ "c5n.9xlarge": { "af-south-1": 2.779, "ap-east-1": 2.739, - "ap-northeast-1": 2.613, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.493, "ap-northeast-3": 2.76, - "ap-south-1": 2.109, + "ap-south-1": 0.0, "ap-southeast-1": 2.531, - "ap-southeast-2": 2.703, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.531, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-central-1": 2.512, + "eu-north-1": 2.253, "eu-south-1": 2.487, "eu-west-1": 2.493, "eu-west-2": 0.0, "eu-west-3": 2.469, "me-south-1": 2.577, - "sa-east-1": 0.0, + "sa-east-1": 3.153, "us-east-1": 2.226, "us-east-2": 2.226, "us-gov-east-1": 2.645, "us-gov-west-1": 2.645, - "us-west-1": 2.741, - "us-west-2": 2.109 + "us-west-1": 2.595, + "us-west-2": 0.0 }, "c5n.18xlarge": { "af-south-1": 5.392, "ap-east-1": 5.313, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.061, "ap-northeast-2": 4.557, "ap-northeast-3": 5.061, - "ap-south-1": 0.0, + "ap-south-1": 4.053, "ap-southeast-1": 4.629, - "ap-southeast-2": 5.241, + "ap-southeast-2": 0.0, "ap-southeast-3": 4.629, "ca-central-1": 4.413, "eu-central-1": 4.593, "eu-north-1": 4.341, "eu-south-1": 4.809, - "eu-west-1": 0.0, + "eu-west-1": 4.557, "eu-west-2": 4.773, "eu-west-3": 4.773, "me-south-1": 4.989, @@ -61912,36 +67874,39 @@ "c6a.large": { "ap-northeast-1": 0.0, "ap-south-1": 0.14643, - "ap-southeast-1": 0.19202, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.20489, + "ca-central-1": 0.18707, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.18529, "eu-west-2": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.1715, - "us-west-1": 0.1904, - "us-west-2": 0.0 + "sa-east-1": 0.22469, + "us-east-1": 0.17915, + "us-east-2": 0.0, + "us-west-1": 0.19994, + "us-west-2": 0.1715 }, "c6a.xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-1": 0.30686, + "ap-south-1": 0.19785, + "ap-southeast-1": 0.2714, "ap-southeast-2": 0.31478, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.28706, "eu-west-1": 0.27558, "eu-west-2": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 0.0, + "us-east-2": 0.2633, + "us-west-1": 0.30488, "us-west-2": 0.2633 }, "c6a.metal": { "ap-northeast-1": 0.0, "ap-south-1": 4.653, - "ap-southeast-1": 0.0, + "ap-southeast-1": 8.6322, "ap-southeast-2": 9.7554, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 8.04468, "eu-west-2": 0.0, @@ -61949,29 +67914,31 @@ "us-east-1": 7.509, "us-east-2": 7.509, "us-west-1": 0.0, - "us-west-2": 7.509 + "us-west-2": 0.0 }, "c6a.2xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 0.352, "ap-southeast-1": 0.55308, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 0.49332, - "eu-west-2": 0.0, + "ca-central-1": 0.4998, + "eu-central-1": 0.54912, + "eu-west-1": 0.52615, + "eu-west-2": 0.56496, "sa-east-1": 0.6366, - "us-east-1": 0.5016, - "us-east-2": 0.5016, + "us-east-1": 0.471, + "us-east-2": 0.471, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6a.4xlarge": { "ap-northeast-1": 0.9354, - "ap-south-1": 0.0, + "ap-south-1": 0.539, "ap-southeast-1": 0.0, "ap-southeast-2": 1.04412, - "eu-central-1": 0.8634, - "eu-west-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.8873, "eu-west-2": 0.0, "sa-east-1": 0.0, "us-east-1": 0.8382, @@ -61980,296 +67947,316 @@ "us-west-2": 0.777 }, "c6a.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.85988, "ap-south-1": 0.913, - "ap-southeast-1": 1.5762, + "ap-southeast-1": 1.71732, "ap-southeast-2": 1.92324, - "eu-central-1": 1.70148, + "ca-central-1": 1.63812, + "eu-central-1": 1.5618, "eu-west-1": 0.0, - "eu-west-2": 1.6194, - "sa-east-1": 2.24004, + "eu-west-2": 1.76484, + "sa-east-1": 0.0, "us-east-1": 1.389, - "us-east-2": 0.0, + "us-east-2": 1.5114, "us-west-1": 1.84404, "us-west-2": 1.5114 }, "c6a.12xlarge": { "ap-northeast-1": 2.4762, - "ap-south-1": 1.3992, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 2.49348, "ap-southeast-2": 2.5626, + "ca-central-1": 2.37468, "eu-central-1": 2.2602, - "eu-west-1": 2.13492, + "eu-west-1": 2.33191, "eu-west-2": 0.0, "sa-east-1": 0.0, - "us-east-1": 2.1846, + "us-east-1": 2.001, "us-east-2": 0.0, - "us-west-1": 2.4546, + "us-west-1": 0.0, "us-west-2": 2.001 }, "c6a.16xlarge": { "ap-northeast-1": 3.2466, - "ap-south-1": 1.8106, - "ap-southeast-1": 2.9874, - "ap-southeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.68148, + "ca-central-1": 2.8434, "eu-central-1": 3.23796, "eu-west-1": 2.79156, - "eu-west-2": 3.0738, + "eu-west-2": 0.0, "sa-east-1": 0.0, "us-east-1": 2.613, "us-east-2": 2.613, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.613 }, "c6a.24xlarge": { "ap-northeast-1": 4.7874, "ap-south-1": 2.409, - "ap-southeast-1": 4.82196, + "ap-southeast-1": 4.3986, "ap-southeast-2": 4.9602, + "ca-central-1": 4.58436, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 4.5282, "sa-east-1": 5.8242, - "us-east-1": 0.0, - "us-east-2": 3.837, + "us-east-1": 3.837, + "us-east-2": 0.0, "us-west-1": 4.7442, "us-west-2": 3.837 }, "c6a.32xlarge": { - "ap-northeast-1": 6.3282, - "ap-south-1": 3.157, + "ap-northeast-1": 0.0, + "ap-south-1": 3.4562, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 7.19796, + "ca-central-1": 6.05748, "eu-central-1": 5.7522, "eu-west-1": 0.0, "eu-west-2": 5.9826, - "sa-east-1": 8.46516, + "sa-east-1": 7.7106, "us-east-1": 5.061, "us-east-2": 5.5506, "us-west-1": 0.0, "us-west-2": 5.061 }, "c6a.48xlarge": { - "ap-northeast-1": 9.4098, + "ap-northeast-1": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 8.6322, "ap-southeast-2": 9.7554, + "ca-central-1": 8.2002, "eu-central-1": 8.5458, "eu-west-1": 8.04468, "eu-west-2": 8.8914, - "sa-east-1": 0.0, + "sa-east-1": 11.4834, "us-east-1": 7.509, - "us-east-2": 7.509, - "us-west-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 9.3234, "us-west-2": 7.509 }, "c6g.medium": { + "af-south-1": 0.1406, "ap-east-1": 0.138, "ap-northeast-1": 0.1378, - "ap-northeast-2": 0.1358, + "ap-northeast-2": 0.1335, "ap-northeast-3": 0.0, "ap-south-1": 0.1163, "ap-south-2": 0.1176, "ap-southeast-1": 0.1342, "ap-southeast-2": 0.1421, - "ap-southeast-3": 0.1366, - "ap-southeast-4": 0.1394, - "ca-central-1": 0.1344, - "eu-central-1": 0.1361, + "ap-southeast-3": 0.1342, + "ap-southeast-4": 0.0, + "ca-central-1": 0.1322, + "ca-west-1": 0.1322, + "eu-central-1": 0.1338, "eu-central-2": 0.1402, - "eu-north-1": 0.1337, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.1338, + "eu-south-2": 0.1315, "eu-west-1": 0.1338, - "eu-west-2": 0.0, + "eu-west-2": 0.1378, "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 0.1401, "sa-east-1": 0.1474, "us-east-1": 0.131, "us-east-2": 0.131, - "us-gov-east-1": 0.1382, + "us-gov-east-1": 0.1358, "us-gov-west-1": 0.1382, "us-west-1": 0.1399, - "us-west-2": 0.0 + "us-west-2": 0.129 }, "c6g.large": { - "ap-east-1": 0.181, - "ap-northeast-1": 0.1806, + "af-south-1": 0.1862, + "ap-east-1": 0.1862, + "ap-northeast-1": 0.1857, "ap-northeast-2": 0.0, "ap-northeast-3": 0.181, - "ap-south-1": 0.1376, + "ap-south-1": 0.0, "ap-south-2": 0.1376, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.1891, - "ap-southeast-3": 0.1781, + "ap-southeast-2": 0.1838, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.1838, "ca-central-1": 0.1739, - "eu-central-1": 0.0, - "eu-central-2": 0.1804, + "ca-west-1": 0.1694, + "eu-central-1": 0.1726, + "eu-central-2": 0.0, "eu-north-1": 0.1724, - "eu-south-1": 0.1758, + "eu-south-1": 0.0, "eu-south-2": 0.1726, - "eu-west-1": 0.0, + "eu-west-1": 0.168, "eu-west-2": 0.1758, - "eu-west-3": 0.176, + "eu-west-3": 0.0, "il-central-1": 0.1716, "me-central-1": 0.0, "me-south-1": 0.1851, "sa-east-1": 0.1998, "us-east-1": 0.163, "us-east-2": 0.1671, - "us-gov-east-1": 0.1766, - "us-gov-west-1": 0.1815, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.1766, + "us-west-1": 0.1798, + "us-west-2": 0.163 }, "c6g.xlarge": { + "af-south-1": 0.0, "ap-east-1": 0.267, "ap-northeast-1": 0.2765, "ap-northeast-2": 0.0, "ap-northeast-3": 0.267, - "ap-south-1": 0.0, + "ap-south-1": 0.1802, "ap-south-2": 0.1853, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2833, "ap-southeast-3": 0.2518, "ap-southeast-4": 0.0, "ca-central-1": 0.2438, + "ca-west-1": 0.2438, "eu-central-1": 0.2595, "eu-central-2": 0.2657, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 0.2663, "eu-south-2": 0.0, - "eu-west-1": 0.2409, - "eu-west-2": 0.0, + "eu-west-1": 0.2501, + "eu-west-2": 0.2566, "eu-west-3": 0.257, "il-central-1": 0.2482, "me-central-1": 0.0, - "me-south-1": 0.265, - "sa-east-1": 0.3046, - "us-east-1": 0.2392, + "me-south-1": 0.0, + "sa-east-1": 0.3172, + "us-east-1": 0.0, "us-east-2": 0.231, "us-gov-east-1": 0.2582, - "us-gov-west-1": 0.0, - "us-west-1": 0.2646, + "us-gov-west-1": 0.268, + "us-west-1": 0.0, "us-west-2": 0.2392 }, "c6g.metal": { + "af-south-1": 3.0834, "ap-east-1": 2.917, - "ap-northeast-1": 3.0686, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.7762, "ap-northeast-3": 0.0, - "ap-south-1": 1.61, + "ap-south-1": 0.0, "ap-south-2": 1.5282, "ap-southeast-1": 2.8243, - "ap-southeast-2": 3.0066, - "ap-southeast-3": 2.6738, + "ap-southeast-2": 3.1771, + "ap-southeast-3": 0.0, "ap-southeast-4": 3.1771, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 2.5458, + "eu-central-1": 2.7972, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 2.6418, "eu-south-1": 0.0, "eu-south-2": 2.4997, "eu-west-1": 2.4997, - "eu-west-2": 2.7506, - "eu-west-3": 2.757, - "il-central-1": 2.6162, - "me-central-1": 0.0, + "eu-west-2": 2.9057, + "eu-west-3": 2.9106, + "il-central-1": 0.0, + "me-central-1": 2.7333, "me-south-1": 2.885, - "sa-east-1": 0.0, - "us-east-1": 2.4716, - "us-east-2": 2.341, + "sa-east-1": 3.7198, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 2.7762, - "us-west-1": 0.0, + "us-west-1": 2.8786, "us-west-2": 2.341 }, "c6g.2xlarge": { + "af-south-1": 0.5298, "ap-east-1": 0.5298, "ap-northeast-1": 0.5279, "ap-northeast-2": 0.473, - "ap-northeast-3": 0.509, + "ap-northeast-3": 0.0, "ap-south-1": 0.3456, - "ap-south-2": 0.3354, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.5202, "ap-southeast-3": 0.4786, "ap-southeast-4": 0.0, - "ca-central-1": 0.4805, + "ca-central-1": 0.0, + "ca-west-1": 0.4805, "eu-central-1": 0.494, - "eu-central-2": 0.5269, + "eu-central-2": 0.5064, "eu-north-1": 0.0, "eu-south-1": 0.5076, - "eu-south-2": 0.4568, + "eu-south-2": 0.0, "eu-west-1": 0.4568, "eu-west-2": 0.5076, - "eu-west-3": 0.489, - "il-central-1": 0.4714, - "me-central-1": 0.5063, - "me-south-1": 0.5254, + "eu-west-3": 0.5082, + "il-central-1": 0.4907, + "me-central-1": 0.486, + "me-south-1": 0.0, "sa-east-1": 0.5842, "us-east-1": 0.4533, "us-east-2": 0.0, - "us-gov-east-1": 0.4914, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.4914, - "us-west-1": 0.5246, + "us-west-1": 0.0, "us-west-2": 0.4533 }, "c6g.4xlarge": { - "ap-east-1": 0.853, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "af-south-1": 0.9384, + "ap-east-1": 0.8946, + "ap-northeast-1": 0.8909, + "ap-northeast-2": 0.781, "ap-northeast-3": 0.0, "ap-south-1": 0.5058, - "ap-south-2": 0.5058, + "ap-south-2": 0.5262, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.7922, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.918, "ca-central-1": 0.7959, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.8479, - "eu-north-1": 0.0, + "eu-north-1": 0.749, "eu-south-1": 0.8501, - "eu-south-2": 0.0, + "eu-south-2": 0.7855, "eu-west-1": 0.7855, - "eu-west-2": 0.8502, + "eu-west-2": 0.0, "eu-west-3": 0.813, "il-central-1": 0.0, - "me-central-1": 0.8071, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 1.0034, "us-east-1": 0.709, "us-east-2": 0.0, "us-gov-east-1": 0.857, "us-gov-west-1": 0.0, - "us-west-1": 0.8841, + "us-west-1": 0.8434, "us-west-2": 0.0 }, "c6g.8xlarge": { + "af-south-1": 1.7118, "ap-east-1": 1.6242, - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.397, - "ap-northeast-3": 0.0, + "ap-northeast-1": 1.6168, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.6226, "ap-south-1": 0.8466, "ap-south-2": 0.8875, - "ap-southeast-1": 1.4947, + "ap-southeast-1": 1.4194, "ap-southeast-2": 0.0, - "ap-southeast-3": 1.4947, - "ap-southeast-4": 1.671, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 1.4066, - "eu-central-2": 1.5308, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-central-2": 1.6127, + "eu-north-1": 1.4034, + "eu-south-1": 1.5352, "eu-south-2": 1.406, - "eu-west-1": 0.0, - "eu-west-2": 1.4578, - "eu-west-3": 1.5378, - "il-central-1": 1.4679, + "eu-west-1": 1.406, + "eu-west-2": 1.5354, + "eu-west-3": 1.461, + "il-central-1": 0.0, "me-central-1": 1.4492, "me-south-1": 1.6066, "sa-east-1": 1.8418, @@ -62278,40 +68265,43 @@ "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.253 + "us-west-2": 1.3183 }, "c6g.12xlarge": { + "af-south-1": 2.3538, "ap-east-1": 2.229, - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.2194, "ap-northeast-2": 2.013, "ap-northeast-3": 2.3514, "ap-south-1": 1.2487, "ap-south-2": 1.1874, - "ap-southeast-1": 2.1595, + "ap-southeast-1": 2.0466, "ap-southeast-2": 2.4241, "ap-southeast-3": 2.0466, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 2.0274, - "eu-central-2": 2.2136, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 2.3366, "eu-north-1": 2.0226, - "eu-south-1": 2.2204, + "eu-south-1": 0.0, "eu-south-2": 2.0264, "eu-west-1": 1.916, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 2.1193, + "il-central-1": 2.0034, "me-central-1": 0.0, "me-south-1": 2.3274, "sa-east-1": 2.8311, "us-east-1": 1.8949, - "us-east-2": 0.0, + "us-east-2": 1.797, "us-gov-east-1": 2.1234, - "us-gov-west-1": 2.1234, + "us-gov-west-1": 2.2409, "us-west-1": 2.2002, "us-west-2": 1.8949 }, "c6g.16xlarge": { + "af-south-1": 3.0834, "ap-east-1": 2.917, "ap-northeast-1": 2.9042, "ap-northeast-2": 0.0, @@ -62319,23 +68309,24 @@ "ap-south-1": 1.61, "ap-south-2": 1.5282, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.1771, + "ap-southeast-2": 3.0066, "ap-southeast-3": 2.6738, - "ap-southeast-4": 3.0066, + "ap-southeast-4": 0.0, "ca-central-1": 2.6886, + "ca-west-1": 2.5458, "eu-central-1": 2.6482, "eu-central-2": 2.8965, "eu-north-1": 2.6418, - "eu-south-1": 2.7506, - "eu-south-2": 0.0, - "eu-west-1": 2.4997, - "eu-west-2": 2.7506, - "eu-west-3": 0.0, + "eu-south-1": 2.9055, + "eu-south-2": 2.4997, + "eu-west-1": 2.6469, + "eu-west-2": 2.9057, + "eu-west-3": 2.757, "il-central-1": 2.6162, - "me-central-1": 0.0, - "me-south-1": 0.0, + "me-central-1": 2.7333, + "me-south-1": 2.885, "sa-east-1": 0.0, - "us-east-1": 2.4716, + "us-east-1": 0.0, "us-east-2": 2.341, "us-gov-east-1": 0.0, "us-gov-west-1": 2.9329, @@ -62346,12 +68337,13 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.1416, "ap-northeast-3": 0.147, - "ap-south-1": 0.121, + "ap-south-1": 0.1195, "ap-southeast-1": 0.1427, - "ap-southeast-2": 0.1485, + "ap-southeast-2": 0.1455, "ap-southeast-3": 0.0, "ca-central-1": 0.1374, - "eu-central-1": 0.0, + "eu-central-1": 0.1395, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.1438, @@ -62359,6 +68351,8 @@ "sa-east-1": 0.1581, "us-east-1": 0.1357, "us-east-2": 0.1334, + "us-gov-east-1": 0.1414, + "us-gov-west-1": 0.1414, "us-west-1": 0.143, "us-west-2": 0.1357 }, @@ -62368,37 +68362,43 @@ "ap-northeast-3": 0.1989, "ap-south-1": 0.144, "ap-southeast-1": 0.185, - "ap-southeast-2": 0.196, - "ap-southeast-3": 0.0, - "ca-central-1": 0.1798, - "eu-central-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.1904, + "ca-central-1": 0.1849, + "eu-central-1": 0.184, + "eu-central-2": 0.0, "eu-north-1": 0.1832, "eu-west-1": 0.1874, "eu-west-2": 0.0, - "eu-west-3": 0.187, - "sa-east-1": 0.214, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.1764, + "us-gov-east-1": 0.1934, + "us-gov-west-1": 0.1878, "us-west-1": 0.191, - "us-west-2": 0.0 + "us-west-2": 0.1718 }, "c6gd.xlarge": { "ap-northeast-1": 0.291, "ap-northeast-2": 0.2816, "ap-northeast-3": 0.0, - "ap-south-1": 0.1989, - "ap-southeast-1": 0.0, + "ap-south-1": 0.193, + "ap-southeast-1": 0.275, "ap-southeast-2": 0.297, - "ap-southeast-3": 0.275, - "ca-central-1": 0.2748, + "ap-southeast-3": 0.2858, + "ca-central-1": 0.0, "eu-central-1": 0.273, - "eu-north-1": 0.2614, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-west-1": 0.2799, "eu-west-2": 0.279, "eu-west-3": 0.279, - "sa-east-1": 0.3474, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.2578, + "us-gov-east-1": 0.2917, + "us-gov-west-1": 0.0, "us-west-1": 0.287, "us-west-2": 0.2486 }, @@ -62407,31 +68407,35 @@ "ap-northeast-2": 2.981, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.2178, "ap-southeast-2": 3.589, "ap-southeast-3": 3.045, "ca-central-1": 3.0414, "eu-central-1": 3.013, + "eu-central-2": 0.0, "eu-north-1": 2.8274, "eu-west-1": 2.9554, - "eu-west-2": 0.0, + "eu-west-2": 3.109, "eu-west-3": 3.109, "sa-east-1": 0.0, "us-east-1": 2.7701, - "us-east-2": 2.6226, + "us-east-2": 0.0, + "us-gov-east-1": 3.1346, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gd.2xlarge": { "ap-northeast-1": 0.557, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.557, + "ap-northeast-3": 0.5806, "ap-south-1": 0.361, - "ap-southeast-1": 0.525, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.5466, - "ca-central-1": 0.0, - "eu-central-1": 0.521, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.569, + "ap-southeast-3": 0.0, + "ca-central-1": 0.5246, + "eu-central-1": 0.5422, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 0.5347, "eu-west-2": 0.5551, @@ -62439,68 +68443,79 @@ "sa-east-1": 0.6698, "us-east-1": 0.4906, "us-east-2": 0.4722, - "us-west-1": 0.549, + "us-gov-east-1": 0.5585, + "us-gov-west-1": 0.0, + "us-west-1": 0.5722, "us-west-2": 0.0 }, "c6gd.4xlarge": { "ap-northeast-1": 0.9962, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.949, - "ap-south-1": 0.557, - "ap-southeast-1": 0.0, + "ap-northeast-3": 0.9962, + "ap-south-1": 0.5805, + "ap-southeast-1": 0.9282, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.885, + "ap-southeast-3": 0.9282, "ca-central-1": 0.8841, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.8306, - "eu-west-1": 0.9045, - "eu-west-2": 0.0, - "eu-west-3": 0.9452, + "eu-west-1": 0.8626, + "eu-west-2": 0.9452, + "eu-west-3": 0.901, "sa-east-1": 1.117, - "us-east-1": 0.7794, + "us-east-1": 0.0, "us-east-2": 0.8163, - "us-west-1": 0.9794, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.7794 }, "c6gd.8xlarge": { - "ap-northeast-1": 1.733, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.573, "ap-northeast-3": 1.8274, "ap-south-1": 0.0, "ap-southeast-1": 1.605, - "ap-southeast-2": 1.877, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.605, "ca-central-1": 1.6032, "eu-central-1": 1.589, + "eu-central-2": 1.8247, "eu-north-1": 0.0, - "eu-west-1": 1.5602, + "eu-west-1": 0.0, "eu-west-2": 1.637, - "eu-west-3": 1.7253, - "sa-east-1": 2.069, + "eu-west-3": 1.637, + "sa-east-1": 0.0, "us-east-1": 1.4675, "us-east-2": 1.4675, + "us-gov-east-1": 1.6498, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gd.12xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 2.277, - "ap-northeast-3": 2.517, + "ap-northeast-2": 2.4037, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 2.4546, - "ap-southeast-2": 2.589, - "ap-southeast-3": 0.0, + "ap-southeast-1": 2.325, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.4546, "ca-central-1": 2.2002, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-central-2": 2.5146, + "eu-north-1": 2.1618, "eu-west-1": 2.2578, - "eu-west-2": 0.0, + "eu-west-2": 2.373, "eu-west-3": 2.373, "sa-east-1": 3.1938, "us-east-1": 2.0082, - "us-east-2": 0.0, + "us-east-2": 2.1188, + "us-gov-east-1": 2.3922, + "us-gov-west-1": 2.3922, "us-west-1": 2.6082, - "us-west-2": 0.0 + "us-west-2": 2.1188 }, "c6gd.16xlarge": { "ap-northeast-1": 0.0, @@ -62508,86 +68523,101 @@ "ap-northeast-3": 3.301, "ap-south-1": 0.0, "ap-southeast-1": 3.045, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.589, "ap-southeast-3": 3.045, - "ca-central-1": 0.0, + "ca-central-1": 2.8786, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-west-1": 2.9554, + "eu-west-1": 3.1228, "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 3.973, "us-east-1": 2.7701, "us-east-2": 0.0, + "us-gov-east-1": 3.1346, + "us-gov-west-1": 0.0, "us-west-1": 3.4226, - "us-west-2": 2.7701 + "us-west-2": 0.0 }, "c6gn.medium": { - "ap-east-1": 0.15225, + "ap-east-1": 0.0, "ap-northeast-1": 0.15495, "ap-northeast-2": 0.14375, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.1445, "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ca-central-1": 0.14703, + "ca-west-1": 0.14703, "eu-central-1": 0.0, "eu-north-1": 0.14615, "eu-south-1": 0.1466, "eu-west-1": 0.14868, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 0.14625, + "eu-west-3": 0.15138, "il-central-1": 0.15136, - "me-south-1": 0.1486, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.1382, + "us-east-2": 0.0, + "us-gov-east-1": 0.147, + "us-gov-west-1": 0.0, "us-west-1": 0.149, "us-west-2": 0.0 }, "c6gn.large": { "ap-east-1": 0.2095, - "ap-northeast-1": 0.204, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.2149, + "ap-northeast-2": 0.1925, "ap-northeast-3": 0.20422, "ap-south-1": 0.1815, - "ap-southeast-1": 0.194, - "ap-southeast-2": 0.2193, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.208, + "ap-southeast-3": 0.0, "ca-central-1": 0.19906, + "ca-west-1": 0.0, "eu-central-1": 0.1936, "eu-north-1": 0.188, "eu-south-1": 0.0, - "eu-west-1": 0.1926, - "eu-west-2": 0.20775, + "eu-west-1": 0.20236, + "eu-west-2": 0.0, "eu-west-3": 0.20775, "il-central-1": 0.19748, - "me-south-1": 0.21292, - "sa-east-1": 0.2413, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 0.203, - "us-west-2": 0.0 + "me-south-1": 0.2022, + "sa-east-1": 0.0, + "us-east-1": 0.1814, + "us-east-2": 0.19004, + "us-gov-east-1": 0.2094, + "us-gov-west-1": 0.199, + "us-west-1": 0.2138, + "us-west-2": 0.1814 }, "c6gn.xlarge": { - "ap-east-1": 0.3469, + "ap-east-1": 0.324, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.293, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.2922, + "ca-west-1": 0.30312, + "eu-central-1": 0.0, "eu-north-1": 0.2996, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.30972, "eu-west-2": 0.0, "eu-west-3": 0.3205, "il-central-1": 0.32046, "me-south-1": 0.0, - "sa-east-1": 0.361, - "us-east-1": 0.2678, - "us-east-2": 0.28508, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2678, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.3238, "us-west-1": 0.0, "us-west-2": 0.2678 }, @@ -62596,14 +68626,16 @@ "eu-west-3": 3.773 }, "c6gn.2xlarge": { - "ap-east-1": 0.6688, + "ap-east-1": 0.623, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.594, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.5456, - "ap-southeast-1": 0.561, + "ap-southeast-1": 0.6006, "ap-southeast-2": 0.0, + "ap-southeast-3": 0.60148, "ca-central-1": 0.58124, + "ca-west-1": 0.58124, "eu-central-1": 0.0, "eu-north-1": 0.5742, "eu-south-1": 0.5778, @@ -62611,131 +68643,150 @@ "eu-west-2": 0.575, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "me-south-1": 0.63668, + "sa-east-1": 0.7502, "us-east-1": 0.54516, "us-east-2": 0.0, + "us-gov-east-1": 0.6226, + "us-gov-west-1": 0.6226, "us-west-1": 0.0, - "us-west-2": 0.54516 + "us-west-2": 0.5106 }, "c6gn.4xlarge": { "ap-east-1": 1.1726, "ap-northeast-1": 1.037, "ap-northeast-2": 0.945, "ap-northeast-3": 1.03876, - "ap-south-1": 0.857, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 1.0362, "ap-southeast-2": 1.1594, - "ca-central-1": 0.99748, + "ap-southeast-3": 0.9586, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.909, "eu-south-1": 1.07316, - "eu-west-1": 1.02388, - "eu-west-2": 0.985, + "eu-west-1": 0.0, + "eu-west-2": 1.067, "eu-west-3": 0.985, - "il-central-1": 0.0, + "il-central-1": 1.06682, "me-south-1": 0.0, "sa-east-1": 1.229, "us-east-1": 0.8562, "us-east-2": 0.8562, + "us-gov-east-1": 1.0802, + "us-gov-west-1": 0.0, "us-west-1": 1.1154, "us-west-2": 0.0 }, "c6gn.8xlarge": { "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.881, - "ap-northeast-3": 1.91252, - "ap-south-1": 0.0, - "ap-southeast-1": 1.749, + "ap-northeast-1": 1.909, + "ap-northeast-2": 1.725, + "ap-northeast-3": 2.08727, + "ap-south-1": 1.549, + "ap-southeast-1": 1.9074, "ap-southeast-2": 1.973, + "ap-southeast-3": 1.7522, "ca-central-1": 1.82996, + "ca-west-1": 1.6786, "eu-central-1": 1.90036, - "eu-north-1": 1.653, - "eu-south-1": 1.8162, - "eu-west-1": 0.0, + "eu-north-1": 1.8018, + "eu-south-1": 1.98132, + "eu-west-1": 1.7266, "eu-west-2": 1.969, "eu-west-3": 1.805, - "il-central-1": 0.0, + "il-central-1": 1.96865, "me-south-1": 1.8802, "sa-east-1": 0.0, "us-east-1": 1.68564, "us-east-2": 1.5474, - "us-west-1": 1.893, - "us-west-2": 1.68564 + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.829, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c6gn.12xlarge": { "ap-east-1": 3.1878, - "ap-northeast-1": 2.781, + "ap-northeast-1": 3.0426, "ap-northeast-2": 2.505, - "ap-northeast-3": 0.0, - "ap-south-1": 2.241, + "ap-northeast-3": 2.78628, + "ap-south-1": 0.0, "ap-southeast-1": 2.7786, - "ap-southeast-2": 3.1482, + "ap-southeast-2": 2.877, + "ap-southeast-3": 0.0, "ca-central-1": 2.66244, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 2.88948, - "eu-west-1": 2.5074, + "eu-south-1": 2.6418, + "eu-west-1": 2.74164, "eu-west-2": 2.625, "eu-west-3": 2.625, "il-central-1": 0.0, "me-south-1": 2.99508, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 2.2386, + "us-east-2": 2.44596, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.661, "us-west-1": 2.757, "us-west-2": 2.44596 }, "c6gn.16xlarge": { - "ap-east-1": 4.1954, - "ap-northeast-1": 0.0, + "ap-east-1": 3.829, + "ap-northeast-1": 3.653, "ap-northeast-2": 3.285, "ap-northeast-3": 4.00954, "ap-south-1": 0.0, "ap-southeast-1": 3.333, "ap-southeast-2": 3.781, + "ap-southeast-3": 3.3394, "ca-central-1": 3.1922, + "ca-west-1": 0.0, "eu-central-1": 3.63572, - "eu-north-1": 3.4386, + "eu-north-1": 0.0, "eu-south-1": 3.79764, "eu-west-1": 3.2882, "eu-west-2": 0.0, "eu-west-3": 3.445, "il-central-1": 3.44436, - "me-south-1": 3.93844, - "sa-east-1": 4.421, + "me-south-1": 3.5954, + "sa-east-1": 4.8466, "us-east-1": 3.20628, "us-east-2": 3.20628, + "us-gov-east-1": 3.493, + "us-gov-west-1": 0.0, "us-west-1": 3.621, "us-west-2": 3.20628 }, "c6i.large": { "af-south-1": 0.2204, - "ap-east-1": 0.0, + "ap-east-1": 0.203, "ap-northeast-1": 0.202, "ap-northeast-2": 0.191, "ap-northeast-3": 0.202, - "ap-south-1": 0.1885, + "ap-south-1": 0.18, "ap-south-2": 0.18, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.193, + "ap-southeast-2": 0.206, "ca-central-1": 0.0, + "ca-west-1": 0.1973, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 0.186, "eu-south-1": 0.0, "eu-west-1": 0.1862, "eu-west-2": 0.196, "eu-west-3": 0.2061, "il-central-1": 0.19076, "me-south-1": 0.2006, - "sa-east-1": 0.2391, + "sa-east-1": 0.0, "us-east-1": 0.18, "us-east-2": 0.1885, - "us-gov-east-1": 0.2072, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.201, - "us-west-2": 0.18 + "us-west-2": 0.1885 }, "c6i.xlarge": { "af-south-1": 0.3458, @@ -62743,13 +68794,14 @@ "ap-northeast-1": 0.3304, "ap-northeast-2": 0.3062, "ap-northeast-3": 0.3304, - "ap-south-1": 0.0, + "ap-south-1": 0.282, "ap-south-2": 0.282, - "ap-southeast-1": 0.3106, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.317, "ca-central-1": 0.2996, + "ca-west-1": 0.281, "eu-central-1": 0.289, - "eu-north-1": 0.277, + "eu-north-1": 0.0, "eu-south-1": 0.297, "eu-west-1": 0.2774, "eu-west-2": 0.0, @@ -62767,24 +68819,25 @@ "c6i.metal": { "af-south-1": 7.461, "ap-east-1": 7.077, - "ap-northeast-1": 0.0, + "ap-northeast-1": 7.013, "ap-northeast-2": 6.309, "ap-northeast-3": 7.013, "ap-south-1": 5.605, - "ap-south-2": 5.605, + "ap-south-2": 0.0, "ap-southeast-1": 6.437, - "ap-southeast-2": 0.0, + "ap-southeast-2": 7.269, "ca-central-1": 6.117, + "ca-west-1": 6.117, "eu-central-1": 6.373, "eu-north-1": 5.989, - "eu-south-1": 0.0, - "eu-west-1": 6.0018, + "eu-south-1": 6.629, + "eu-west-1": 0.0, "eu-west-2": 6.629, - "eu-west-3": 6.629, - "il-central-1": 6.29364, - "me-south-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 8.549, - "us-east-1": 0.0, + "us-east-1": 5.605, "us-east-2": 5.605, "us-gov-east-1": 6.693, "us-gov-west-1": 6.693, @@ -62792,110 +68845,114 @@ "us-west-2": 5.605 }, "c6i.2xlarge": { - "af-south-1": 0.621, - "ap-east-1": 0.597, + "af-south-1": 0.0, + "ap-east-1": 0.6402, "ap-northeast-1": 0.6358, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.6358, + "ap-northeast-3": 0.0, "ap-south-1": 0.539, "ap-south-2": 0.539, - "ap-southeast-1": 0.557, - "ap-southeast-2": 0.0, - "ca-central-1": 0.5742, - "eu-central-1": 0.0, - "eu-north-1": 0.5654, - "eu-south-1": 0.569, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.6534, + "ca-central-1": 0.0, + "ca-west-1": 0.5742, + "eu-central-1": 0.553, + "eu-north-1": 0.529, + "eu-south-1": 0.6094, "eu-west-1": 0.5298, - "eu-west-2": 0.0, - "eu-west-3": 0.569, - "il-central-1": 0.54804, + "eu-west-2": 0.6094, + "eu-west-3": 0.0, + "il-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.539, "us-east-2": 0.539, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.6138, + "us-gov-east-1": 0.6138, + "us-gov-west-1": 0.573, "us-west-1": 0.589, - "us-west-2": 0.505 + "us-west-2": 0.0 }, "c6i.4xlarge": { - "af-south-1": 1.077, + "af-south-1": 1.1682, "ap-east-1": 1.029, "ap-northeast-1": 1.1066, "ap-northeast-2": 1.0098, "ap-northeast-3": 1.1066, - "ap-south-1": 0.845, - "ap-south-2": 0.0, + "ap-south-1": 0.913, + "ap-south-2": 0.913, "ap-southeast-1": 0.949, "ap-southeast-2": 1.1418, "ca-central-1": 0.909, + "ca-west-1": 0.9834, "eu-central-1": 0.941, "eu-north-1": 0.0, - "eu-south-1": 1.0538, + "eu-south-1": 0.973, "eu-west-1": 0.8946, "eu-west-2": 0.0, - "eu-west-3": 1.0538, + "eu-west-3": 0.973, "il-central-1": 0.93108, "me-south-1": 1.09428, "sa-east-1": 0.0, - "us-east-1": 0.845, + "us-east-1": 0.913, "us-east-2": 0.913, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.981, - "us-west-1": 1.0978, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c6i.8xlarge": { - "af-south-1": 1.989, + "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 1.877, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 1.877, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 1.8898, - "ap-southeast-2": 2.1186, + "ap-south-2": 1.525, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 1.8018, - "eu-central-1": 1.8722, + "ca-west-1": 1.653, + "eu-central-1": 0.0, "eu-north-1": 1.621, "eu-south-1": 1.9426, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 1.781, + "eu-west-3": 1.781, "il-central-1": 1.85038, "me-south-1": 2.02356, "sa-east-1": 0.0, "us-east-1": 1.525, "us-east-2": 1.525, - "us-gov-east-1": 0.0, + "us-gov-east-1": 1.9602, "us-gov-west-1": 1.9602, "us-west-1": 2.0306, - "us-west-2": 1.525 + "us-west-2": 0.0 }, "c6i.12xlarge": { "af-south-1": 0.0, "ap-east-1": 2.757, "ap-northeast-1": 2.733, "ap-northeast-2": 2.6994, - "ap-northeast-3": 2.9898, - "ap-south-1": 2.205, + "ap-northeast-3": 2.733, + "ap-south-1": 0.0, "ap-south-2": 2.409, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.517, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 2.7258, - "eu-north-1": 2.349, - "eu-south-1": 2.589, + "ca-west-1": 2.6202, + "eu-central-1": 2.493, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 2.57268, "eu-west-2": 0.0, - "eu-west-3": 2.589, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-south-1": 2.95284, "sa-east-1": 3.6234, "us-east-1": 2.409, "us-east-2": 2.409, - "us-gov-east-1": 2.8578, - "us-gov-west-1": 2.8578, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 2.409 }, @@ -62903,51 +68960,53 @@ "af-south-1": 3.813, "ap-east-1": 0.0, "ap-northeast-1": 3.9314, - "ap-northeast-2": 3.5442, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.9314, - "ap-south-1": 0.0, + "ap-south-1": 2.885, "ap-south-2": 3.157, - "ap-southeast-1": 3.6146, - "ap-southeast-2": 3.717, + "ap-southeast-1": 3.301, + "ap-southeast-2": 0.0, "ca-central-1": 3.4386, - "eu-central-1": 3.5794, - "eu-north-1": 0.0, - "eu-south-1": 3.397, - "eu-west-1": 3.0834, + "ca-west-1": 3.141, + "eu-central-1": 0.0, + "eu-north-1": 3.3682, + "eu-south-1": 3.7202, + "eu-west-1": 0.0, "eu-west-2": 3.397, - "eu-west-3": 3.397, - "il-central-1": 3.53575, + "eu-west-3": 0.0, + "il-central-1": 3.22932, "me-south-1": 3.88212, "sa-east-1": 4.7762, "us-east-1": 2.885, "us-east-2": 2.885, "us-gov-east-1": 3.429, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.7554, "us-west-1": 3.557, "us-west-2": 0.0 }, "c6i.24xlarge": { - "af-south-1": 6.1842, + "af-south-1": 5.637, "ap-east-1": 5.8674, "ap-northeast-1": 5.301, "ap-northeast-2": 5.2338, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.8146, "ap-south-1": 4.653, - "ap-south-2": 4.245, + "ap-south-2": 0.0, "ap-southeast-1": 5.3394, "ap-southeast-2": 6.0258, - "ca-central-1": 0.0, + "ca-central-1": 4.629, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.9698, - "eu-south-1": 0.0, - "eu-west-1": 4.5426, + "eu-south-1": 5.013, + "eu-west-1": 4.98036, "eu-west-2": 5.4978, "eu-west-3": 5.4978, "il-central-1": 0.0, "me-south-1": 5.74068, - "sa-east-1": 7.0818, + "sa-east-1": 0.0, "us-east-1": 4.653, - "us-east-2": 0.0, + "us-east-2": 4.653, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 5.7618, @@ -62958,12 +69017,13 @@ "ap-east-1": 7.077, "ap-northeast-1": 7.013, "ap-northeast-2": 6.309, - "ap-northeast-3": 0.0, + "ap-northeast-3": 7.013, "ap-south-1": 5.605, "ap-south-2": 0.0, "ap-southeast-1": 6.437, "ap-southeast-2": 7.269, "ca-central-1": 6.117, + "ca-west-1": 6.117, "eu-central-1": 6.373, "eu-north-1": 0.0, "eu-south-1": 6.629, @@ -62973,210 +69033,277 @@ "il-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 8.549, - "us-east-1": 6.149, + "us-east-1": 5.605, "us-east-2": 6.149, "us-gov-east-1": 6.693, - "us-gov-west-1": 6.693, - "us-west-1": 6.949, - "us-west-2": 5.605 + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c6id.large": { - "ap-northeast-1": 0.2231, - "ap-southeast-2": 0.0, + "ap-northeast-1": 0.23591, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.22436, + "ap-southeast-2": 0.24053, + "ca-west-1": 0.2063, "eu-central-1": 0.0, - "eu-west-1": 0.2209, + "eu-west-1": 0.0, + "eu-west-2": 0.22783, "il-central-1": 0.0, "us-east-1": 0.20588, "us-east-2": 0.20588, - "us-gov-west-1": 0.22898, + "us-gov-west-1": 0.0, "us-west-2": 0.1958 }, "c6id.xlarge": { "ap-northeast-1": 0.3512, + "ap-northeast-2": 0.3491, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.38606, + "ca-west-1": 0.3176, "eu-central-1": 0.3281, "eu-west-1": 0.34679, - "il-central-1": 0.35937, - "us-east-1": 0.31676, + "eu-west-2": 0.3365, + "il-central-1": 0.33534, + "us-east-1": 0.2966, "us-east-2": 0.31676, "us-gov-west-1": 0.3386, "us-west-2": 0.0 }, "c6id.metal": { "ap-northeast-1": 8.3634, + "ap-northeast-2": 7.557, + "ap-southeast-1": 7.6914, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 7.6242, "eu-west-1": 7.4898, + "eu-west-2": 7.893, "il-central-1": 0.0, "us-east-1": 6.6162, "us-east-2": 0.0, "us-gov-west-1": 7.9602, - "us-west-2": 0.0 + "us-west-2": 6.6162 }, "c6id.2xlarge": { - "ap-northeast-1": 0.6774, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.627, + "ap-southeast-1": 0.6354, "ap-southeast-2": 0.0, + "ca-west-1": 0.6102, "eu-central-1": 0.0, "eu-west-1": 0.0, - "il-central-1": 0.69375, - "us-east-1": 0.5682, + "eu-west-2": 0.6963, + "il-central-1": 0.64568, + "us-east-1": 0.60852, "us-east-2": 0.0, "us-gov-west-1": 0.6522, - "us-west-2": 0.60852 + "us-west-2": 0.5682 }, "c6id.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.29228, + "ap-northeast-2": 1.089, + "ap-southeast-1": 1.19988, "ap-southeast-2": 1.2234, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.0806, + "eu-west-2": 1.131, "il-central-1": 0.0, - "us-east-1": 0.9714, + "us-east-1": 1.05204, "us-east-2": 0.9714, - "us-gov-west-1": 1.1394, + "us-gov-west-1": 0.0, "us-west-2": 1.05204 }, "c6id.8xlarge": { "ap-northeast-1": 2.41956, + "ap-northeast-2": 2.1978, + "ap-southeast-1": 2.23476, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 2.0298, "eu-west-1": 2.17932, - "il-central-1": 2.27999, + "eu-west-2": 0.0, + "il-central-1": 0.0, "us-east-1": 1.7778, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.1138, "us-west-2": 1.7778 }, "c6id.12xlarge": { "ap-northeast-1": 3.2394, + "ap-northeast-2": 3.2142, + "ap-southeast-1": 2.9874, "ap-southeast-2": 3.65772, + "ca-west-1": 3.10332, "eu-central-1": 2.9622, - "eu-west-1": 2.9118, - "il-central-1": 3.04908, + "eu-west-1": 3.18648, + "eu-west-2": 3.063, + "il-central-1": 3.33749, "us-east-1": 2.82612, "us-east-2": 0.0, - "us-gov-west-1": 3.0882, + "us-gov-west-1": 0.0, "us-west-2": 2.82612 }, "c6id.16xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 3.861, + "ap-southeast-1": 3.9282, "ap-southeast-2": 4.82196, + "ca-west-1": 3.7266, "eu-central-1": 3.8946, - "eu-west-1": 0.0, - "il-central-1": 4.01044, + "eu-west-1": 3.8274, + "eu-west-2": 4.029, + "il-central-1": 0.0, "us-east-1": 3.71316, "us-east-2": 3.71316, - "us-gov-west-1": 4.0626, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "c6id.24xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 6.2634, + "ap-southeast-1": 5.8098, "ap-southeast-2": 6.5154, + "ca-west-1": 6.04164, "eu-central-1": 0.0, "eu-west-1": 6.20796, - "il-central-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 6.50998, "us-east-1": 0.0, "us-east-2": 5.0034, - "us-gov-west-1": 6.59604, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "c6id.32xlarge": { - "ap-northeast-1": 8.3634, + "ap-northeast-1": 0.0, + "ap-northeast-2": 7.557, + "ap-southeast-1": 7.6914, "ap-southeast-2": 8.6322, - "eu-central-1": 0.0, + "ca-west-1": 7.2882, + "eu-central-1": 7.6242, "eu-west-1": 7.4898, + "eu-west-2": 7.893, "il-central-1": 7.85588, "us-east-1": 6.6162, - "us-east-2": 0.0, + "us-east-2": 6.6162, "us-gov-west-1": 7.9602, "us-west-2": 6.6162 }, "c6in.large": { "af-south-1": 0.24746, + "ap-east-1": 0.24515, "ap-northeast-1": 0.2378, + "ap-northeast-2": 0.2231, "ap-south-1": 0.2084, - "ap-southeast-1": 0.23822, - "ap-southeast-2": 0.24305, + "ap-south-2": 0.2083, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.25786, "ap-southeast-3": 0.0, - "ca-central-1": 0.23129, - "eu-central-1": 0.23707, + "ap-southeast-4": 0.0, + "ca-central-1": 0.2189, + "eu-central-1": 0.22415, "eu-central-2": 0.0, "eu-north-1": 0.2168, "eu-south-1": 0.244, + "eu-south-2": 0.223, "eu-west-1": 0.2231, "eu-west-2": 0.0, "eu-west-3": 0.24284, - "me-central-1": 0.0, + "il-central-1": 0.24296, + "me-central-1": 0.24988, "me-south-1": 0.24977, - "sa-east-1": 0.2693, + "sa-east-1": 0.28673, "us-east-1": 0.21974, "us-east-2": 0.0, "us-gov-east-1": 0.24515, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.23675, + "us-west-2": 0.21974 }, "c6in.xlarge": { "af-south-1": 0.43041, + "ap-east-1": 0.3953, "ap-northeast-1": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.3512, + "ap-south-1": 0.3218, + "ap-south-2": 0.3216, "ap-southeast-1": 0.3554, - "ap-southeast-2": 0.3911, + "ap-southeast-2": 0.42071, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 0.36758, "eu-central-1": 0.3533, "eu-central-2": 0.40806, "eu-north-1": 0.3386, "eu-south-1": 0.3659, - "eu-west-1": 0.37682, + "eu-south-2": 0.3766, + "eu-west-1": 0.0, "eu-west-2": 0.39068, "eu-west-3": 0.39068, + "il-central-1": 0.36402, "me-central-1": 0.3766, - "me-south-1": 0.40454, + "me-south-1": 0.3764, "sa-east-1": 0.0, "us-east-1": 0.3218, - "us-east-2": 0.34448, + "us-east-2": 0.3218, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.34448 }, "c6in.metal": { "af-south-1": 9.92244, + "ap-east-1": 9.7746, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 7.4226, + "ap-south-2": 7.4162, "ap-southeast-1": 8.4978, "ap-southeast-2": 9.6402, - "ap-southeast-3": 8.4978, + "ap-southeast-3": 0.0, + "ap-southeast-4": 9.637, "ca-central-1": 0.0, "eu-central-1": 8.4306, "eu-central-2": 9.2722, "eu-north-1": 7.9602, "eu-south-1": 8.8338, + "eu-south-2": 0.0, "eu-west-1": 8.3634, "eu-west-2": 8.7666, "eu-west-3": 8.7666, + "il-central-1": 8.77364, "me-central-1": 9.1762, "me-south-1": 9.1698, - "sa-east-1": 0.0, + "sa-east-1": 11.3202, "us-east-1": 7.4226, "us-east-2": 7.4226, "us-gov-east-1": 8.901, "us-gov-west-1": 0.0, + "us-west-1": 9.237, "us-west-2": 0.0 }, "c6in.2xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.7656, "ap-northeast-1": 0.79332, + "ap-northeast-2": 0.6774, "ap-south-1": 0.0, + "ap-south-2": 0.66352, "ap-southeast-1": 0.0, "ap-southeast-2": 0.81642, "ap-southeast-3": 0.73788, + "ap-southeast-4": 0.0, "ca-central-1": 0.6606, "eu-central-1": 0.6816, "eu-central-2": 0.79112, "eu-north-1": 0.0, "eu-south-1": 0.76098, + "eu-south-2": 0.0, "eu-west-1": 0.72864, "eu-west-2": 0.75636, - "eu-west-3": 0.0, + "eu-west-3": 0.7026, + "il-central-1": 0.70304, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.8622, @@ -63184,143 +69311,185 @@ "us-east-2": 0.66396, "us-gov-east-1": 0.0, "us-gov-west-1": 0.7656, - "us-west-2": 0.0 + "us-west-1": 0.732, + "us-west-2": 0.6186 }, "c6in.4xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 1.3074, - "ap-south-1": 0.0, - "ap-southeast-1": 1.31076, + "ap-east-1": 1.48632, + "ap-northeast-1": 1.42164, + "ap-northeast-2": 1.1898, + "ap-south-1": 1.0722, + "ap-south-2": 1.16204, + "ap-southeast-1": 1.2066, "ap-southeast-2": 1.46784, - "ap-southeast-3": 1.31076, - "ca-central-1": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 1.1562, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 1.29228, + "eu-south-2": 0.0, + "eu-west-1": 1.1898, "eu-west-2": 0.0, "eu-west-3": 1.2402, + "il-central-1": 1.34869, "me-central-1": 0.0, "me-south-1": 1.40316, "sa-east-1": 1.5594, "us-east-1": 1.16292, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 1.3662, - "us-west-2": 1.0722 + "us-east-2": 1.0722, + "us-gov-east-1": 1.3662, + "us-gov-west-1": 1.257, + "us-west-1": 0.0, + "us-west-2": 1.16292 }, "c6in.8xlarge": { "af-south-1": 2.60436, + "ap-east-1": 2.5674, "ap-northeast-1": 2.67828, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-2": 1.9778, + "ap-southeast-1": 2.2482, + "ap-southeast-2": 2.77068, "ap-southeast-3": 2.45652, + "ap-southeast-4": 2.7698, "ca-central-1": 2.1474, "eu-central-1": 0.0, "eu-central-2": 2.4418, "eu-north-1": 0.0, "eu-south-1": 2.3322, + "eu-south-2": 2.4178, "eu-west-1": 2.2146, "eu-west-2": 0.0, "eu-west-3": 2.3154, + "il-central-1": 2.31716, "me-central-1": 0.0, "me-south-1": 2.4162, - "sa-east-1": 0.0, - "us-east-1": 2.16084, - "us-east-2": 1.9794, - "us-gov-east-1": 2.349, + "sa-east-1": 2.9538, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 2.5674, - "us-west-2": 1.9794 + "us-west-1": 0.0, + "us-west-2": 2.16084 }, "c6in.12xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 3.5922, + "ap-northeast-2": 0.0, "ap-south-1": 2.8866, + "ap-south-2": 2.8842, "ap-southeast-1": 3.60228, "ap-southeast-2": 4.07352, - "ap-southeast-3": 3.2898, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 3.1386, "eu-central-1": 3.57456, "eu-central-2": 3.92172, - "eu-north-1": 3.0882, + "eu-north-1": 0.0, "eu-south-1": 0.0, + "eu-south-2": 3.5442, "eu-west-1": 3.54684, - "eu-west-2": 3.71316, - "eu-west-3": 3.3906, - "me-central-1": 3.88212, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "il-central-1": 3.39324, + "me-central-1": 0.0, + "me-south-1": 3.87948, + "sa-east-1": 4.3482, + "us-east-1": 3.15876, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 3.7686, - "us-west-2": 2.8866 + "us-west-1": 3.567, + "us-west-2": 3.15876 }, "c6in.16xlarge": { - "af-south-1": 5.53159, + "af-south-1": 5.04372, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 3.7938, - "ap-southeast-1": 4.74804, + "ap-south-2": 4.15316, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.37636, "ap-southeast-3": 4.74804, + "ap-southeast-4": 5.3746, "ca-central-1": 4.1298, - "eu-central-1": 0.0, + "eu-central-1": 4.2978, "eu-central-2": 0.0, "eu-north-1": 4.0626, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-south-2": 4.6706, + "eu-west-1": 4.2642, "eu-west-2": 4.4658, - "eu-west-3": 4.89588, + "eu-west-3": 0.0, + "il-central-1": 4.89975, "me-central-1": 4.6706, - "me-south-1": 0.0, + "me-south-1": 5.11764, "sa-east-1": 0.0, - "us-east-1": 4.15668, - "us-east-2": 0.0, - "us-gov-east-1": 4.533, + "us-east-1": 3.7938, + "us-east-2": 3.7938, + "us-gov-east-1": 0.0, "us-gov-west-1": 4.9698, - "us-west-2": 0.0 + "us-west-1": 4.701, + "us-west-2": 4.15668 }, "c6in.24xlarge": { "af-south-1": 8.21489, + "ap-east-1": 8.09292, "ap-northeast-1": 7.70484, + "ap-northeast-2": 6.3138, "ap-south-1": 5.6082, - "ap-southeast-1": 0.0, + "ap-south-2": 6.14724, + "ap-southeast-1": 7.03956, "ap-southeast-2": 7.2714, - "ap-southeast-3": 6.4146, + "ap-southeast-3": 7.03956, + "ap-southeast-4": 7.269, "ca-central-1": 6.1122, - "eu-central-1": 6.3642, + "eu-central-1": 6.98412, "eu-central-2": 0.0, "eu-north-1": 6.59604, "eu-south-1": 0.0, - "eu-west-1": 6.3138, + "eu-south-2": 6.9234, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 6.6162, + "eu-west-3": 7.26132, + "il-central-1": 7.26713, "me-central-1": 6.9234, "me-south-1": 7.59396, "sa-east-1": 8.5314, - "us-east-1": 0.0, - "us-east-2": 6.15252, + "us-east-1": 6.15252, + "us-east-2": 5.6082, "us-gov-east-1": 6.717, "us-gov-west-1": 7.3722, - "us-west-2": 5.6082 + "us-west-1": 7.6494, + "us-west-2": 0.0 }, "c6in.32xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 9.3042, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 8.4978, "ap-southeast-2": 9.6402, "ap-southeast-3": 8.4978, + "ap-southeast-4": 9.637, "ca-central-1": 8.0946, - "eu-central-1": 0.0, + "eu-central-1": 8.4306, "eu-central-2": 9.2722, "eu-north-1": 7.9602, "eu-south-1": 8.8338, - "eu-west-1": 8.3634, - "eu-west-2": 0.0, + "eu-south-2": 8.357, + "eu-west-1": 0.0, + "eu-west-2": 8.7666, "eu-west-3": 8.7666, + "il-central-1": 8.77364, "me-central-1": 9.1762, "me-south-1": 9.1698, "sa-east-1": 0.0, @@ -63328,285 +69497,851 @@ "us-east-2": 7.4226, "us-gov-east-1": 8.901, "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7a.medium": { + "ap-northeast-1": 0.16606, + "eu-central-1": 0.15942, + "eu-north-1": 0.0, + "eu-south-2": 0.15296, + "eu-west-1": 0.15557, + "us-east-1": 0.14632, + "us-east-2": 0.15145, + "us-west-2": 0.15145 + }, + "c7a.large": { + "ap-northeast-1": 0.23712, + "eu-central-1": 0.21213, + "eu-north-1": 0.0, + "eu-south-2": 0.21092, + "eu-west-1": 0.20512, + "us-east-1": 0.19764, + "us-east-2": 0.2079, + "us-west-2": 0.2079 + }, + "c7a.xlarge": { + "ap-northeast-1": 0.37924, + "eu-central-1": 0.0, + "eu-north-1": 0.33674, + "eu-south-2": 0.0, + "eu-west-1": 0.33726, + "us-east-1": 0.32081, + "us-east-2": 0.32081, + "us-west-2": 0.32081 + }, + "c7a.metal-48xl": { + "ap-northeast-1": 12.5682, + "eu-central-1": 11.40948, + "eu-north-1": 10.71348, + "eu-south-2": 0.0, + "eu-west-1": 10.73652, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 10.01844 + }, + "c7a.2xlarge": { + "ap-northeast-1": 0.73348, + "eu-central-1": 0.63352, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.60548, + "us-east-1": 0.0, + "us-east-2": 0.57556, + "us-west-2": 0.57556 + }, + "c7a.4xlarge": { + "ap-northeast-1": 1.1986, + "eu-central-1": 1.10204, + "eu-north-1": 1.04404, + "eu-south-2": 1.09236, + "eu-west-1": 1.13406, + "us-east-1": 1.06823, + "us-east-2": 1.06823, + "us-west-2": 0.0 + }, + "c7a.8xlarge": { + "ap-northeast-1": 2.43892, + "eu-central-1": 2.03908, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 1.92692, + "us-east-1": 1.80724, + "us-east-2": 1.80724, + "us-west-2": 1.97146 + }, + "c7a.12xlarge": { + "ap-northeast-1": 3.2658, + "eu-central-1": 0.0, + "eu-north-1": 2.80212, + "eu-south-2": 0.0, + "eu-west-1": 3.07217, + "us-east-1": 2.8747, + "us-east-2": 0.0, + "us-west-2": 2.62836 + }, + "c7a.16xlarge": { + "ap-northeast-1": 4.2994, + "eu-central-1": 0.0, + "eu-north-1": 3.68116, + "eu-south-2": 3.87444, + "eu-west-1": 0.0, + "us-east-1": 3.44948, + "us-east-2": 3.44948, + "us-west-2": 3.77793 + }, + "c7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 5.78724, + "eu-north-1": 0.0, + "eu-south-2": 5.72916, + "eu-west-1": 5.97934, + "us-east-1": 5.09172, + "us-east-2": 5.09172, "us-west-2": 0.0 }, + "c7a.32xlarge": { + "ap-northeast-1": 8.4338, + "eu-central-1": 0.0, + "eu-north-1": 7.19732, + "eu-south-2": 0.0, + "eu-west-1": 7.21268, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 6.73396 + }, + "c7a.48xlarge": { + "ap-northeast-1": 12.5682, + "eu-central-1": 11.40948, + "eu-north-1": 0.0, + "eu-south-2": 11.29332, + "eu-west-1": 10.73652, + "us-east-1": 10.01844, + "us-east-2": 10.01844, + "us-west-2": 10.01844 + }, "c7g.medium": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.1211, + "ap-south-2": 0.1195, "ap-southeast-1": 0.1367, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.1388, + "eu-north-1": 0.1337, + "eu-south-2": 0.1362, "eu-west-1": 0.0, - "us-east-1": 0.1313, + "eu-west-2": 0.1379, + "us-east-1": 0.1335, "us-east-2": 0.0, - "us-west-2": 0.1335 + "us-west-1": 0.0, + "us-west-2": 0.1313 }, "c7g.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.186, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.1472, "ap-southeast-1": 0.1783, "ap-southeast-2": 0.1953, - "eu-central-1": 0.1826, - "eu-west-1": 0.1725, - "us-east-1": 0.172, + "ca-central-1": 0.0, + "eu-central-1": 0.1775, + "eu-north-1": 0.1772, + "eu-south-2": 0.1774, + "eu-west-1": 0.1774, + "eu-west-2": 0.1809, + "us-east-1": 0.1675, "us-east-2": 0.0, - "us-west-2": 0.172 + "us-west-1": 0.1908, + "us-west-2": 0.0 }, "c7g.xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.2616, + "ap-northeast-2": 0.0, + "ap-south-1": 0.1993, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.2837, + "ca-central-1": 0.2631, "eu-central-1": 0.0, + "eu-north-1": 0.2595, + "eu-south-2": 0.0, "eu-west-1": 0.25, + "eu-west-2": 0.2667, "us-east-1": 0.24, "us-east-2": 0.0, - "us-west-2": 0.24 + "us-west-1": 0.2752, + "us-west-2": 0.2491 }, "c7g.metal": { "ap-northeast-1": 3.0757, + "ap-northeast-2": 0.0, + "ap-south-1": 1.7356, + "ap-south-2": 0.0, "ap-southeast-1": 2.8306, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.1845, + "ca-central-1": 2.6949, "eu-central-1": 2.8034, - "eu-west-1": 0.0, - "us-east-1": 2.485, + "eu-north-1": 2.6405, + "eu-south-2": 2.645, + "eu-west-1": 2.6456, + "eu-west-2": 2.9125, + "us-east-1": 0.0, "us-east-2": 2.4773, + "us-west-1": 3.0482, "us-west-2": 2.485 }, "c7g.2xlarge": { - "ap-northeast-1": 0.5517, - "ap-southeast-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.5119, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.5193, "ap-southeast-2": 0.5424, - "eu-central-1": 0.5155, - "eu-west-1": 0.4751, + "ca-central-1": 0.4812, + "eu-central-1": 0.4948, + "eu-north-1": 0.4939, + "eu-south-2": 0.0, + "eu-west-1": 0.4946, + "eu-west-2": 0.53, "us-east-1": 0.0, "us-east-2": 0.454, + "us-west-1": 0.0, "us-west-2": 0.455 }, "c7g.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.8927, + "ap-northeast-2": 0.8178, + "ap-south-1": 0.0, + "ap-south-2": 0.5824, "ap-southeast-1": 0.8735, "ap-southeast-2": 0.9673, + "ca-central-1": 0.8375, "eu-central-1": 0.866, - "eu-west-1": 0.0, + "eu-north-1": 0.7839, + "eu-south-2": 0.0, + "eu-west-1": 0.7852, + "eu-west-2": 0.8519, "us-east-1": 0.7814, "us-east-2": 0.7795, - "us-west-2": 0.745 + "us-west-1": 0.0, + "us-west-2": 0.7814 }, "c7g.8xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 1.582, - "ap-southeast-2": 1.7697, - "eu-central-1": 1.4842, + "ap-northeast-1": 1.7118, + "ap-northeast-2": 1.4706, + "ap-south-1": 0.0, + "ap-south-2": 0.9998, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 1.5099, + "eu-central-1": 1.567, + "eu-north-1": 0.0, + "eu-south-2": 1.405, "eu-west-1": 1.4835, + "eu-west-2": 1.6251, "us-east-1": 1.3978, "us-east-2": 1.3212, - "us-west-2": 0.0 + "us-west-1": 1.6066, + "us-west-2": 1.325 }, "c7g.12xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 2.2905, + "ap-northeast-2": 2.2466, + "ap-south-1": 0.0, + "ap-south-2": 1.4171, + "ap-southeast-1": 2.1642, "ap-southeast-2": 2.572, + "ca-central-1": 2.1824, "eu-central-1": 2.1438, + "eu-north-1": 2.1386, + "eu-south-2": 0.0, "eu-west-1": 2.1428, + "eu-west-2": 2.2256, "us-east-1": 2.0142, - "us-east-2": 0.0, + "us-east-2": 1.8992, + "us-west-1": 0.0, "us-west-2": 2.0142 }, "c7g.16xlarge": { "ap-northeast-1": 3.0757, + "ap-northeast-2": 2.7762, + "ap-south-1": 0.0, + "ap-south-2": 1.7356, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.1845, - "eu-central-1": 2.8034, - "eu-west-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.645, + "eu-west-1": 2.6456, + "eu-west-2": 2.9125, "us-east-1": 2.485, - "us-east-2": 2.4773, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-1": 3.0482, + "us-west-2": 2.485 }, "c7gd.medium": { + "ap-northeast-1": 0.1563, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1479, + "ap-southeast-2": 0.1545, + "eu-central-1": 0.1475, + "eu-north-1": 0.1471, + "eu-south-2": 0.1465, "eu-west-1": 0.1465, - "us-east-1": 0.0, + "us-east-1": 0.1404, "us-east-2": 0.1404, + "us-west-1": 0.1551, "us-west-2": 0.1431 }, "c7gd.large": { + "ap-northeast-1": 0.2103, + "ap-south-1": 0.1561, + "ap-southeast-1": 0.2008, + "ap-southeast-2": 0.2141, + "eu-central-1": 0.1999, + "eu-north-1": 0.0, + "eu-south-2": 0.198, "eu-west-1": 0.0, "us-east-1": 0.1857, "us-east-2": 0.1857, + "us-west-1": 0.2084, "us-west-2": 0.0 }, "c7gd.xlarge": { - "eu-west-1": 0.301, + "ap-northeast-1": 0.3401, + "ap-south-1": 0.0, + "ap-southeast-1": 0.3194, + "ap-southeast-2": 0.3332, + "eu-central-1": 0.3048, + "eu-north-1": 0.0, + "eu-south-2": 0.3134, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2764, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7gd.metal": { + "ap-northeast-1": 3.8546, + "ap-south-1": 2.0082, + "ap-southeast-1": 3.5519, + "ap-southeast-2": 3.9756, + "eu-central-1": 3.5218, + "eu-north-1": 3.31, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.2764 + "us-west-1": 3.7938, + "us-west-2": 3.068 }, "c7gd.2xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.3954, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.6699, + "eu-central-1": 0.5846, + "eu-north-1": 0.0, + "eu-south-2": 0.577, "eu-west-1": 0.577, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 0.5497, + "us-east-2": 0.5497, + "us-west-1": 0.6186, "us-west-2": 0.5279 }, "c7gd.4xlarge": { - "eu-west-1": 1.0384, - "us-east-1": 0.8908, - "us-east-2": 0.9343, - "us-west-2": 0.8908 + "ap-northeast-1": 0.0, + "ap-south-1": 0.6534, + "ap-southeast-1": 1.0117, + "ap-southeast-2": 1.1176, + "eu-central-1": 1.0546, + "eu-north-1": 0.0, + "eu-south-2": 1.0385, + "eu-west-1": 0.989, + "us-east-1": 0.9343, + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.9343 }, "c7gd.8xlarge": { + "ap-northeast-1": 2.0098, + "ap-south-1": 1.1419, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.1846, + "eu-central-1": 1.8434, + "eu-north-1": 1.7375, + "eu-south-2": 1.8131, "eu-west-1": 1.813, - "us-east-1": 0.0, + "us-east-1": 1.6165, "us-east-2": 1.7036, - "us-west-2": 0.0 + "us-west-1": 1.9794, + "us-west-2": 1.7036 }, "c7gd.12xlarge": { + "ap-northeast-1": 3.1057, + "ap-south-1": 1.5474, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.0229, + "eu-central-1": 2.8337, + "eu-north-1": 2.6652, + "eu-south-2": 2.7854, "eu-west-1": 0.0, "us-east-1": 2.3423, - "us-east-2": 2.473, - "us-west-2": 2.3423 + "us-east-2": 2.3423, + "us-west-1": 3.0499, + "us-west-2": 0.0 }, "c7gd.16xlarge": { + "ap-northeast-1": 3.8546, + "ap-south-1": 2.0082, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.9756, + "eu-central-1": 3.5218, + "eu-north-1": 3.31, + "eu-south-2": 3.4612, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 3.068 }, "c7gn.medium": { - "eu-west-1": 0.1655, + "ap-northeast-1": 0.1737, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.1574, "us-west-2": 0.1574 }, "c7gn.large": { + "ap-northeast-1": 0.2524, "eu-west-1": 0.0, "us-east-1": 0.2198, - "us-east-2": 0.2198, + "us-east-2": 0.0, "us-west-2": 0.2273 }, "c7gn.xlarge": { - "eu-west-1": 0.3939, + "ap-northeast-1": 0.4285, + "eu-west-1": 0.377, "us-east-1": 0.3446, - "us-east-2": 0.0, + "us-east-2": 0.3446, "us-west-2": 0.3446 }, + "c7gn.metal": { + "ap-northeast-1": 5.2018, + "eu-west-1": 4.677, + "us-east-1": 4.1586, + "us-east-2": 0.0, + "us-west-2": 4.1586 + }, "c7gn.2xlarge": { + "ap-northeast-1": 0.7946, "eu-west-1": 0.729, "us-east-1": 0.6642, "us-east-2": 0.6642, - "us-west-2": 0.6942 + "us-west-2": 0.0 }, "c7gn.4xlarge": { - "eu-west-1": 1.293, + "ap-northeast-1": 1.4991, + "eu-west-1": 1.3605, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 1.1634, + "us-west-2": 1.2233 }, "c7gn.8xlarge": { + "ap-northeast-1": 2.8332, "eu-west-1": 0.0, "us-east-1": 2.1618, "us-east-2": 0.0, - "us-west-2": 2.2816 + "us-west-2": 0.0 }, "c7gn.12xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 3.9426, + "eu-west-1": 3.7514, "us-east-1": 0.0, "us-east-2": 3.1602, "us-west-2": 3.1602 }, "c7gn.16xlarge": { + "ap-northeast-1": 5.2018, "eu-west-1": 4.677, "us-east-1": 0.0, "us-east-2": 4.1586, + "us-west-2": 4.1586 + }, + "c7i.large": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1958, + "ap-south-1": 0.19318, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.21155, + "ca-central-1": 0.0, + "eu-central-1": 0.20704, + "eu-north-1": 0.20011, + "eu-south-2": 0.0, + "eu-west-1": 0.19076, + "eu-west-2": 0.20105, + "eu-west-3": 0.0, + "sa-east-1": 0.23255, + "us-east-1": 0.18425, + "us-east-2": 0.0, + "us-gov-east-1": 0.21281, + "us-west-1": 0.2063, + "us-west-2": 0.0 + }, + "c7i.xlarge": { + "ap-northeast-1": 0.34217, + "ap-northeast-2": 0.31676, + "ap-south-1": 0.29135, + "ap-southeast-1": 0.32138, + "ap-southeast-2": 0.3281, + "ca-central-1": 0.2903, + "eu-central-1": 0.31907, + "eu-north-1": 0.0, + "eu-south-2": 0.2966, + "eu-west-1": 0.0, + "eu-west-2": 0.3071, + "eu-west-3": 0.32831, + "sa-east-1": 0.3701, + "us-east-1": 0.2735, + "us-east-2": 0.29135, + "us-gov-east-1": 0.0, + "us-west-1": 0.33986, + "us-west-2": 0.0 + }, + "c7i.metal-24xl": { + "ap-northeast-1": 6.09708, + "ap-northeast-2": 5.0034, + "ap-south-1": 4.8774, + "ap-southeast-1": 5.59812, + "ap-southeast-2": 6.31884, + "ca-central-1": 5.32092, + "eu-central-1": 5.0538, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 4.76148, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 7.42764, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7i.metal-48xl": { + "ap-northeast-1": 10.9506, + "ap-northeast-2": 9.8418, + "ap-south-1": 8.733, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 9.5394, + "eu-central-1": 9.9426, + "eu-north-1": 9.3378, + "eu-south-2": 9.8418, + "eu-west-1": 9.35796, + "eu-west-2": 10.3458, + "eu-west-3": 10.3458, + "sa-east-1": 0.0, + "us-east-1": 8.733, + "us-east-2": 8.733, + "us-gov-east-1": 10.4466, + "us-west-1": 10.8498, + "us-west-2": 8.733 + }, + "c7i.2xlarge": { + "ap-northeast-1": 0.6144, + "ap-northeast-2": 0.5682, + "ap-south-1": 0.522, + "ap-southeast-1": 0.61776, + "ap-southeast-2": 0.6312, + "ca-central-1": 0.5556, + "eu-central-1": 0.5724, + "eu-north-1": 0.58542, + "eu-south-2": 0.60852, + "eu-west-1": 0.54804, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.5577, + "us-east-2": 0.5577, + "us-gov-east-1": 0.63624, + "us-west-1": 0.6102, + "us-west-2": 0.0 + }, + "c7i.4xlarge": { + "ap-northeast-1": 1.0638, + "ap-northeast-2": 0.0, + "ap-south-1": 0.879, + "ap-southeast-1": 1.07052, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 1.06128, + "eu-north-1": 0.9294, + "eu-south-2": 0.9714, + "eu-west-1": 1.00769, + "eu-west-2": 1.09824, + "eu-west-3": 1.0134, + "sa-east-1": 1.37544, + "us-east-1": 0.879, + "us-east-2": 0.0, + "us-gov-east-1": 1.10748, + "us-west-1": 0.0, + "us-west-2": 0.9504 + }, + "c7i.8xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.7778, + "ap-south-1": 0.0, + "ap-southeast-1": 1.8114, + "ap-southeast-2": 2.0298, + "ca-central-1": 1.7274, + "eu-central-1": 0.0, + "eu-north-1": 1.84668, + "eu-south-2": 1.93908, + "eu-west-1": 1.85038, + "eu-west-2": 2.03148, + "eu-west-3": 1.8618, + "sa-east-1": 0.0, + "us-east-1": 1.7358, + "us-east-2": 1.593, + "us-gov-east-1": 0.0, + "us-west-1": 1.9458, "us-west-2": 0.0 }, + "c7i.12xlarge": { + "ap-northeast-1": 2.8614, + "ap-northeast-2": 2.82612, + "ap-south-1": 2.307, + "ap-southeast-1": 2.6346, + "ap-southeast-2": 0.0, + "ca-central-1": 2.74296, + "eu-central-1": 2.6094, + "eu-north-1": 0.0, + "eu-south-2": 2.5842, + "eu-west-1": 2.46324, + "eu-west-2": 2.96472, + "eu-west-3": 0.0, + "sa-east-1": 3.4662, + "us-east-1": 2.5212, + "us-east-2": 2.307, + "us-gov-east-1": 0.0, + "us-west-1": 3.10332, + "us-west-2": 2.5212 + }, + "c7i.16xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.71316, + "ap-south-1": 3.021, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.8946, + "ca-central-1": 3.2898, + "eu-central-1": 0.0, + "eu-north-1": 3.52836, + "eu-south-2": 0.0, + "eu-west-1": 3.22932, + "eu-west-2": 0.0, + "eu-west-3": 3.89796, + "sa-east-1": 5.00676, + "us-east-1": 0.0, + "us-east-2": 3.021, + "us-gov-east-1": 3.5922, + "us-west-1": 4.08276, + "us-west-2": 3.3066 + }, + "c7i.24xlarge": { + "ap-northeast-1": 5.5578, + "ap-northeast-2": 5.48724, + "ap-south-1": 4.8774, + "ap-southeast-1": 5.1042, + "ap-southeast-2": 6.31884, + "ca-central-1": 5.32092, + "eu-central-1": 5.54268, + "eu-north-1": 5.21004, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 5.2554, + "eu-west-3": 5.76444, + "sa-east-1": 6.7674, + "us-east-1": 4.449, + "us-east-2": 4.449, + "us-gov-east-1": 5.3058, + "us-west-1": 6.04164, + "us-west-2": 4.8774 + }, + "c7i.48xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 9.8418, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 11.3538, + "ca-central-1": 9.5394, + "eu-central-1": 9.9426, + "eu-north-1": 0.0, + "eu-south-2": 9.8418, + "eu-west-1": 9.35796, + "eu-west-2": 10.3458, + "eu-west-3": 10.3458, + "sa-east-1": 13.3698, + "us-east-1": 8.733, + "us-east-2": 8.733, + "us-gov-east-1": 0.0, + "us-west-1": 10.8498, + "us-west-2": 0.0 + }, + "c7i-flex.large": { + "ap-south-1": 0.17979, + "ap-southeast-1": 0.19278, + "ca-central-1": 0.18777, + "eu-north-1": 0.18577, + "eu-south-2": 0.19076, + "eu-west-1": 0.18597, + "eu-west-2": 0.19575, + "eu-west-3": 0.19575, + "sa-east-1": 0.22567, + "us-west-1": 0.20074 + }, + "c7i-flex.xlarge": { + "ap-south-1": 0.26458, + "ap-southeast-1": 0.29055, + "ca-central-1": 0.28054, + "eu-north-1": 0.27655, + "eu-south-2": 0.28652, + "eu-west-1": 0.27694, + "eu-west-2": 0.2965, + "eu-west-3": 0.2965, + "sa-east-1": 0.35635, + "us-west-1": 0.30647 + }, + "c7i-flex.2xlarge": { + "ap-south-1": 0.50415, + "ap-southeast-1": 0.5561, + "ca-central-1": 0.53607, + "eu-north-1": 0.52809, + "eu-south-2": 0.54804, + "eu-west-1": 0.52889, + "eu-west-2": 0.56799, + "eu-west-3": 0.56799, + "sa-east-1": 0.68769, + "us-west-1": 0.58794 + }, + "c7i-flex.4xlarge": { + "ap-south-1": 0.8433, + "ap-southeast-1": 0.9472, + "ca-central-1": 0.90714, + "eu-north-1": 0.89118, + "eu-south-2": 0.93108, + "eu-west-1": 0.89278, + "eu-west-2": 0.97098, + "eu-west-3": 0.97098, + "sa-east-1": 1.21038, + "us-west-1": 1.01088 + }, + "c7i-flex.8xlarge": { + "ap-south-1": 1.5216, + "ap-southeast-1": 1.72941, + "ca-central-1": 1.64928, + "eu-north-1": 1.61736, + "eu-south-2": 1.69716, + "eu-west-1": 1.62055, + "eu-west-2": 1.77696, + "eu-west-3": 1.77696, + "sa-east-1": 2.25576, + "us-west-1": 1.85676 + }, "d2.xlarge": { "af-south-1": 0.0, "ap-east-1": 1.052, - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.023, "ap-northeast-2": 0.939, "ap-northeast-3": 0.939, - "ap-south-1": 1.005, + "ap-south-1": 0.922, "ap-southeast-1": 1.052, "ap-southeast-2": 0.0, "ca-central-1": 0.854, - "eu-central-1": 0.968, + "eu-central-1": 0.889, "eu-north-1": 0.863, - "eu-south-1": 0.0, + "eu-south-1": 0.867, "eu-west-1": 0.0, "eu-west-2": 0.944, - "eu-west-3": 0.944, + "eu-west-3": 0.867, "me-south-1": 0.984, "us-east-1": 0.0, - "us-east-2": 0.854, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 1.006, - "us-west-1": 0.0, - "us-west-2": 0.854 + "us-west-1": 0.876, + "us-west-2": 0.0 }, "d2.2xlarge": { - "af-south-1": 1.915, + "af-south-1": 0.0, "ap-east-1": 2.079, "ap-northeast-1": 2.022, - "ap-northeast-2": 1.853, + "ap-northeast-2": 2.022, "ap-northeast-3": 1.853, "ap-south-1": 0.0, "ap-southeast-1": 1.905, "ap-southeast-2": 2.079, "ca-central-1": 1.835, "eu-central-1": 1.912, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 1.701, + "eu-south-1": 1.863, "eu-west-1": 1.782, "eu-west-2": 0.0, - "eu-west-3": 1.709, + "eu-west-3": 1.863, "me-south-1": 1.782, - "us-east-1": 1.683, + "us-east-1": 0.0, "us-east-2": 1.683, - "us-gov-east-1": 1.987, + "us-gov-east-1": 1.821, "us-gov-west-1": 1.987, - "us-west-1": 1.883, + "us-west-1": 1.727, "us-west-2": 1.683 }, "d2.4xlarge": { "af-south-1": 3.665, "ap-east-1": 3.993, "ap-northeast-1": 3.541, - "ap-northeast-2": 3.541, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.541, "ap-south-1": 3.473, "ap-southeast-1": 0.0, "ap-southeast-2": 3.645, "ca-central-1": 3.201, "eu-central-1": 0.0, - "eu-north-1": 3.236, + "eu-north-1": 2.957, "eu-south-1": 3.253, "eu-west-1": 3.399, "eu-west-2": 0.0, - "eu-west-3": 3.562, - "me-south-1": 3.722, + "eu-west-3": 0.0, + "me-south-1": 3.399, "us-east-1": 2.925, "us-east-2": 2.925, "us-gov-east-1": 3.808, - "us-gov-west-1": 3.477, - "us-west-1": 3.289, - "us-west-2": 2.925 + "us-gov-west-1": 3.808, + "us-west-1": 3.601, + "us-west-2": 0.0 }, "d2.8xlarge": { "af-south-1": 7.165, "ap-east-1": 7.821, "ap-northeast-1": 6.917, - "ap-northeast-2": 0.0, + "ap-northeast-2": 6.917, "ap-northeast-3": 6.917, "ap-south-1": 6.781, - "ap-southeast-1": 0.0, + "ap-southeast-1": 7.125, "ap-southeast-2": 0.0, "ca-central-1": 6.237, "eu-central-1": 6.517, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 6.341, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 6.341, "eu-west-3": 6.341, "me-south-1": 6.633, "us-east-1": 5.685, - "us-east-2": 0.0, + "us-east-2": 5.685, "us-gov-east-1": 0.0, "us-gov-west-1": 6.789, "us-west-1": 0.0, @@ -63619,6 +70354,7 @@ "ap-southeast-2": 0.721, "ca-central-1": 0.645, "eu-central-1": 0.753, + "eu-central-2": 0.819, "eu-west-1": 0.704, "eu-west-2": 0.735, "il-central-1": 0.735, @@ -63634,6 +70370,7 @@ "ap-southeast-2": 1.417, "ca-central-1": 1.265, "eu-central-1": 1.481, + "eu-central-2": 1.613, "eu-west-1": 1.384, "eu-west-2": 1.445, "il-central-1": 1.445, @@ -63649,6 +70386,7 @@ "ap-southeast-2": 2.669, "ca-central-1": 2.366, "eu-central-1": 2.797, + "eu-central-2": 3.06, "eu-west-1": 2.602, "eu-west-2": 2.724, "il-central-1": 2.724, @@ -63664,6 +70402,7 @@ "ap-southeast-2": 5.17308, "ca-central-1": 4.56612, "eu-central-1": 5.42948, + "eu-central-2": 5.95596, "eu-west-1": 5.03948, "eu-west-2": 5.28324, "il-central-1": 5.28324, @@ -63673,53 +70412,71 @@ "us-west-2": 4.16052 }, "d3en.xlarge": { + "ap-northeast-1": 0.857, + "ap-southeast-1": 0.754, + "eu-central-1": 0.788, "eu-west-1": 0.736, "us-east-1": 0.621, "us-west-2": 0.621 }, "d3en.2xlarge": { + "ap-northeast-1": 1.69, + "ap-southeast-1": 1.483, + "eu-central-1": 1.55, "eu-west-1": 1.448, "us-east-1": 1.216, "us-west-2": 1.216 }, "d3en.4xlarge": { + "ap-northeast-1": 3.214, + "ap-southeast-1": 2.801, + "eu-central-1": 2.936, "eu-west-1": 2.731, "us-east-1": 2.268, "us-west-2": 2.268 }, "d3en.6xlarge": { + "ap-northeast-1": 4.739, + "ap-southeast-1": 4.119, + "eu-central-1": 4.321, "eu-west-1": 4.013, "us-east-1": 3.319, "us-west-2": 3.319 }, "d3en.8xlarge": { + "ap-northeast-1": 6.2634, + "ap-southeast-1": 5.43668, + "eu-central-1": 5.70652, "eu-west-1": 5.29604, "us-east-1": 4.37076, "us-west-2": 4.37076 }, "d3en.12xlarge": { + "ap-northeast-1": 9.3126, + "ap-southeast-1": 8.07252, + "eu-central-1": 8.47728, "eu-west-1": 7.86156, "us-east-1": 6.47364, "us-west-2": 6.47364 }, "f1.2xlarge": { - "eu-central-1": 1.899, - "eu-west-1": 2.1615, - "us-east-1": 1.98, - "us-gov-west-1": 2.145, + "eu-central-1": 2.0724, + "eu-west-1": 1.98, + "us-east-1": 0.0, + "us-gov-west-1": 2.343, "us-west-2": 0.0 }, "f1.4xlarge": { - "eu-central-1": 3.98, - "eu-west-1": 0.0, + "eu-central-1": 3.633, + "eu-west-1": 4.158, "us-east-1": 0.0, "us-gov-west-1": 4.125, - "us-west-2": 3.465 + "us-west-2": 0.0 }, "f1.16xlarge": { "eu-west-1": 14.685, "us-east-1": 0.0, - "us-gov-west-1": 16.005, + "us-gov-west-1": 0.0, "us-west-2": 13.365 }, "g2.2xlarge": { @@ -63746,30 +70503,30 @@ "ap-northeast-1": 1.745, "ap-northeast-2": 0.0, "ap-southeast-1": 1.835, - "ap-southeast-2": 1.919, - "ca-central-1": 1.7226, + "ap-southeast-2": 2.0944, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 1.7369, + "eu-west-2": 1.594, "us-east-1": 1.419, "us-east-2": 1.305, "us-gov-west-1": 1.485, - "us-west-1": 1.8524, + "us-west-1": 1.699, "us-west-2": 1.305 }, "g3.8xlarge": { "ap-northeast-1": 3.325, - "ap-northeast-2": 3.289, - "ap-southeast-1": 3.505, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.0238, - "ca-central-1": 0.0, + "ca-central-1": 2.997, "eu-central-1": 0.0, "eu-west-1": 2.585, - "eu-west-2": 3.023, + "eu-west-2": 3.3088, "us-east-1": 0.0, - "us-east-2": 2.445, + "us-east-2": 0.0, "us-gov-west-1": 3.069, - "us-west-1": 3.233, + "us-west-1": 0.0, "us-west-2": 2.673 }, "g3.16xlarge": { @@ -63781,7 +70538,7 @@ "eu-central-1": 5.865, "eu-west-1": 5.005, "eu-west-2": 5.881, - "us-east-1": 0.0, + "us-east-1": 4.725, "us-east-2": 4.725, "us-gov-west-1": 5.445, "us-west-1": 0.0, @@ -63800,12 +70557,12 @@ "us-west-2": 0.845 }, "g4ad.xlarge": { - "ap-northeast-1": 0.60582, + "ap-northeast-1": 0.6569, "ca-central-1": 0.0, "eu-central-1": 0.6156, "eu-west-1": 0.51763, - "eu-west-2": 0.58198, - "us-east-1": 0.47353, + "eu-west-2": 0.0, + "us-east-1": 0.51138, "us-east-2": 0.0, "us-west-2": 0.0 }, @@ -63813,21 +70570,21 @@ "ap-northeast-1": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.84162, - "eu-west-1": 0.82963, + "eu-west-1": 0.0, "eu-west-2": 0.86122, "us-east-1": 0.70617, "us-east-2": 0.0, - "us-west-2": 0.70617 + "us-west-2": 0.76029 }, "g4ad.4xlarge": { "ap-northeast-1": 1.452, - "ca-central-1": 1.2298, + "ca-central-1": 1.133, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 1.2804, "us-east-1": 0.0, "us-east-2": 1.032, - "us-west-2": 1.032 + "us-west-2": 0.0 }, "g4ad.8xlarge": { "ap-northeast-1": 2.505, @@ -63836,65 +70593,65 @@ "eu-west-1": 0.0, "eu-west-2": 2.3958, "us-east-1": 1.899, - "us-east-2": 2.0724, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 2.0724 }, "g4ad.16xlarge": { "ap-northeast-1": 5.313, - "ca-central-1": 4.4242, - "eu-central-1": 0.0, + "ca-central-1": 4.037, + "eu-central-1": 4.9346, "eu-west-1": 4.037, "eu-west-2": 4.221, - "us-east-1": 3.9798, - "us-east-2": 3.9798, - "us-west-2": 3.9798 + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 }, "g4dn.xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.793, "ap-east-1": 0.905, "ap-northeast-1": 0.851, "ap-northeast-2": 0.742, "ap-northeast-3": 0.0, "ap-south-1": 0.674, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.831, "ap-southeast-2": 0.779, "ca-central-1": 0.0, "eu-central-1": 0.753, "eu-north-1": 0.653, - "eu-south-1": 0.751, + "eu-south-1": 0.711, "eu-west-1": 0.72, "eu-west-2": 0.75, - "eu-west-3": 0.0, - "me-south-1": 0.74, + "eu-west-3": 0.71, + "me-south-1": 0.782, "sa-east-1": 0.0, "us-east-1": 0.621, "us-east-2": 0.621, "us-gov-east-1": 0.798, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.653, + "us-west-1": 0.768, + "us-west-2": 0.621, "us-west-2-lax-1": 0.0 }, "g4dn.metal": { - "af-south-1": 0.0, + "af-south-1": 10.546, "ap-east-1": 12.213, - "ap-northeast-1": 10.727, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 9.789, "ap-northeast-3": 10.727, - "ap-south-1": 0.0, + "ap-south-1": 8.777, "ap-southeast-1": 11.113, "ap-southeast-2": 10.339, - "ca-central-1": 8.852, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 8.465, "eu-south-1": 0.0, "eu-west-1": 8.889, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 9.313, "me-south-1": 9.761, "sa-east-1": 13.463, "us-east-1": 7.989, - "us-east-2": 0.0, + "us-east-2": 7.989, "us-gov-west-1": 10.027, "us-west-1": 9.554, "us-west-2": 0.0, @@ -63905,18 +70662,18 @@ "ap-east-1": 1.323, "ap-northeast-1": 1.18, "ap-northeast-2": 1.09, - "ap-northeast-3": 1.18, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 1.28, "ap-southeast-2": 0.0, - "ca-central-1": 1.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 1.103, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-south-1": 1.045, + "eu-west-1": 1.003, + "eu-west-2": 1.045, "eu-west-3": 1.097, - "me-south-1": 0.0, + "me-south-1": 1.087, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, @@ -63927,7 +70684,7 @@ "us-west-2-lax-1": 1.067 }, "g4dn.4xlarge": { - "af-south-1": 1.762, + "af-south-1": 1.866, "ap-east-1": 2.019, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, @@ -63935,72 +70692,72 @@ "ap-south-1": 1.57, "ap-southeast-1": 1.951, "ap-southeast-2": 1.731, - "ca-central-1": 0.0, + "ca-central-1": 1.502, "eu-central-1": 0.0, "eu-north-1": 1.442, "eu-south-1": 1.575, - "eu-west-1": 0.0, - "eu-west-2": 1.665, + "eu-west-1": 1.595, + "eu-west-2": 0.0, "eu-west-3": 0.0, "me-south-1": 1.642, "sa-east-1": 2.344, - "us-east-1": 1.441, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.774, "us-gov-west-1": 1.774, "us-west-1": 0.0, "us-west-2": 1.441, - "us-west-2-lax-1": 1.61 + "us-west-2-lax-1": 1.707 }, "g4dn.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.052, "ap-east-1": 3.717, "ap-northeast-1": 3.103, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 3.002, + "ap-northeast-3": 3.103, "ap-south-1": 2.56, "ap-southeast-1": 3.21, "ap-southeast-2": 2.995, "ca-central-1": 2.581, - "eu-central-1": 3.062, + "eu-central-1": 2.885, "eu-north-1": 0.0, "eu-south-1": 2.712, "eu-west-1": 2.749, - "eu-west-2": 2.876, - "eu-west-3": 2.709, + "eu-west-2": 2.711, + "eu-west-3": 0.0, "me-south-1": 3.007, "sa-east-1": 4.104, - "us-east-1": 2.472, + "us-east-1": 0.0, "us-east-2": 2.341, "us-gov-east-1": 2.908, - "us-gov-west-1": 3.072, + "us-gov-west-1": 2.908, "us-west-1": 2.951, "us-west-2": 2.472, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 2.951 }, "g4dn.12xlarge": { "af-south-1": 5.355, "ap-east-1": 0.0, "ap-northeast-1": 5.789, "ap-northeast-2": 5.265, - "ap-northeast-3": 0.0, - "ap-south-1": 4.73, - "ap-southeast-1": 5.967, + "ap-northeast-3": 5.789, + "ap-south-1": 0.0, + "ap-southeast-1": 5.639, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 5.055, - "eu-north-1": 4.564, + "eu-central-1": 0.0, + "eu-north-1": 4.315, "eu-south-1": 4.745, "eu-west-1": 4.81, "eu-west-2": 0.0, "eu-west-3": 5.013, "me-south-1": 0.0, - "sa-east-1": 6.814, + "sa-east-1": 0.0, "us-east-1": 4.312, "us-east-2": 4.077, "us-gov-east-1": 5.392, - "us-gov-west-1": 5.392, - "us-west-1": 4.859, + "us-gov-west-1": 0.0, + "us-west-1": 5.174, "us-west-2": 0.0, "us-west-2-lax-1": 4.859 }, @@ -64009,98 +70766,98 @@ "ap-east-1": 0.0, "ap-northeast-1": 6.04, "ap-northeast-2": 5.518, - "ap-northeast-3": 6.04, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 6.254, "ap-southeast-2": 0.0, "ca-central-1": 4.997, "eu-central-1": 5.959, - "eu-north-1": 5.059, + "eu-north-1": 0.0, "eu-south-1": 5.26, - "eu-west-1": 5.333, + "eu-west-1": 5.018, "eu-west-2": 5.257, "eu-west-3": 0.0, "me-south-1": 5.503, - "sa-east-1": 7.562, + "sa-east-1": 0.0, "us-east-1": 4.778, "us-east-2": 4.517, "us-gov-east-1": 5.651, "us-gov-west-1": 5.98, "us-west-1": 5.387, - "us-west-2": 4.778, + "us-west-2": 4.517, "us-west-2-lax-1": 5.387 }, "g5.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.6999, "ap-northeast-2": 1.4557, - "ap-south-1": 1.303, + "ap-south-1": 1.4238, "ap-southeast-2": 1.5338, "ap-southeast-3": 1.503, - "ca-central-1": 1.3237, + "ca-central-1": 1.212, "eu-central-1": 1.4788, - "eu-north-1": 1.162, + "eu-north-1": 1.2687, "eu-west-1": 1.3303, - "eu-west-2": 1.4997, + "eu-west-2": 0.0, "il-central-1": 1.39207, - "me-central-1": 1.329, - "sa-east-1": 1.976, - "us-east-1": 1.101, + "me-central-1": 0.0, + "sa-east-1": 1.805, + "us-east-1": 1.2016, "us-east-2": 0.0, "us-west-2": 0.0 }, "g5.2xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 1.7659, + "ap-northeast-1": 2.09854, + "ap-northeast-2": 1.80433, + "ap-south-1": 0.0, "ap-southeast-2": 1.74084, - "ap-southeast-3": 2.03095, + "ap-southeast-3": 1.86132, "ca-central-1": 1.51073, "eu-central-1": 1.6806, - "eu-north-1": 1.57904, + "eu-north-1": 1.45049, "eu-west-1": 1.51796, "eu-west-2": 1.85734, "il-central-1": 0.0, "me-central-1": 1.65169, - "sa-east-1": 2.22516, - "us-east-1": 0.0, - "us-east-2": 1.377, + "sa-east-1": 2.43117, + "us-east-1": 1.4982, + "us-east-2": 0.0, "us-west-2": 1.377 }, "g5.4xlarge": { - "ap-northeast-1": 2.52028, + "ap-northeast-1": 2.75581, "ap-northeast-2": 2.3616, - "ap-south-1": 2.3101, - "ap-southeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-2": 2.27652, "ap-southeast-3": 0.0, "ca-central-1": 1.96819, - "eu-central-1": 2.19581, + "eu-central-1": 0.0, "eu-north-1": 1.88747, - "eu-west-1": 0.0, + "eu-west-1": 2.15916, "eu-west-2": 0.0, "il-central-1": 2.25887, - "me-central-1": 2.15706, + "me-central-1": 2.35627, "sa-east-1": 3.20152, "us-east-1": 1.9514, "us-east-2": 1.789, "us-west-2": 1.9514, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 2.39598 }, "g5.8xlarge": { - "ap-northeast-1": 3.71533, - "ap-northeast-2": 3.17512, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 3.3985, "ap-southeast-2": 3.34789, "ap-southeast-3": 0.0, - "ca-central-1": 3.15492, + "ca-central-1": 0.0, "eu-central-1": 3.22622, - "eu-north-1": 3.02108, + "eu-north-1": 0.0, "eu-west-1": 2.89771, - "eu-west-2": 3.27245, + "eu-west-2": 0.0, "il-central-1": 3.32128, "me-central-1": 3.4681, "sa-east-1": 4.74222, "us-east-1": 2.613, - "us-east-2": 0.0, + "us-east-2": 2.613, "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, @@ -64112,31 +70869,31 @@ "ap-southeast-3": 0.0, "ca-central-1": 6.46284, "eu-central-1": 7.25782, - "eu-north-1": 0.0, - "eu-west-1": 6.49667, + "eu-north-1": 6.78252, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "il-central-1": 6.81325, + "il-central-1": 7.47807, "me-central-1": 7.81825, - "sa-east-1": 0.0, - "us-east-1": 5.837, + "sa-east-1": 9.80627, + "us-east-1": 0.0, "us-east-2": 6.4042, "us-west-2": 0.0 }, "g5.16xlarge": { - "ap-northeast-1": 6.69946, + "ap-northeast-1": 6.10542, "ap-northeast-2": 5.70519, "ap-south-1": 5.5753, "ap-southeast-2": 0.0, "ap-southeast-3": 5.89777, - "ca-central-1": 4.71294, - "eu-central-1": 5.79924, - "eu-north-1": 4.50937, - "eu-west-1": 5.19461, - "eu-west-2": 0.0, + "ca-central-1": 5.16774, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 4.73737, + "eu-west-2": 5.3644, "il-central-1": 4.96599, "me-central-1": 5.69175, - "sa-east-1": 7.82362, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 4.6706, "us-east-2": 0.0, "us-west-2": 0.0 }, @@ -64148,40 +70905,40 @@ "ap-southeast-3": 11.56336, "ca-central-1": 0.0, "eu-central-1": 10.34905, - "eu-north-1": 9.6666, + "eu-north-1": 0.0, "eu-west-1": 10.16528, "eu-west-2": 0.0, "il-central-1": 0.0, - "me-central-1": 11.15373, - "sa-east-1": 14.00818, + "me-central-1": 0.0, + "sa-east-1": 15.3925, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 8.309, "us-west-2": 9.1234 }, "g5.48xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 20.19309, + "ap-northeast-1": 23.78746, + "ap-northeast-2": 0.0, "ap-south-1": 19.72355, "ap-southeast-2": 0.0, "ap-southeast-3": 22.96172, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 17.44064, + "eu-north-1": 0.0, "eu-west-1": 20.16556, - "eu-west-2": 0.0, + "eu-west-2": 20.84072, "il-central-1": 0.0, "me-central-1": 20.14451, - "sa-east-1": 27.85136, + "sa-east-1": 0.0, "us-east-1": 16.453, - "us-east-2": 0.0, + "us-east-2": 16.453, "us-west-2": 0.0 }, "g5g.xlarge": { - "ap-northeast-1": 0.6619, + "ap-northeast-1": 0.6988, "ap-northeast-2": 0.6116, - "ap-southeast-1": 0.0, - "eu-central-1": 0.6204, - "eu-south-2": 0.5637, + "ap-southeast-1": 0.6827, + "eu-central-1": 0.6545, + "eu-south-2": 0.5942, "us-east-1": 0.5402, "us-west-2": 0.0 }, @@ -64190,15 +70947,15 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 3.5976, - "eu-south-2": 0.0, - "us-east-1": 0.0, + "eu-south-2": 3.2272, + "us-east-1": 2.909, "us-west-2": 2.909 }, "g5g.2xlarge": { "ap-northeast-1": 0.9643, - "ap-northeast-2": 0.8489, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.943, - "eu-central-1": 0.0, + "eu-central-1": 0.8605, "eu-south-2": 0.8258, "us-east-1": 0.7544, "us-west-2": 0.721 @@ -64206,19 +70963,19 @@ "g5g.4xlarge": { "ap-northeast-1": 1.2826, "ap-northeast-2": 1.1835, - "ap-southeast-1": 0.0, - "eu-central-1": 1.2681, + "ap-southeast-1": 1.3931, + "eu-central-1": 1.2008, "eu-south-2": 1.1491, - "us-east-1": 0.0, - "us-west-2": 0.993 + "us-east-1": 1.0427, + "us-west-2": 0.0 }, "g5g.8xlarge": { - "ap-northeast-1": 2.0169, + "ap-northeast-1": 2.1373, "ap-northeast-2": 1.9537, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-south-2": 1.6961, - "us-east-1": 0.0, + "us-east-1": 1.537, "us-west-2": 1.6193 }, "g5g.16xlarge": { @@ -64230,23 +70987,73 @@ "us-east-1": 2.909, "us-west-2": 2.909 }, + "g6.xlarge": { + "us-east-1": 0.98028, + "us-east-2": 0.0, + "us-west-2": 0.8998 + }, + "g6.2xlarge": { + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.4xlarge": { + "us-east-1": 1.4882, + "us-east-2": 1.62052, + "us-west-2": 1.4882 + }, + "g6.8xlarge": { + "us-east-1": 2.1794, + "us-east-2": 0.0, + "us-west-2": 2.38084 + }, + "g6.12xlarge": { + "us-east-1": 0.0, + "us-east-2": 5.22676, + "us-west-2": 4.7666 + }, + "g6.16xlarge": { + "us-east-1": 3.90148, + "us-east-2": 3.90148, + "us-west-2": 3.5618 + }, + "g6.24xlarge": { + "us-east-1": 6.8402, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.48xlarge": { + "us-east-1": 13.5154, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "gr6.4xlarge": { + "us-east-1": 1.7042, + "us-east-2": 1.7042, + "us-west-2": 1.7042 + }, + "gr6.8xlarge": { + "us-east-1": 2.6114, + "us-east-2": 2.6114, + "us-west-2": 2.6114 + }, "h1.2xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.663, + "eu-west-1": 0.72, + "us-east-1": 0.633, "us-east-2": 0.633, "us-west-2": 0.633 }, "h1.4xlarge": { - "eu-west-1": 0.0, + "eu-west-1": 1.203, "us-east-1": 1.162, "us-east-2": 1.101, "us-west-2": 1.101 }, "h1.8xlarge": { - "eu-west-1": 2.241, - "us-east-1": 0.0, + "eu-west-1": 2.384, + "us-east-1": 2.037, "us-east-2": 2.037, - "us-west-2": 2.037 + "us-west-2": 0.0 }, "h1.16xlarge": { "eu-west-1": 0.0, @@ -64256,6 +71063,7 @@ }, "hpc6a.48xlarge": { "ap-southeast-1": 3.4855, + "ap-southeast-2": 3.9259, "eu-north-1": 3.258, "us-east-2": 3.045, "us-gov-east-1": 3.632, @@ -64266,24 +71074,57 @@ "us-east-2": 5.865, "us-gov-west-1": 7.0194 }, + "hpc7a.12xlarge": { + "eu-north-1": 7.8902, + "eu-west-1": 7.8902, + "us-east-2": 7.365, + "us-gov-west-1": 8.8324 + }, + "hpc7a.24xlarge": { + "eu-north-1": 7.8902, + "eu-west-1": 7.8902, + "us-east-2": 7.365, + "us-gov-west-1": 8.8324 + }, + "hpc7a.48xlarge": { + "eu-north-1": 7.8902, + "eu-west-1": 7.8902, + "us-east-2": 7.365, + "us-gov-west-1": 8.8324 + }, + "hpc7a.96xlarge": { + "eu-north-1": 7.8902, + "eu-west-1": 7.8902, + "us-east-2": 7.365, + "us-gov-west-1": 8.8324 + }, "hpc7g.4xlarge": { - "us-east-1": 1.8482 + "ap-northeast-1": 2.2767, + "eu-west-1": 1.9709, + "us-east-1": 1.8482, + "us-gov-west-1": 2.1912 }, "hpc7g.8xlarge": { - "us-east-1": 1.8482 + "ap-northeast-1": 2.2767, + "eu-west-1": 1.9709, + "us-east-1": 1.8482, + "us-gov-west-1": 2.1912 }, "hpc7g.16xlarge": { - "us-east-1": 1.8482 + "ap-northeast-1": 2.2767, + "eu-west-1": 1.9709, + "us-east-1": 1.8482, + "us-gov-west-1": 2.1912 }, "i2.xlarge": { "ap-northeast-1": 1.096, - "ap-northeast-2": 1.196, + "ap-northeast-2": 1.096, "ap-south-1": 1.062, "ap-southeast-1": 1.215, "ap-southeast-2": 0.0, - "eu-central-1": 1.209, + "eu-central-1": 0.0, "eu-west-1": 1.033, - "us-east-1": 0.948, + "us-east-1": 1.033, "us-east-2": 0.948, "us-gov-west-1": 1.22, "us-west-1": 0.0, @@ -64294,39 +71135,39 @@ "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.405, + "ap-southeast-2": 0.0, "eu-central-1": 2.191, - "eu-west-1": 0.0, + "eu-west-1": 2.229, "us-east-1": 0.0, "us-east-2": 1.871, "us-gov-west-1": 2.211, "us-west-1": 2.041, - "us-west-2": 1.871 + "us-west-2": 2.042 }, "i2.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 4.169, - "ap-south-1": 4.42, + "ap-northeast-2": 4.569, + "ap-south-1": 4.033, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.644, - "eu-central-1": 0.0, - "eu-west-1": 3.917, + "ap-southeast-2": 4.237, + "eu-central-1": 4.217, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 4.257, "us-west-1": 0.0, "us-west-2": 3.577 }, "i2.8xlarge": { "ap-northeast-1": 8.173, "ap-northeast-2": 8.173, - "ap-south-1": 7.901, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 8.309, "eu-central-1": 8.269, - "eu-west-1": 0.0, + "eu-west-1": 7.669, "us-east-1": 6.989, - "us-east-2": 6.989, + "us-east-2": 0.0, "us-gov-west-1": 8.349, "us-west-1": 0.0, "us-west-2": 0.0 @@ -64334,29 +71175,29 @@ "i3.large": { "af-south-1": 0.3, "ap-east-1": 0.301, - "ap-northeast-1": 0.278, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.278, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.278, "ap-south-1": 0.0, "ap-south-2": 0.29, "ap-southeast-1": 0.282, "ap-southeast-2": 0.282, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.282, "ap-southeast-4": 0.0, - "ca-central-1": 0.267, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.3, - "eu-north-1": 0.258, + "eu-north-1": 0.274, "eu-south-1": 0.0, - "eu-south-2": 0.284, + "eu-south-2": 0.267, "eu-west-1": 0.267, "eu-west-2": 0.276, - "eu-west-3": 0.294, - "il-central-1": 0.0, + "eu-west-3": 0.276, + "il-central-1": 0.294, "me-central-1": 0.284, "me-south-1": 0.284, "sa-east-1": 0.369, - "us-east-1": 0.0, + "us-east-1": 0.251, "us-east-2": 0.251, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, @@ -64365,11 +71206,11 @@ }, "i3.xlarge": { "af-south-1": 0.505, - "ap-east-1": 0.507, + "ap-east-1": 0.548, "ap-northeast-1": 0.461, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.484, + "ap-northeast-3": 0.461, + "ap-south-1": 0.0, "ap-south-2": 0.484, "ap-southeast-1": 0.469, "ap-southeast-2": 0.469, @@ -64386,19 +71227,19 @@ "eu-west-3": 0.0, "il-central-1": 0.456, "me-central-1": 0.473, - "me-south-1": 0.511, - "sa-east-1": 0.0, + "me-south-1": 0.473, + "sa-east-1": 0.593, "us-east-1": 0.407, "us-east-2": 0.438, "us-gov-east-1": 0.0, "us-gov-west-1": 0.509, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.407 }, "i3.metal": { "af-south-1": 6.725, "ap-east-1": 6.757, - "ap-northeast-1": 0.0, + "ap-northeast-1": 6.021, "ap-northeast-2": 6.021, "ap-northeast-3": 0.0, "ap-south-1": 5.829, @@ -64410,47 +71251,47 @@ "eu-south-1": 5.957, "eu-west-1": 0.0, "eu-west-2": 5.957, - "eu-west-3": 0.0, + "eu-west-3": 5.957, "me-south-1": 6.219, "sa-east-1": 8.133, "us-east-1": 5.157, "us-east-2": 5.157, - "us-gov-east-1": 6.181, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 5.669, "us-west-2": 5.157 }, "i3.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.985, "ap-east-1": 0.989, - "ap-northeast-1": 0.97, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.897, + "ap-northeast-2": 0.97, "ap-northeast-3": 0.97, "ap-south-1": 0.944, - "ap-south-2": 0.944, + "ap-south-2": 0.873, "ap-southeast-1": 0.0, "ap-southeast-2": 0.988, "ap-southeast-3": 0.913, "ap-southeast-4": 0.913, "ca-central-1": 0.0, "eu-central-1": 0.909, - "eu-central-2": 0.983, - "eu-north-1": 0.882, - "eu-south-1": 0.889, - "eu-south-2": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.922, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.961, - "il-central-1": 0.0, + "eu-west-2": 0.889, + "eu-west-3": 0.889, + "il-central-1": 0.96, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 1.261, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.851, - "us-gov-east-1": 0.992, + "us-gov-east-1": 0.917, "us-gov-west-1": 0.917, "us-west-1": 0.853, - "us-west-2": 0.0 + "us-west-2": 0.851 }, "i3.4xlarge": { "af-south-1": 1.969, @@ -64462,65 +71303,65 @@ "ap-south-2": 1.581, "ap-southeast-1": 1.811, "ap-southeast-2": 1.661, - "ap-southeast-3": 1.811, + "ap-southeast-3": 1.661, "ap-southeast-4": 1.661, - "ca-central-1": 1.541, + "ca-central-1": 1.679, "eu-central-1": 0.0, "eu-central-2": 1.802, - "eu-north-1": 1.599, + "eu-north-1": 1.469, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 1.541, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 1.61, "me-central-1": 1.83, "me-south-1": 1.679, "sa-east-1": 0.0, - "us-east-1": 1.413, + "us-east-1": 1.538, "us-east-2": 1.413, "us-gov-east-1": 1.819, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.538 + "us-west-2": 0.0 }, "i3.8xlarge": { "af-south-1": 3.445, "ap-east-1": 0.0, "ap-northeast-1": 3.386, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.093, + "ap-northeast-3": 0.0, "ap-south-1": 3.28, - "ap-south-2": 3.28, + "ap-south-2": 2.997, "ap-southeast-1": 3.456, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.157, "ap-southeast-3": 3.157, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ap-southeast-4": 3.157, + "ca-central-1": 3.192, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 3.034, + "eu-south-1": 3.351, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 3.351, + "eu-west-2": 3.351, + "eu-west-3": 3.061, "il-central-1": 3.055, "me-central-1": 3.192, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 2.911, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 2.661, "us-gov-east-1": 3.173, "us-gov-west-1": 3.474, "us-west-1": 3.192, - "us-west-2": 0.0 + "us-west-2": 2.661 }, "i3.16xlarge": { "af-south-1": 0.0, "ap-east-1": 6.757, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 6.021, "ap-northeast-3": 6.021, "ap-south-1": 5.829, "ap-south-2": 5.829, @@ -64535,15 +71376,15 @@ "eu-south-1": 5.957, "eu-south-2": 0.0, "eu-west-1": 5.669, - "eu-west-2": 5.957, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 5.957, "il-central-1": 5.944, - "me-central-1": 6.219, + "me-central-1": 0.0, "me-south-1": 6.219, "sa-east-1": 8.133, - "us-east-1": 5.157, + "us-east-1": 0.0, "us-east-2": 5.157, - "us-gov-east-1": 0.0, + "us-gov-east-1": 6.181, "us-gov-west-1": 0.0, "us-west-1": 5.669, "us-west-2": 0.0 @@ -64552,7 +71393,7 @@ "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.378, "ap-northeast-3": 0.361, "ap-south-1": 0.0, "ap-south-2": 0.0, @@ -64560,58 +71401,60 @@ "ap-southeast-2": 0.384, "ap-southeast-3": 0.384, "ap-southeast-4": 0.384, - "ca-central-1": 0.361, - "eu-central-1": 0.365, + "ca-central-1": 0.345, + "ca-west-1": 0.361, + "eu-central-1": 0.383, "eu-central-2": 0.392, "eu-north-1": 0.0, "eu-south-1": 0.374, "eu-south-2": 0.345, "eu-west-1": 0.361, - "eu-west-2": 0.358, + "eu-west-2": 0.0, "eu-west-3": 0.358, "il-central-1": 0.0, - "me-central-1": 0.388, + "me-central-1": 0.37, "me-south-1": 0.387, - "sa-east-1": 0.455, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.336, - "us-gov-east-1": 0.386, + "us-gov-east-1": 0.368, "us-gov-west-1": 0.368, "us-west-1": 0.361, "us-west-2": 0.321, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.384 }, "i3en.xlarge": { - "af-south-1": 0.728, + "af-south-1": 0.689, "ap-east-1": 0.0, - "ap-northeast-1": 0.627, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.627, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.642, "ap-south-2": 0.642, "ap-southeast-1": 0.672, "ap-southeast-2": 0.0, "ap-southeast-3": 0.672, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.672, "ca-central-1": 0.628, + "ca-west-1": 0.628, "eu-central-1": 0.0, "eu-central-2": 0.689, - "eu-north-1": 0.569, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.595, "eu-west-1": 0.595, "eu-west-2": 0.621, "eu-west-3": 0.621, "il-central-1": 0.0, - "me-central-1": 0.681, + "me-central-1": 0.645, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.547, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.641, "us-west-1": 0.595, - "us-west-2": 0.547, + "us-west-2": 0.576, "us-west-2-lax-1": 0.637 }, "i3en.metal": { @@ -64621,159 +71464,164 @@ "ap-northeast-2": 12.933, "ap-northeast-3": 12.933, "ap-south-1": 12.501, - "ap-south-2": 0.0, - "ap-southeast-1": 13.173, + "ap-south-2": 12.501, + "ap-southeast-1": 0.0, "ap-southeast-2": 13.173, "ap-southeast-3": 13.173, "ap-southeast-4": 13.173, "ca-central-1": 0.0, + "ca-west-1": 12.165, "eu-central-1": 13.125, "eu-central-2": 14.421, "eu-north-1": 11.541, - "eu-south-1": 12.751, + "eu-south-1": 0.0, "eu-south-2": 12.165, "eu-west-1": 0.0, "eu-west-2": 12.789, "eu-west-3": 12.789, - "il-central-1": 12.765, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 13.307, "sa-east-1": 17.445, "us-east-1": 11.013, "us-east-2": 11.013, - "us-gov-east-1": 13.269, + "us-gov-east-1": 0.0, "us-gov-west-1": 13.269, "us-west-1": 12.165, "us-west-2": 11.013, - "us-west-2-lax-1": 13.183 + "us-west-2-lax-1": 0.0 }, "i3en.2xlarge": { - "af-south-1": 1.353, - "ap-east-1": 1.358, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.229, "ap-northeast-3": 1.229, - "ap-south-1": 1.193, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 1.249, - "ap-southeast-3": 1.32, - "ap-southeast-4": 1.249, + "ap-southeast-3": 1.249, + "ap-southeast-4": 1.32, "ca-central-1": 1.165, - "eu-central-1": 0.0, + "ca-west-1": 1.23, + "eu-central-1": 1.245, "eu-central-2": 1.43, "eu-north-1": 1.113, "eu-south-1": 0.0, "eu-south-2": 1.165, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 1.285, "eu-west-3": 1.217, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 1.26, + "me-south-1": 0.0, "sa-east-1": 1.699, - "us-east-1": 1.128, + "us-east-1": 0.0, "us-east-2": 1.069, "us-gov-east-1": 1.257, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-2": 1.128, "us-west-2-lax-1": 1.32 }, "i3en.3xlarge": { "af-south-1": 1.947, "ap-east-1": 1.955, "ap-northeast-1": 1.865, - "ap-northeast-2": 1.761, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.761, "ap-south-1": 0.0, - "ap-south-2": 1.807, + "ap-south-2": 1.707, "ap-southeast-1": 1.791, "ap-southeast-2": 1.897, - "ap-southeast-3": 0.0, - "ap-southeast-4": 1.897, + "ap-southeast-3": 1.791, + "ap-southeast-4": 1.791, "ca-central-1": 1.763, + "ca-west-1": 1.763, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 1.841, + "eu-north-1": 1.68, + "eu-south-1": 0.0, "eu-south-2": 1.665, "eu-west-1": 1.763, - "eu-west-2": 1.743, + "eu-west-2": 1.846, "eu-west-3": 1.743, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 2.325, "us-east-1": 1.521, "us-east-2": 0.0, "us-gov-east-1": 1.909, "us-gov-west-1": 0.0, - "us-west-1": 1.665, + "us-west-1": 0.0, "us-west-2": 1.521, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 1.792 }, "i3en.6xlarge": { "af-south-1": 0.0, "ap-east-1": 3.978, "ap-northeast-1": 3.565, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.357, "ap-south-1": 3.249, - "ap-south-2": 3.249, + "ap-south-2": 3.449, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.629, "ap-southeast-3": 3.417, - "ap-southeast-4": 0.0, - "ca-central-1": 3.36, - "eu-central-1": 0.0, + "ap-southeast-4": 3.417, + "ca-central-1": 3.165, + "ca-west-1": 3.165, + "eu-central-1": 3.405, "eu-central-2": 3.961, "eu-north-1": 0.0, "eu-south-1": 3.311, - "eu-south-2": 3.165, - "eu-west-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 3.165, "eu-west-2": 0.0, "eu-west-3": 3.321, - "il-central-1": 3.52, + "il-central-1": 3.315, "me-central-1": 0.0, "me-south-1": 3.451, - "sa-east-1": 0.0, + "sa-east-1": 4.485, "us-east-1": 3.053, "us-east-2": 2.877, - "us-gov-east-1": 3.441, + "us-gov-east-1": 3.654, "us-gov-west-1": 3.654, - "us-west-1": 3.36, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "i3en.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 7.293, "ap-east-1": 7.325, "ap-northeast-1": 6.964, "ap-northeast-2": 6.549, "ap-northeast-3": 6.961, "ap-south-1": 6.333, - "ap-south-2": 6.333, + "ap-south-2": 6.734, "ap-southeast-1": 6.669, - "ap-southeast-2": 0.0, + "ap-southeast-2": 7.093, "ap-southeast-3": 7.093, "ap-southeast-4": 7.093, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 6.555, + "eu-central-1": 6.645, "eu-central-2": 7.756, "eu-north-1": 6.223, - "eu-south-1": 6.458, + "eu-south-1": 6.869, "eu-south-2": 6.555, - "eu-west-1": 0.0, + "eu-west-1": 6.165, "eu-west-2": 6.888, "eu-west-3": 6.477, - "il-central-1": 6.465, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 6.736, "sa-east-1": 9.367, "us-east-1": 5.941, "us-east-2": 5.941, - "us-gov-east-1": 0.0, + "us-gov-east-1": 7.142, "us-gov-west-1": 0.0, "us-west-1": 6.555, "us-west-2": 5.589, @@ -64786,12 +71634,13 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 12.933, "ap-south-1": 12.501, - "ap-south-2": 0.0, - "ap-southeast-1": 13.173, + "ap-south-2": 12.501, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 13.173, "ap-southeast-4": 13.173, "ca-central-1": 12.165, + "ca-west-1": 12.165, "eu-central-1": 13.125, "eu-central-2": 14.421, "eu-north-1": 11.541, @@ -64805,28 +71654,31 @@ "me-south-1": 13.307, "sa-east-1": 0.0, "us-east-1": 11.013, - "us-east-2": 11.013, + "us-east-2": 0.0, "us-gov-east-1": 13.269, "us-gov-west-1": 13.269, - "us-west-1": 12.165, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 13.183 }, "i4g.large": { + "ap-southeast-1": 0.28013, "ca-central-1": 0.2652, - "eu-west-1": 0.0, + "eu-west-1": 0.2652, "us-east-1": 0.0, "us-east-2": 0.26488, "us-west-2": 0.26488 }, "i4g.xlarge": { - "ca-central-1": 0.4354, + "ap-southeast-1": 0.46526, + "ca-central-1": 0.46944, "eu-west-1": 0.4354, - "us-east-1": 0.40388, + "us-east-1": 0.43477, "us-east-2": 0.0, "us-west-2": 0.40388 }, "i4g.2xlarge": { + "ap-southeast-1": 0.90552, "ca-central-1": 0.91388, "eu-west-1": 0.91388, "us-east-1": 0.0, @@ -64834,25 +71686,28 @@ "us-west-2": 0.78276 }, "i4g.4xlarge": { + "ap-southeast-1": 1.64604, "ca-central-1": 1.52659, - "eu-west-1": 0.0, + "eu-west-1": 1.52659, "us-east-1": 1.52407, "us-east-2": 1.52407, - "us-west-2": 0.0 + "us-west-2": 1.40052 }, "i4g.8xlarge": { + "ap-southeast-1": 3.12708, "ca-central-1": 3.16051, - "eu-west-1": 2.88819, + "eu-west-1": 3.16051, "us-east-1": 2.63604, "us-east-2": 0.0, - "us-west-2": 2.88314 + "us-west-2": 0.0 }, "i4g.16xlarge": { + "ap-southeast-1": 0.0, "ca-central-1": 0.0, "eu-west-1": 5.61137, "us-east-1": 5.10708, "us-east-2": 5.10708, - "us-west-2": 0.0 + "us-west-2": 5.10708 }, "i4i.large": { "af-south-1": 0.321, @@ -64861,50 +71716,60 @@ "ap-northeast-2": 0.316, "ap-northeast-3": 0.0, "ap-south-1": 0.29, - "ap-southeast-1": 0.301, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.301, - "ap-southeast-4": 0.321, - "ca-central-1": 0.0, + "ap-southeast-3": 0.321, + "ap-southeast-4": 0.301, + "ca-central-1": 0.284, + "ca-west-1": 0.303, "eu-central-1": 0.32, + "eu-central-2": 0.0, "eu-north-1": 0.274, "eu-south-1": 0.314, "eu-west-1": 0.303, "eu-west-2": 0.314, - "eu-west-3": 0.294, + "eu-west-3": 0.0, "il-central-1": 0.0, + "me-central-1": 0.0, "me-south-1": 0.303, "sa-east-1": 0.369, - "us-east-1": 0.284, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.302, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.284, - "us-west-2": 0.267 + "us-west-2": 0.0 }, "i4i.xlarge": { "af-south-1": 0.591, "ap-east-1": 0.594, - "ap-northeast-1": 0.498, - "ap-northeast-2": 0.498, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.538, "ap-northeast-3": 0.498, - "ap-south-1": 0.484, + "ap-south-1": 0.0, + "ap-south-2": 0.523, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.548, + "ap-southeast-3": 0.548, "ap-southeast-4": 0.548, - "ca-central-1": 0.473, - "eu-central-1": 0.0, - "eu-north-1": 0.489, + "ca-central-1": 0.0, + "ca-west-1": 0.473, + "eu-central-1": 0.504, + "eu-central-2": 0.0, + "eu-north-1": 0.454, "eu-south-1": 0.533, "eu-west-1": 0.511, "eu-west-2": 0.493, "eu-west-3": 0.493, "il-central-1": 0.532, + "me-central-1": 0.511, "me-south-1": 0.0, - "sa-east-1": 0.698, - "us-east-1": 0.438, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.55, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.55, "us-west-1": 0.511, "us-west-2": 0.473 }, @@ -64915,158 +71780,250 @@ "ap-northeast-2": 13.048, "ap-northeast-3": 13.048, "ap-south-1": 0.0, + "ap-south-2": 12.626, "ap-southeast-1": 13.33, - "ap-southeast-2": 13.33, + "ap-southeast-2": 0.0, + "ap-southeast-3": 13.33, "ap-southeast-4": 13.33, "ca-central-1": 0.0, + "ca-west-1": 12.274, "eu-central-1": 13.259, - "eu-north-1": 11.64, + "eu-central-2": 14.569, + "eu-north-1": 0.0, "eu-south-1": 12.907, "eu-west-1": 12.274, - "eu-west-2": 0.0, - "eu-west-3": 12.907, - "il-central-1": 0.0, + "eu-west-2": 12.907, + "eu-west-3": 0.0, + "il-central-1": 12.879, + "me-central-1": 0.0, "me-south-1": 13.471, "sa-east-1": 17.695, "us-east-1": 11.147, "us-east-2": 11.147, "us-gov-east-1": 13.4, - "us-gov-west-1": 13.4, + "us-gov-west-1": 0.0, "us-west-1": 12.274, "us-west-2": 11.147 }, "i4i.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.157, "ap-east-1": 1.162, "ap-northeast-1": 1.051, "ap-northeast-2": 1.051, "ap-northeast-3": 0.97, "ap-south-1": 0.944, + "ap-south-2": 1.022, "ap-southeast-1": 0.988, "ap-southeast-2": 0.0, + "ap-southeast-3": 0.988, "ap-southeast-4": 0.0, - "ca-central-1": 0.997, + "ca-central-1": 0.0, + "ca-west-1": 0.922, "eu-central-1": 0.983, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.997, "eu-west-2": 1.041, - "eu-west-3": 1.041, + "eu-west-3": 0.0, "il-central-1": 1.039, + "me-central-1": 1.08, "me-south-1": 0.997, - "sa-east-1": 1.37, + "sa-east-1": 0.0, "us-east-1": 0.92, - "us-east-2": 0.0, + "us-east-2": 0.851, "us-gov-east-1": 1.075, - "us-gov-west-1": 1.075, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.851 + "us-west-2": 0.0 }, "i4i.4xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, + "af-south-1": 2.149, + "ap-east-1": 2.159, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.775, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.775, - "ap-south-1": 1.878, + "ap-south-1": 1.723, + "ap-south-2": 1.878, "ap-southeast-1": 1.811, - "ap-southeast-2": 1.975, - "ap-southeast-4": 1.811, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.975, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 1.679, "eu-central-1": 0.0, + "eu-central-2": 2.146, "eu-north-1": 1.743, "eu-south-1": 0.0, "eu-west-1": 1.679, - "eu-west-2": 1.917, - "eu-west-3": 0.0, - "il-central-1": 0.0, + "eu-west-2": 1.758, + "eu-west-3": 1.758, + "il-central-1": 1.754, + "me-central-1": 1.995, "me-south-1": 1.995, - "sa-east-1": 2.356, - "us-east-1": 1.538, - "us-east-2": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.675, "us-gov-east-1": 1.819, "us-gov-west-1": 0.0, "us-west-1": 1.83, - "us-west-2": 1.675 + "us-west-2": 1.538 }, "i4i.8xlarge": { - "af-south-1": 3.773, + "af-south-1": 4.134, "ap-east-1": 4.153, "ap-northeast-1": 3.386, "ap-northeast-2": 3.386, - "ap-northeast-3": 3.386, - "ap-south-1": 3.592, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 3.28, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 3.785, "ap-southeast-4": 3.785, "ca-central-1": 3.192, - "eu-central-1": 3.439, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 3.766, "eu-north-1": 0.0, "eu-south-1": 3.669, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 3.669, "eu-west-3": 3.351, - "il-central-1": 3.661, - "me-south-1": 3.491, + "il-central-1": 0.0, + "me-central-1": 3.491, + "me-south-1": 3.824, "sa-east-1": 4.547, - "us-east-1": 2.911, + "us-east-1": 3.185, "us-east-2": 2.911, "us-gov-east-1": 3.474, "us-gov-west-1": 3.805, "us-west-1": 3.495, "us-west-2": 2.911 }, + "i4i.12xlarge": { + "af-south-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 4.996, + "ap-northeast-2": 4.996, + "ap-northeast-3": 4.996, + "ap-south-1": 0.0, + "ap-south-2": 4.838, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.595, + "ap-southeast-3": 0.0, + "ap-southeast-4": 5.102, + "ca-central-1": 5.16, + "ca-west-1": 5.16, + "eu-central-1": 5.075, + "eu-central-2": 0.0, + "eu-north-1": 4.468, + "eu-south-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 4.943, + "eu-west-3": 4.943, + "me-central-1": 5.155, + "me-south-1": 5.654, + "sa-east-1": 6.739, + "us-east-1": 0.0, + "us-east-2": 4.695, + "us-gov-east-1": 5.625, + "us-gov-west-1": 0.0, + "us-west-1": 4.706, + "us-west-2": 4.695 + }, "i4i.16xlarge": { "af-south-1": 8.103, "ap-east-1": 0.0, "ap-northeast-1": 6.607, - "ap-northeast-2": 0.0, + "ap-northeast-2": 6.607, "ap-northeast-3": 6.607, "ap-south-1": 6.395, - "ap-southeast-1": 0.0, + "ap-south-2": 6.395, + "ap-southeast-1": 6.747, "ap-southeast-2": 7.406, + "ap-southeast-3": 7.406, "ap-southeast-4": 6.747, "ca-central-1": 6.219, + "ca-west-1": 0.0, "eu-central-1": 6.712, + "eu-central-2": 7.367, "eu-north-1": 6.476, "eu-south-1": 0.0, "eu-west-1": 6.825, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0, + "me-central-1": 7.483, "me-south-1": 6.818, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 5.656, + "us-east-2": 6.205, "us-gov-east-1": 0.0, "us-gov-west-1": 7.444, "us-west-1": 0.0, "us-west-2": 0.0 }, + "i4i.24xlarge": { + "af-south-1": 0.0, + "ap-east-1": 12.12948, + "ap-northeast-1": 9.8274, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 10.44516, + "ap-south-2": 0.0, + "ap-southeast-1": 11.02596, + "ap-southeast-2": 11.02596, + "ap-southeast-3": 10.0386, + "ap-southeast-4": 10.0386, + "ca-central-1": 10.15476, + "ca-west-1": 10.15476, + "eu-central-1": 9.9858, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 10.67748, + "eu-west-3": 9.7218, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 14.62692, + "us-east-1": 8.4018, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 9.2466, + "us-west-2": 8.4018 + }, "i4i.32xlarge": { - "af-south-1": 14.597, - "ap-east-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 14.6674, "ap-northeast-1": 13.0482, - "ap-northeast-2": 13.0482, + "ap-northeast-2": 0.0, "ap-northeast-3": 13.0482, - "ap-south-1": 12.6258, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 12.6258, + "ap-southeast-1": 13.3298, "ap-southeast-2": 0.0, + "ap-southeast-3": 13.3298, "ap-southeast-4": 13.3298, - "ca-central-1": 12.2738, + "ca-central-1": 0.0, + "ca-west-1": 12.2738, "eu-central-1": 13.2594, - "eu-north-1": 11.6402, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 12.9074, "eu-west-1": 12.2738, - "eu-west-2": 0.0, - "eu-west-3": 12.9074, + "eu-west-2": 12.9074, + "eu-west-3": 0.0, "il-central-1": 0.0, + "me-central-1": 13.4706, "me-south-1": 13.4706, - "sa-east-1": 17.6946, + "sa-east-1": 0.0, "us-east-1": 11.1474, - "us-east-2": 0.0, + "us-east-2": 11.1474, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 13.4002, "us-west-1": 0.0, "us-west-2": 11.1474 }, @@ -65078,32 +72035,32 @@ "eu-central-1": 0.0, "eu-west-1": 0.29555, "eu-west-2": 0.30605, - "eu-west-3": 0.0, + "eu-west-3": 0.30605, "us-east-1": 0.2769, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 0.29509, + "us-west-2": 0.29509 }, "im4gn.xlarge": { "ap-northeast-1": 0.52176, "ap-southeast-1": 0.53108, - "ap-southeast-2": 0.0, - "ca-central-1": 0.53621, + "ap-southeast-2": 0.57469, + "ca-central-1": 0.4961, "eu-central-1": 0.0, "eu-west-1": 0.4961, - "eu-west-2": 0.0, + "eu-west-2": 0.5593, "eu-west-3": 0.5593, "us-east-1": 0.49517, - "us-east-2": 0.45879, + "us-east-2": 0.0, "us-west-2": 0.0 }, "im4gn.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.10386, "ap-southeast-1": 1.03717, "ap-southeast-2": 1.12438, "ca-central-1": 1.04743, "eu-central-1": 0.0, - "eu-west-1": 1.04743, - "eu-west-2": 1.00918, + "eu-west-1": 0.96721, + "eu-west-2": 1.0936, "eu-west-3": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, @@ -65111,12 +72068,12 @@ }, "im4gn.4xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 1.90934, + "ap-southeast-1": 2.08377, "ap-southeast-2": 2.08377, - "ca-central-1": 1.92986, + "ca-central-1": 0.0, "eu-central-1": 1.90001, - "eu-west-1": 1.76942, - "eu-west-2": 1.85337, + "eu-west-1": 1.92986, + "eu-west-2": 0.0, "eu-west-3": 0.0, "us-east-1": 1.62017, "us-east-2": 1.76568, @@ -65124,25 +72081,25 @@ }, "im4gn.8xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 4.00254, - "ap-southeast-2": 4.00254, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 3.63502, "eu-west-1": 3.69472, - "eu-west-2": 3.54174, + "eu-west-2": 3.87941, "eu-west-3": 3.87941, - "us-east-1": 3.36637, + "us-east-1": 0.0, "us-east-2": 3.07534, - "us-west-2": 0.0 + "us-west-2": 3.36637 }, "im4gn.16xlarge": { "ap-northeast-1": 6.9931, "ap-southeast-1": 7.14234, - "ap-southeast-2": 7.14234, + "ap-southeast-2": 0.0, "ca-central-1": 6.58266, "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 6.91847, + "eu-west-2": 0.0, "eu-west-3": 6.91847, "us-east-1": 5.98567, "us-east-2": 5.98567, @@ -65150,8 +72107,8 @@ }, "inf1.xlarge": { "ap-east-1": 0.468, - "ap-northeast-1": 0.403, - "ap-northeast-2": 0.393, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 0.349, "ap-southeast-1": 0.422, "ap-southeast-2": 0.0, @@ -65160,31 +72117,31 @@ "eu-north-1": 0.337, "eu-south-1": 0.38, "eu-west-1": 0.349, - "eu-west-2": 0.0, - "eu-west-3": 0.378, - "me-south-1": 0.0, + "eu-west-2": 0.362, + "eu-west-3": 0.362, + "me-south-1": 0.375, "sa-east-1": 0.472, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 0.337, + "us-east-2": 0.337, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.323 + "us-west-1": 0.369, + "us-west-2": 0.337 }, "inf1.2xlarge": { "ap-east-1": 0.756, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.683, "ap-northeast-2": 0.611, - "ap-south-1": 0.546, + "ap-south-1": 0.0, "ap-southeast-1": 0.683, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.618, "ca-central-1": 0.0, "eu-central-1": 0.645, "eu-north-1": 0.573, - "eu-south-1": 0.0, + "eu-south-1": 0.617, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.588, + "eu-west-2": 0.589, + "eu-west-3": 0.613, "me-south-1": 0.637, "sa-east-1": 0.799, "us-east-1": 0.527, @@ -65199,12 +72156,12 @@ "ap-northeast-1": 1.855, "ap-northeast-2": 1.705, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.64, + "ap-southeast-1": 1.759, + "ap-southeast-2": 0.0, "ca-central-1": 1.48, "eu-central-1": 1.64, - "eu-north-1": 0.0, - "eu-south-1": 1.547, + "eu-north-1": 1.419, + "eu-south-1": 1.637, "eu-west-1": 1.48, "eu-west-2": 1.547, "eu-west-3": 1.544, @@ -65212,10 +72169,10 @@ "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.345, - "us-gov-east-1": 0.0, + "us-gov-east-1": 1.743, "us-gov-west-1": 1.653, "us-west-1": 0.0, - "us-west-2": 1.416 + "us-west-2": 1.345 }, "inf1.24xlarge": { "af-south-1": 6.789, @@ -65223,26 +72180,27 @@ "ap-northeast-1": 6.541, "ap-northeast-2": 5.977, "ap-south-1": 5.13, - "ap-southeast-1": 6.924, + "ap-southeast-1": 6.541, "ap-southeast-2": 0.0, "ca-central-1": 5.741, "eu-central-1": 6.421, - "eu-north-1": 5.181, + "eu-north-1": 0.0, "eu-south-1": 5.695, "eu-west-1": 5.425, - "eu-west-2": 6.026, + "eu-west-2": 5.695, "eu-west-3": 0.0, "me-south-1": 0.0, "sa-east-1": 8.433, "us-east-1": 0.0, "us-east-2": 4.886, - "us-gov-east-1": 6.475, + "us-gov-east-1": 0.0, "us-gov-west-1": 6.475, "us-west-1": 0.0, "us-west-2": 4.886 }, "is4gen.medium": { "ap-northeast-1": 0.26458, + "ap-south-1": 0.25875, "ap-southeast-1": 0.26776, "ap-southeast-2": 0.26776, "ca-central-1": 0.25438, @@ -65256,6 +72214,7 @@ }, "is4gen.large": { "ap-northeast-1": 0.43415, + "ap-south-1": 0.4225, "ap-southeast-1": 0.44053, "ap-southeast-2": 0.44053, "ca-central-1": 0.41375, @@ -65269,6 +72228,7 @@ }, "is4gen.xlarge": { "ap-northeast-1": 0.7733, + "ap-south-1": 0.75, "ap-southeast-1": 0.78605, "ap-southeast-2": 0.78605, "ca-central-1": 0.7325, @@ -65282,6 +72242,7 @@ }, "is4gen.2xlarge": { "ap-northeast-1": 1.5216, + "ap-south-1": 1.475, "ap-southeast-1": 1.5471, "ap-southeast-2": 1.5471, "ca-central-1": 1.44, @@ -65295,6 +72256,7 @@ }, "is4gen.4xlarge": { "ap-northeast-1": 2.8782, + "ap-south-1": 2.785, "ap-southeast-1": 2.92921, "ap-southeast-2": 2.92921, "ca-central-1": 2.715, @@ -65308,6 +72270,7 @@ }, "is4gen.8xlarge": { "ap-northeast-1": 5.5914, + "ap-south-1": 5.405, "ap-southeast-1": 5.69342, "ap-southeast-2": 5.69342, "ca-central-1": 5.265, @@ -65323,78 +72286,78 @@ "ap-northeast-1": 0.224, "ap-northeast-2": 0.2303, "ap-northeast-3": 0.2369, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.22, - "ca-central-1": 0.0, + "ap-south-1": 0.2105, + "ap-southeast-1": 0.2325, + "ap-southeast-2": 0.2325, + "ca-central-1": 0.2171, "eu-central-1": 0.215, "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.195, + "sa-east-1": 0.2699, + "us-east-1": 0.0, "us-east-2": 0.205, "us-gov-west-1": 0.2336, - "us-west-1": 0.212, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 0.205 }, "m4.xlarge": { - "ap-northeast-1": 0.3788, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.3656, - "ap-northeast-3": 0.3788, + "ap-northeast-3": 0.0, "ap-south-1": 0.305, - "ap-southeast-1": 0.345, + "ap-southeast-1": 0.37, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.317, - "eu-west-2": 0.0, + "eu-west-2": 0.327, "sa-east-1": 0.4448, "us-east-1": 0.295, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.3722, "us-west-1": 0.329, "us-west-2": 0.295 }, "m4.2xlarge": { "ap-northeast-1": 0.7326, "ap-northeast-2": 0.7062, - "ap-northeast-3": 0.681, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.665, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.6534, "eu-central-1": 0.645, "eu-west-1": 0.6534, - "eu-west-2": 0.629, + "eu-west-2": 0.0, "sa-east-1": 0.801, - "us-east-1": 0.0, + "us-east-1": 0.605, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.6798, + "us-west-2": 0.565 }, "m4.4xlarge": { "ap-northeast-1": 1.197, - "ap-northeast-2": 0.0, - "ap-northeast-3": 1.3002, + "ap-northeast-2": 1.149, + "ap-northeast-3": 0.0, "ap-south-1": 1.089, - "ap-southeast-1": 1.265, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.165, "ca-central-1": 1.1418, "eu-central-1": 1.221, "eu-west-1": 1.1418, "eu-west-2": 1.1858, "sa-east-1": 1.437, "us-east-1": 1.045, - "us-east-2": 1.045, - "us-gov-west-1": 1.173, + "us-east-2": 0.0, + "us-gov-west-1": 1.2738, "us-west-1": 1.1946, - "us-west-2": 0.965 + "us-west-2": 0.0 }, "m4.10xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.745, "ap-northeast-2": 2.625, - "ap-south-1": 2.265, + "ap-south-1": 0.0, "ap-southeast-1": 2.665, "ap-southeast-2": 2.665, "ca-central-1": 2.385, @@ -65405,7 +72368,7 @@ "us-east-1": 0.0, "us-east-2": 2.165, "us-gov-west-1": 2.685, - "us-west-1": 2.505, + "us-west-1": 0.0, "us-west-2": 2.165 }, "m4.16xlarge": { @@ -65414,33 +72377,34 @@ "ap-northeast-3": 4.293, "ap-south-1": 3.525, "ap-southeast-1": 4.165, - "ap-southeast-2": 4.165, + "ap-southeast-2": 0.0, "ca-central-1": 3.717, "eu-central-1": 4.005, "eu-west-1": 3.717, "eu-west-2": 3.877, "sa-east-1": 5.253, "us-east-1": 3.365, - "us-east-2": 3.365, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-1": 3.909, "us-west-2": 3.365 }, "m5.large": { - "af-south-1": 0.0, + "af-south-1": 0.23, "ap-east-1": 0.227, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.22, + "ap-northeast-1": 0.219, + "ap-northeast-2": 0.213, "ap-northeast-3": 0.226, - "ap-south-1": 0.0, + "ap-south-1": 0.202, "ap-south-2": 0.202, "ap-southeast-1": 0.0, "ap-southeast-2": 0.222, "ap-southeast-3": 0.222, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.215, "ca-central-1": 0.0, + "ca-west-1": 0.213, "eu-central-1": 0.21, - "eu-central-2": 0.0, + "eu-central-2": 0.229, "eu-north-1": 0.197, "eu-south-1": 0.214, "eu-south-2": 0.0, @@ -65448,75 +72412,77 @@ "eu-west-2": 0.206, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 0.213, + "me-central-1": 0.22, "me-south-1": 0.213, - "sa-east-1": 0.257, - "us-east-1": 0.197, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.223, - "us-gov-west-1": 0.216, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.207, "us-west-2": 0.197, - "us-west-2-lax-1": 0.21 + "us-west-2-lax-1": 0.0 }, "m5.xlarge": { "af-south-1": 0.349, "ap-east-1": 0.359, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.345, + "ap-northeast-1": 0.343, + "ap-northeast-2": 0.331, "ap-northeast-3": 0.0, - "ap-south-1": 0.297, - "ap-south-2": 0.297, + "ap-south-1": 0.309, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.335, - "ap-southeast-4": 0.335, + "ap-southeast-4": 0.359, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.339, - "eu-central-2": 0.363, - "eu-north-1": 0.0, - "eu-south-1": 0.319, - "eu-south-2": 0.309, + "eu-central-2": 0.348, + "eu-north-1": 0.311, + "eu-south-1": 0.332, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 0.317, + "eu-west-3": 0.332, "il-central-1": 0.342, - "me-central-1": 0.33, + "me-central-1": 0.0, "me-south-1": 0.33, - "sa-east-1": 0.418, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.299, "us-east-2": 0.0, "us-gov-east-1": 0.352, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.352, "us-west-1": 0.0, "us-west-2": 0.299, "us-west-2-lax-1": 0.339 }, "m5.metal": { - "af-south-1": 6.261, + "af-south-1": 0.0, "ap-east-1": 6.501, - "ap-northeast-1": 6.117, + "ap-northeast-1": 0.0, "ap-northeast-2": 5.829, "ap-northeast-3": 0.0, "ap-south-1": 5.013, "ap-south-2": 5.013, "ap-southeast-1": 5.925, "ap-southeast-2": 5.925, - "ap-southeast-3": 5.925, - "ap-southeast-4": 5.925, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 5.301, + "ca-west-1": 5.301, "eu-central-1": 0.0, "eu-central-2": 6.237, "eu-north-1": 5.061, "eu-south-1": 5.541, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 5.301, "eu-west-2": 5.493, - "eu-west-3": 5.541, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 5.815, - "me-south-1": 0.0, - "sa-east-1": 7.509, + "me-south-1": 5.815, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 5.973, @@ -65526,84 +72492,87 @@ "us-west-2-lax-1": 5.695 }, "m5.2xlarge": { - "af-south-1": 0.703, + "af-south-1": 0.0, "ap-east-1": 0.693, "ap-northeast-1": 0.691, - "ap-northeast-2": 0.637, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.661, - "ap-south-1": 0.0, + "ap-south-1": 0.593, "ap-south-2": 0.0, - "ap-southeast-1": 0.645, + "ap-southeast-1": 0.674, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.674, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.693, "ca-central-1": 0.619, + "ca-west-1": 0.0, "eu-central-1": 0.653, - "eu-central-2": 0.0, - "eu-north-1": 0.597, + "eu-central-2": 0.701, + "eu-north-1": 0.573, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.619, "eu-west-1": 0.593, "eu-west-2": 0.0, - "eu-west-3": 0.613, + "eu-west-3": 0.0, "il-central-1": 0.614, - "me-central-1": 0.636, - "me-south-1": 0.636, + "me-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.572, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.649, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.678, "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-2": 0.549, "us-west-2-lax-1": 0.626 }, "m5.4xlarge": { "af-south-1": 1.181, "ap-east-1": 1.221, - "ap-northeast-1": 1.157, - "ap-northeast-2": 1.165, - "ap-northeast-3": 1.157, - "ap-south-1": 1.021, - "ap-south-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 1.021, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.183, "ap-southeast-4": 1.125, "ca-central-1": 0.0, - "eu-central-1": 1.085, - "eu-central-2": 0.0, + "ca-west-1": 1.021, + "eu-central-1": 0.0, + "eu-central-2": 1.238, "eu-north-1": 1.03, "eu-south-1": 1.061, - "eu-south-2": 1.072, - "eu-west-1": 0.0, - "eu-west-2": 1.106, + "eu-south-2": 1.021, + "eu-west-1": 1.072, + "eu-west-2": 1.053, "eu-west-3": 1.115, - "il-central-1": 1.064, + "il-central-1": 0.0, "me-central-1": 1.163, "me-south-1": 1.107, - "sa-east-1": 0.0, + "sa-east-1": 1.389, "us-east-1": 0.979, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 1.061, - "us-west-2": 0.0, + "us-gov-west-1": 1.191, + "us-west-1": 1.115, + "us-west-2": 0.933, "us-west-2-lax-1": 1.087 }, "m5.8xlarge": { "af-south-1": 2.319, - "ap-east-1": 0.0, - "ap-northeast-1": 2.268, - "ap-northeast-2": 2.053, + "ap-east-1": 2.404, + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.165, "ap-northeast-3": 2.149, "ap-south-1": 1.781, - "ap-south-2": 1.878, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 2.2, - "ap-southeast-3": 2.2, - "ap-southeast-4": 0.0, - "ca-central-1": 1.98, + "ap-southeast-3": 0.0, + "ap-southeast-4": 2.085, + "ca-central-1": 1.877, + "ca-west-1": 2.048, "eu-central-1": 2.005, "eu-central-2": 2.189, "eu-north-1": 0.0, @@ -65617,12 +72586,12 @@ "me-south-1": 2.048, "sa-east-1": 2.751, "us-east-1": 1.793, - "us-east-2": 1.793, + "us-east-2": 1.701, "us-gov-east-1": 2.101, - "us-gov-west-1": 2.217, + "us-gov-west-1": 2.101, "us-west-1": 2.065, "us-west-2": 1.793, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 2.119 }, "m5.12xlarge": { "af-south-1": 0.0, @@ -65630,59 +72599,61 @@ "ap-northeast-1": 3.32, "ap-northeast-2": 2.997, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 2.589, + "ap-south-1": 2.589, + "ap-south-2": 2.734, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 3.045, "ap-southeast-4": 3.333, - "ca-central-1": 2.733, + "ca-central-1": 2.887, + "ca-west-1": 2.99, "eu-central-1": 2.925, - "eu-central-2": 3.383, + "eu-central-2": 0.0, "eu-north-1": 2.613, - "eu-south-1": 3.014, + "eu-south-1": 2.853, "eu-south-2": 2.887, - "eu-west-1": 0.0, + "eu-west-1": 2.887, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 2.861, + "eu-west-3": 2.853, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 3.159, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 2.607, "us-gov-east-1": 3.069, "us-gov-west-1": 0.0, "us-west-1": 2.853, "us-west-2": 0.0, - "us-west-2-lax-1": 2.93 + "us-west-2-lax-1": 3.096 }, "m5.16xlarge": { "af-south-1": 4.229, "ap-east-1": 4.389, - "ap-northeast-1": 4.133, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 4.371, "ap-south-1": 3.591, "ap-south-2": 3.591, "ap-southeast-1": 4.005, - "ap-southeast-2": 0.0, + "ap-southeast-2": 4.005, "ap-southeast-3": 4.235, "ap-southeast-4": 0.0, - "ca-central-1": 3.589, + "ca-central-1": 3.794, + "ca-west-1": 3.931, "eu-central-1": 3.845, - "eu-central-2": 4.456, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 3.589, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.749, "il-central-1": 3.76, - "me-central-1": 3.931, + "me-central-1": 4.157, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 3.237, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 4.037, "us-gov-west-1": 0.0, @@ -65695,24 +72666,25 @@ "ap-east-1": 6.501, "ap-northeast-1": 6.117, "ap-northeast-2": 0.0, - "ap-northeast-3": 6.117, + "ap-northeast-3": 0.0, "ap-south-1": 5.013, - "ap-south-2": 0.0, + "ap-south-2": 5.013, "ap-southeast-1": 5.925, "ap-southeast-2": 0.0, - "ap-southeast-3": 5.925, + "ap-southeast-3": 0.0, "ap-southeast-4": 5.925, "ca-central-1": 5.301, + "ca-west-1": 5.301, "eu-central-1": 5.685, "eu-central-2": 6.237, - "eu-north-1": 5.061, + "eu-north-1": 0.0, "eu-south-1": 5.541, "eu-south-2": 5.301, "eu-west-1": 5.301, - "eu-west-2": 5.493, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 5.815, + "me-central-1": 0.0, "me-south-1": 5.815, "sa-east-1": 7.509, "us-east-1": 4.773, @@ -65720,8 +72692,8 @@ "us-gov-east-1": 5.973, "us-gov-west-1": 5.973, "us-west-1": 5.541, - "us-west-2": 0.0, - "us-west-2-lax-1": 5.695 + "us-west-2": 4.773, + "us-west-2-lax-1": 0.0 }, "m5a.large": { "ap-northeast-1": 0.207, @@ -66035,43 +73007,45 @@ "ap-northeast-3": 0.25, "ap-south-1": 0.224, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.244, "ap-southeast-2": 0.0, "ap-southeast-3": 0.236, "ap-southeast-4": 0.237, - "ca-central-1": 0.221, + "ca-central-1": 0.229, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.245, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.227, - "eu-south-2": 0.0, - "eu-west-1": 0.229, - "eu-west-2": 0.234, + "eu-south-2": 0.229, + "eu-west-1": 0.221, + "eu-west-2": 0.226, "eu-west-3": 0.227, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.234, - "sa-east-1": 0.275, - "us-east-1": 0.215, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.247, - "us-west-1": 0.228, + "us-west-1": 0.236, "us-west-2": 0.215 }, "m5d.xlarge": { "af-south-1": 0.413, - "ap-east-1": 0.424, - "ap-northeast-1": 0.387, - "ap-northeast-2": 0.373, - "ap-northeast-3": 0.405, - "ap-south-1": 0.0, + "ap-east-1": 0.405, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.387, + "ap-south-1": 0.339, "ap-south-2": 0.339, - "ap-southeast-1": 0.394, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.379, + "ap-southeast-1": 0.377, + "ap-southeast-2": 0.396, + "ap-southeast-3": 0.377, + "ap-southeast-4": 0.396, "ca-central-1": 0.362, + "ca-west-1": 0.347, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.349, @@ -66079,16 +73053,16 @@ "eu-south-2": 0.362, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.389, - "me-south-1": 0.372, + "eu-west-3": 0.375, + "il-central-1": 0.36, + "me-central-1": 0.372, + "me-south-1": 0.0, "sa-east-1": 0.455, - "us-east-1": 0.335, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.381, - "us-gov-west-1": 0.398, - "us-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.381, + "us-west-1": 0.377, "us-west-2": 0.0 }, "m5d.metal": { @@ -66099,35 +73073,36 @@ "ap-northeast-3": 0.0, "ap-south-1": 6.021, "ap-south-2": 6.021, - "ap-southeast-1": 6.933, - "ap-southeast-2": 6.981, - "ap-southeast-3": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 6.933, "ap-southeast-4": 6.981, - "ca-central-1": 6.213, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 6.693, "eu-central-2": 7.346, "eu-north-1": 5.925, "eu-south-1": 0.0, "eu-south-2": 6.213, "eu-west-1": 6.213, - "eu-west-2": 0.0, + "eu-west-2": 6.453, "eu-west-3": 6.501, "il-central-1": 6.515, - "me-central-1": 0.0, + "me-central-1": 6.818, "me-south-1": 0.0, "sa-east-1": 8.805, "us-east-1": 5.589, "us-east-2": 5.589, "us-gov-east-1": 7.029, - "us-gov-west-1": 0.0, + "us-gov-west-1": 7.029, "us-west-1": 6.549, "us-west-2": 5.589 }, "m5d.2xlarge": { - "af-south-1": 0.801, + "af-south-1": 0.0, "ap-east-1": 0.785, "ap-northeast-1": 0.784, - "ap-northeast-2": 0.721, + "ap-northeast-2": 0.754, "ap-northeast-3": 0.0, "ap-south-1": 0.653, "ap-south-2": 0.653, @@ -66136,22 +73111,23 @@ "ap-southeast-3": 0.729, "ap-southeast-4": 0.733, "ca-central-1": 0.0, + "ca-west-1": 0.699, "eu-central-1": 0.709, - "eu-central-2": 0.0, - "eu-north-1": 0.645, + "eu-central-2": 0.799, + "eu-north-1": 0.0, "eu-south-1": 0.725, "eu-south-2": 0.0, - "eu-west-1": 0.669, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.693, + "eu-west-3": 0.0, "il-central-1": 0.694, "me-central-1": 0.719, - "me-south-1": 0.719, + "me-south-1": 0.753, "sa-east-1": 0.885, "us-east-1": 0.644, "us-east-2": 0.644, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.771, "us-west-1": 0.697, "us-west-2": 0.0 }, @@ -66166,26 +73142,27 @@ "ap-southeast-1": 1.293, "ap-southeast-2": 1.301, "ap-southeast-3": 1.293, - "ap-southeast-4": 0.0, - "ca-central-1": 1.233, + "ap-southeast-4": 1.369, + "ca-central-1": 0.0, + "ca-west-1": 1.233, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 1.434, "eu-north-1": 1.183, "eu-south-1": 1.221, "eu-south-2": 0.0, - "eu-west-1": 1.173, + "eu-west-1": 0.0, "eu-west-2": 1.213, "eu-west-3": 0.0, "il-central-1": 1.287, - "me-central-1": 0.0, + "me-central-1": 1.34, "me-south-1": 1.274, - "sa-east-1": 1.605, - "us-east-1": 0.0, - "us-east-2": 1.123, - "us-gov-east-1": 1.309, + "sa-east-1": 1.688, + "us-east-1": 1.123, + "us-east-2": 1.069, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 1.293, - "us-west-2": 1.069 + "us-west-2": 0.0 }, "m5d.8xlarge": { "af-south-1": 0.0, @@ -66194,28 +73171,29 @@ "ap-northeast-2": 2.389, "ap-northeast-3": 0.0, "ap-south-1": 2.117, - "ap-south-2": 2.117, + "ap-south-2": 2.234, "ap-southeast-1": 2.421, "ap-southeast-2": 2.437, "ap-southeast-3": 2.556, - "ap-southeast-4": 2.573, + "ap-southeast-4": 0.0, "ca-central-1": 2.302, + "ca-west-1": 2.302, "eu-central-1": 2.341, "eu-central-2": 0.0, "eu-north-1": 2.085, - "eu-south-1": 2.404, - "eu-south-2": 2.302, - "eu-west-1": 0.0, - "eu-west-2": 2.261, + "eu-south-1": 2.277, + "eu-south-2": 0.0, + "eu-west-1": 2.302, + "eu-west-2": 2.387, "eu-west-3": 2.277, "il-central-1": 0.0, "me-central-1": 2.383, "me-south-1": 2.383, - "sa-east-1": 3.211, + "sa-east-1": 0.0, "us-east-1": 1.973, "us-east-2": 1.973, "us-gov-east-1": 2.453, - "us-gov-west-1": 2.59, + "us-gov-west-1": 2.453, "us-west-1": 2.293, "us-west-2": 1.973 }, @@ -66225,28 +73203,29 @@ "ap-northeast-1": 3.669, "ap-northeast-2": 3.501, "ap-northeast-3": 3.669, - "ap-south-1": 3.093, - "ap-south-2": 3.269, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.573, "ap-southeast-3": 3.549, "ap-southeast-4": 0.0, "ca-central-1": 3.189, - "eu-central-1": 3.625, + "ca-west-1": 3.189, + "eu-central-1": 0.0, "eu-central-2": 3.755, "eu-north-1": 3.045, "eu-south-1": 3.333, "eu-south-2": 3.37, - "eu-west-1": 3.189, + "eu-west-1": 3.37, "eu-west-2": 3.309, - "eu-west-3": 3.523, + "eu-west-3": 0.0, "il-central-1": 3.531, - "me-central-1": 0.0, + "me-central-1": 3.491, "me-south-1": 0.0, "sa-east-1": 4.485, "us-east-1": 2.877, "us-east-2": 0.0, - "us-gov-east-1": 3.803, + "us-gov-east-1": 0.0, "us-gov-west-1": 3.597, "us-west-1": 3.549, "us-west-2": 0.0 @@ -66256,26 +73235,27 @@ "ap-east-1": 5.423, "ap-northeast-1": 4.837, "ap-northeast-2": 4.613, - "ap-northeast-3": 0.0, + "ap-northeast-3": 4.837, "ap-south-1": 4.069, "ap-south-2": 4.069, "ap-southeast-1": 4.677, "ap-southeast-2": 0.0, "ap-southeast-3": 4.948, "ap-southeast-4": 4.709, - "ca-central-1": 0.0, + "ca-central-1": 4.197, + "ca-west-1": 4.197, "eu-central-1": 4.517, - "eu-central-2": 4.952, + "eu-central-2": 5.239, "eu-north-1": 4.005, "eu-south-1": 4.389, - "eu-south-2": 4.197, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 4.357, + "eu-west-2": 0.0, "eu-west-3": 4.389, "il-central-1": 0.0, - "me-central-1": 4.6, + "me-central-1": 0.0, "me-south-1": 4.6, - "sa-east-1": 6.257, + "sa-east-1": 0.0, "us-east-1": 3.781, "us-east-2": 3.781, "us-gov-east-1": 4.741, @@ -66296,6 +73276,7 @@ "ap-southeast-3": 6.933, "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 6.213, "eu-central-1": 0.0, "eu-central-2": 7.346, "eu-north-1": 5.925, @@ -66318,29 +73299,29 @@ "m5dn.large": { "ap-northeast-1": 0.27, "ap-southeast-1": 0.0, - "eu-central-1": 0.267, + "eu-central-1": 0.0, "eu-west-1": 0.256, "us-east-1": 0.0, "us-east-2": 0.239, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.266, "us-gov-west-1": 0.0, "us-west-2": 0.239 }, "m5dn.xlarge": { "ap-northeast-1": 0.466, "ap-southeast-1": 0.429, - "eu-central-1": 0.0, + "eu-central-1": 0.419, "eu-west-1": 0.399, "us-east-1": 0.0, - "us-east-2": 0.383, + "us-east-2": 0.0, "us-gov-east-1": 0.458, - "us-gov-west-1": 0.458, + "us-gov-west-1": 0.437, "us-west-2": 0.0 }, "m5dn.metal": { "ap-northeast-1": 8.565, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 7.941, "eu-west-1": 7.461, "us-east-1": 0.0, "us-east-2": 6.693, @@ -66351,11 +73332,11 @@ "m5dn.2xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 0.773, + "eu-central-1": 0.852, + "eu-west-1": 0.809, "us-east-1": 0.742, "us-east-2": 0.709, - "us-gov-east-1": 0.89, + "us-gov-east-1": 0.849, "us-gov-west-1": 0.89, "us-west-2": 0.742 }, @@ -66364,49 +73345,49 @@ "ap-southeast-1": 1.501, "eu-central-1": 1.461, "eu-west-1": 0.0, - "us-east-1": 1.253, - "us-east-2": 1.318, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 1.615, - "us-gov-west-1": 1.615, + "us-gov-west-1": 0.0, "us-west-2": 1.318 }, "m5dn.8xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, + "ap-northeast-1": 3.133, + "ap-southeast-1": 2.997, "eu-central-1": 2.757, - "eu-west-1": 2.597, + "eu-west-1": 2.743, "us-east-1": 2.472, - "us-east-2": 0.0, - "us-gov-east-1": 2.901, + "us-east-2": 2.341, + "us-gov-east-1": 0.0, "us-gov-west-1": 3.065, - "us-west-2": 0.0 + "us-west-2": 2.472 }, "m5dn.12xlarge": { "ap-northeast-1": 4.617, - "ap-southeast-1": 4.173, + "ap-southeast-1": 4.413, "eu-central-1": 0.0, - "eu-west-1": 4.032, + "eu-west-1": 3.813, "us-east-1": 3.429, - "us-east-2": 0.0, + "us-east-2": 3.625, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.269, - "us-west-2": 3.625 + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "m5dn.16xlarge": { "ap-northeast-1": 5.765, - "ap-southeast-1": 5.83, + "ap-southeast-1": 5.509, "eu-central-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 4.517, + "us-east-1": 4.778, "us-east-2": 4.778, "us-gov-east-1": 5.637, - "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-west-1": 5.637, + "us-west-2": 4.778 }, "m5dn.24xlarge": { "ap-northeast-1": 8.565, "ap-southeast-1": 0.0, - "eu-central-1": 7.941, + "eu-central-1": 0.0, "eu-west-1": 7.461, "us-east-1": 0.0, "us-east-2": 6.693, @@ -66415,15 +73396,15 @@ "us-west-2": 6.693 }, "m5n.large": { - "ap-northeast-1": 0.257, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.25, "eu-central-1": 0.0, "eu-west-1": 0.236, - "us-east-1": 0.221, + "us-east-1": 0.0, "us-east-2": 0.214, "us-gov-east-1": 0.244, "us-gov-west-1": 0.0, - "us-west-2": 0.221 + "us-west-2": 0.214 }, "m5n.xlarge": { "ap-northeast-1": 0.0, @@ -66433,8 +73414,8 @@ "us-east-1": 0.0, "us-east-2": 0.347, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.393, - "us-west-2": 0.333 + "us-gov-west-1": 0.411, + "us-west-2": 0.347 }, "m5n.metal": { "ap-northeast-1": 7.509, @@ -66443,7 +73424,7 @@ "us-east-1": 0.0, "us-east-2": 5.877, "us-gov-east-1": 7.317, - "us-gov-west-1": 0.0, + "us-gov-west-1": 7.317, "us-west-2": 5.877 }, "m5n.2xlarge": { @@ -66453,16 +73434,16 @@ "eu-west-1": 0.0, "us-east-1": 0.67, "us-east-2": 0.67, - "us-gov-east-1": 0.797, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.797, - "us-west-2": 0.67 + "us-west-2": 0.641 }, "m5n.4xlarge": { "ap-northeast-1": 1.462, "ap-southeast-1": 0.0, "eu-central-1": 1.361, - "eu-west-1": 0.0, - "us-east-1": 1.117, + "eu-west-1": 1.229, + "us-east-1": 1.174, "us-east-2": 0.0, "us-gov-east-1": 1.429, "us-gov-west-1": 1.357, @@ -66472,23 +73453,23 @@ "ap-northeast-1": 2.76, "ap-southeast-1": 2.641, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 2.421, "us-east-1": 0.0, "us-east-2": 2.069, "us-gov-east-1": 2.692, - "us-gov-west-1": 2.692, + "us-gov-west-1": 0.0, "us-west-2": 2.183 }, "m5n.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.837, "ap-southeast-1": 0.0, - "eu-central-1": 3.752, + "eu-central-1": 0.0, "eu-west-1": 3.357, - "us-east-1": 3.192, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.741, - "us-west-2": 3.192 + "us-gov-west-1": 0.0, + "us-west-2": 3.021 }, "m5n.16xlarge": { "ap-northeast-1": 5.355, @@ -66497,8 +73478,8 @@ "eu-west-1": 4.676, "us-east-1": 4.201, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 4.933, + "us-gov-east-1": 5.219, + "us-gov-west-1": 0.0, "us-west-2": 3.973 }, "m5n.24xlarge": { @@ -66506,17 +73487,17 @@ "ap-southeast-1": 7.173, "eu-central-1": 6.933, "eu-west-1": 6.549, - "us-east-1": 5.877, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 7.317, - "us-gov-west-1": 7.317, + "us-gov-west-1": 0.0, "us-west-2": 5.877 }, "m5zn.large": { - "ap-northeast-1": 0.3084, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.3222, + "ap-southeast-2": 0.3222, "eu-central-1": 0.0, "eu-west-1": 0.2791, "sa-east-1": 0.3846, @@ -66526,10 +73507,10 @@ "us-west-2": 0.2602 }, "m5zn.xlarge": { - "ap-northeast-1": 0.5217, - "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-northeast-1": 0.5644, + "ap-northeast-2": 0.501, + "ap-southeast-1": 0.5493, + "ap-southeast-2": 0.508, "eu-central-1": 0.4907, "eu-west-1": 0.5, "sa-east-1": 0.6215, @@ -66544,41 +73525,41 @@ "ap-southeast-1": 5.6166, "ap-southeast-2": 5.121, "eu-central-1": 5.3885, - "eu-west-1": 0.0, + "eu-west-1": 4.5834, "sa-east-1": 7.1145, "us-east-1": 4.1291, "us-east-2": 4.5255, - "us-west-1": 5.2523, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m5zn.2xlarge": { "ap-northeast-1": 1.1037, - "ap-northeast-2": 0.977, + "ap-northeast-2": 0.0, "ap-southeast-1": 1.0736, "ap-southeast-2": 1.0736, "eu-central-1": 1.0356, "eu-west-1": 0.0, - "sa-east-1": 1.3233, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 0.9358, + "us-east-2": 0.8917, + "us-west-1": 0.0, "us-west-2": 0.8257 }, "m5zn.3xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.4451, "ap-northeast-2": 1.5048, "ap-southeast-1": 1.5279, "ap-southeast-2": 1.5279, "eu-central-1": 0.0, - "eu-west-1": 1.2696, + "eu-west-1": 1.3801, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.156, "us-west-1": 0.0, - "us-west-2": 1.156 + "us-west-2": 0.0 }, "m5zn.6xlarge": { - "ap-northeast-1": 2.7252, + "ap-northeast-1": 2.9812, "ap-northeast-2": 2.601, "ap-southeast-1": 2.643, "ap-southeast-2": 2.8908, @@ -66587,21 +73568,21 @@ "sa-east-1": 3.3239, "us-east-1": 2.147, "us-east-2": 0.0, - "us-west-1": 2.4774, - "us-west-2": 2.3452 + "us-west-1": 2.7086, + "us-west-2": 0.0 }, "m5zn.12xlarge": { - "ap-northeast-1": 5.7974, + "ap-northeast-1": 5.2854, "ap-northeast-2": 5.037, - "ap-southeast-1": 5.6166, - "ap-southeast-2": 0.0, - "eu-central-1": 4.9136, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.6166, + "eu-central-1": 5.3885, "eu-west-1": 5.0252, "sa-east-1": 7.1145, "us-east-1": 0.0, - "us-east-2": 4.5255, + "us-east-2": 4.1291, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 4.1291 }, "m6a.large": { "ap-northeast-1": 0.0, @@ -66609,24 +73590,28 @@ "ap-south-2": 0.0, "ap-southeast-1": 0.203, "ap-southeast-2": 0.2138, - "eu-central-1": 0.1985, + "ca-central-1": 0.20093, + "eu-central-1": 0.0, + "eu-south-1": 0.20588, "eu-west-1": 0.1913, - "eu-west-2": 0.1949, + "eu-west-2": 0.20489, "sa-east-1": 0.0, - "us-east-1": 0.1814, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.19004, "us-west-1": 0.1958, - "us-west-2": 0.1814 + "us-west-2": 0.19004 }, "m6a.xlarge": { - "ap-northeast-1": 0.34052, - "ap-south-1": 0.21721, + "ap-northeast-1": 0.0, + "ap-south-1": 0.2061, "ap-south-2": 0.21721, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.311, "ap-southeast-2": 0.0, - "eu-central-1": 0.302, + "ca-central-1": 0.0, + "eu-central-1": 0.3227, + "eu-south-1": 0.31676, "eu-west-1": 0.30686, - "eu-west-2": 0.31478, + "eu-west-2": 0.0, "sa-east-1": 0.39794, "us-east-1": 0.28508, "us-east-2": 0.2678, @@ -66634,94 +73619,106 @@ "us-west-2": 0.28508 }, "m6a.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 10.8786, "ap-south-1": 0.0, "ap-south-2": 5.4978, "ap-southeast-1": 10.533, - "ap-southeast-2": 0.0, + "ap-southeast-2": 10.533, + "ca-central-1": 0.0, "eu-central-1": 10.101, + "eu-south-1": 9.8418, "eu-west-1": 9.4098, "eu-west-2": 9.7554, "sa-east-1": 0.0, "us-east-1": 8.4594, "us-east-2": 0.0, - "us-west-1": 0.0, + "us-west-1": 9.8418, "us-west-2": 8.4594 }, "m6a.2xlarge": { - "ap-northeast-1": 0.6114, + "ap-northeast-1": 0.65604, "ap-south-1": 0.40942, "ap-south-2": 0.40942, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.579, + "ap-southeast-2": 0.597, + "ca-central-1": 0.5502, + "eu-central-1": 0.6204, + "eu-south-1": 0.0, "eu-west-1": 0.58872, - "eu-west-2": 0.0, + "eu-west-2": 0.60456, "sa-east-1": 0.0, - "us-east-1": 0.5106, + "us-east-1": 0.54516, "us-east-2": 0.0, - "us-west-1": 0.5682, + "us-west-1": 0.60852, "us-west-2": 0.54516 }, "m6a.4xlarge": { - "ap-northeast-1": 1.14708, - "ap-south-1": 0.65384, + "ap-northeast-1": 1.0578, + "ap-south-1": 0.6094, "ap-south-2": 0.0, "ap-southeast-1": 1.1154, - "ap-southeast-2": 1.029, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.993, + "eu-south-1": 1.05204, "eu-west-1": 0.0, "eu-west-2": 1.04412, "sa-east-1": 0.0, - "us-east-1": 0.8562, - "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-east-1": 0.0, + "us-east-2": 0.92532, + "us-west-1": 0.9714, + "us-west-2": 0.92532 }, "m6a.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.12916, "ap-south-1": 1.14268, "ap-south-2": 1.14268, "ap-southeast-1": 2.0658, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 1.9866, + "eu-south-1": 1.7778, "eu-west-1": 1.7058, "eu-west-2": 0.0, "sa-east-1": 2.58852, "us-east-1": 1.68564, "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 1.68564 + "us-west-1": 1.7778, + "us-west-2": 0.0 }, "m6a.12xlarge": { "ap-northeast-1": 2.8434, "ap-south-1": 0.0, "ap-south-2": 1.63152, - "ap-southeast-1": 3.0162, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.757, + "ca-central-1": 2.70732, "eu-central-1": 2.649, + "eu-south-1": 2.82612, "eu-west-1": 0.0, - "eu-west-2": 2.80236, + "eu-west-2": 0.0, "sa-east-1": 3.80028, "us-east-1": 2.44596, "us-east-2": 2.44596, - "us-west-1": 0.0, + "us-west-1": 2.5842, "us-west-2": 2.2386 }, "m6a.16xlarge": { - "ap-northeast-1": 4.09332, - "ap-south-1": 2.12036, + "ap-northeast-1": 0.0, + "ap-south-1": 1.9426, "ap-south-2": 1.9426, - "ap-southeast-1": 0.0, - "ap-southeast-2": 3.621, - "eu-central-1": 3.8082, + "ap-southeast-1": 3.621, + "ap-southeast-2": 3.9666, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-south-1": 3.71316, "eu-west-1": 3.55476, "eu-west-2": 3.68148, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 3.3906, - "us-west-2": 3.20628 + "us-west-2": 0.0 }, "m6a.24xlarge": { "ap-northeast-1": 6.05748, @@ -66729,28 +73726,32 @@ "ap-south-2": 0.0, "ap-southeast-1": 5.349, "ap-southeast-2": 5.8674, + "ca-central-1": 5.24964, "eu-central-1": 5.133, - "eu-west-1": 5.24964, + "eu-south-1": 5.0034, + "eu-west-1": 4.7874, "eu-west-2": 0.0, "sa-east-1": 6.7746, - "us-east-1": 0.0, + "us-east-1": 4.72692, "us-east-2": 4.3122, - "us-west-1": 0.0, + "us-west-1": 5.48724, "us-west-2": 4.72692 }, "m6a.32xlarge": { "ap-northeast-1": 7.3074, "ap-south-1": 3.7202, "ap-south-2": 4.07572, - "ap-southeast-1": 7.077, + "ap-southeast-1": 7.7682, "ap-southeast-2": 7.077, + "ca-central-1": 6.94452, "eu-central-1": 0.0, - "eu-west-1": 6.94452, + "eu-south-1": 7.26132, + "eu-west-1": 6.3282, "eu-west-2": 7.19796, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 7.26132, + "us-east-2": 6.24756, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6a.48xlarge": { @@ -66759,9 +73760,11 @@ "ap-south-2": 5.4978, "ap-southeast-1": 10.533, "ap-southeast-2": 10.533, + "ca-central-1": 9.4098, "eu-central-1": 10.101, + "eu-south-1": 9.8418, "eu-west-1": 9.4098, - "eu-west-2": 9.7554, + "eu-west-2": 0.0, "sa-east-1": 13.3842, "us-east-1": 0.0, "us-east-2": 0.0, @@ -66770,81 +73773,86 @@ }, "m6g.medium": { "af-south-1": 0.1458, - "ap-east-1": 0.1511, - "ap-northeast-1": 0.1445, - "ap-northeast-2": 0.142, - "ap-northeast-3": 0.1446, - "ap-south-1": 0.1218, - "ap-south-2": 0.1203, + "ap-east-1": 0.148, + "ap-northeast-1": 0.1475, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.1476, + "ap-south-1": 0.1203, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.143, + "ap-southeast-2": 0.1459, "ap-southeast-3": 0.143, - "ap-southeast-4": 0.143, + "ap-southeast-4": 0.1459, "ca-central-1": 0.1378, - "eu-central-1": 0.1437, + "ca-west-1": 0.1378, + "eu-central-1": 0.141, "eu-central-2": 0.0, - "eu-north-1": 0.1385, + "eu-north-1": 0.136, "eu-south-1": 0.0, "eu-south-2": 0.1405, "eu-west-1": 0.0, - "eu-west-2": 0.1421, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.1402, - "me-central-1": 0.1423, - "me-south-1": 0.1448, + "il-central-1": 0.1428, + "me-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 0.1599, - "us-east-1": 0.1358, + "us-east-1": 0.0, "us-east-2": 0.1358, "us-gov-east-1": 0.1463, "us-gov-west-1": 0.1463, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.1412 }, "m6g.large": { "af-south-1": 0.2027, "ap-east-1": 0.201, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.1947, "ap-northeast-3": 0.2002, "ap-south-1": 0.1456, - "ap-south-2": 0.1486, - "ap-southeast-1": 0.1968, + "ap-south-2": 0.0, + "ap-southeast-1": 0.191, "ap-southeast-2": 0.0, "ap-southeast-3": 0.1968, "ap-southeast-4": 0.1968, - "ca-central-1": 0.1857, - "eu-central-1": 0.0, + "ca-central-1": 0.1806, + "ca-west-1": 0.1857, + "eu-central-1": 0.1925, "eu-central-2": 0.2023, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.1861, "eu-west-1": 0.1861, - "eu-west-2": 0.1891, - "eu-west-3": 0.0, - "il-central-1": 0.1907, - "me-central-1": 0.1896, + "eu-west-2": 0.1838, + "eu-west-3": 0.185, + "il-central-1": 0.0, + "me-central-1": 0.1952, "me-south-1": 0.189, - "sa-east-1": 0.2247, - "us-east-1": 0.1766, + "sa-east-1": 0.2174, + "us-east-1": 0.0, "us-east-2": 0.1766, - "us-gov-east-1": 0.1918, + "us-gov-east-1": 0.1976, "us-gov-west-1": 0.0, "us-west-1": 0.1846, - "us-west-2": 0.1766 + "us-west-2": 0.1766, + "us-west-2-lax-1": 0.1874 }, "m6g.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.307, + "ap-east-1": 0.3196, "ap-northeast-1": 0.305, "ap-northeast-2": 0.283, "ap-northeast-3": 0.3053, - "ap-south-1": 0.0, - "ap-south-2": 0.1962, + "ap-south-1": 0.1962, + "ap-south-2": 0.2023, "ap-southeast-1": 0.0, "ap-southeast-2": 0.287, "ap-southeast-3": 0.2985, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.287, "ca-central-1": 0.0, + "ca-west-1": 0.2765, "eu-central-1": 0.279, "eu-central-2": 0.2974, "eu-north-1": 0.259, @@ -66852,31 +73860,33 @@ "eu-south-2": 0.267, "eu-west-1": 0.2772, "eu-west-2": 0.2726, - "eu-west-3": 0.275, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 0.2954, + "me-central-1": 0.0, "me-south-1": 0.2944, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.2582, "us-east-2": 0.2582, "us-gov-east-1": 0.3002, "us-gov-west-1": 0.2886, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.2582, + "us-west-2-lax-1": 0.2798 }, "m6g.metal": { - "af-south-1": 0.0, + "af-south-1": 3.4162, "ap-east-1": 3.557, - "ap-northeast-1": 0.0, - "ap-northeast-2": 3.173, + "ap-northeast-1": 3.525, + "ap-northeast-2": 3.3554, "ap-northeast-3": 3.5299, "ap-south-1": 1.7842, - "ap-south-2": 0.0, + "ap-south-2": 1.8814, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 3.237, "ap-southeast-4": 0.0, "ca-central-1": 3.0686, + "ca-west-1": 3.0686, "eu-central-1": 3.285, "eu-central-2": 3.4034, "eu-north-1": 2.789, @@ -66884,17 +73894,18 @@ "eu-south-2": 0.0, "eu-west-1": 2.917, "eu-west-2": 3.1771, - "eu-west-3": 3.2178, - "il-central-1": 3.226, + "eu-west-3": 3.045, + "il-central-1": 0.0, "me-central-1": 3.1922, "me-south-1": 3.173, - "sa-east-1": 4.3168, + "sa-east-1": 4.0818, "us-east-1": 2.7762, "us-east-2": 2.629, - "us-gov-east-1": 3.2626, + "us-gov-east-1": 3.4485, "us-gov-west-1": 3.2626, "us-west-1": 0.0, - "us-west-2": 2.629 + "us-west-2": 2.629, + "us-west-2-lax-1": 3.1218 }, "m6g.2xlarge": { "af-south-1": 0.5958, @@ -66905,78 +73916,83 @@ "ap-south-1": 0.3674, "ap-south-2": 0.3674, "ap-southeast-1": 0.572, - "ap-southeast-2": 0.549, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.549, "ca-central-1": 0.5074, - "eu-central-1": 0.0, + "ca-west-1": 0.5074, + "eu-central-1": 0.533, "eu-central-2": 0.0, "eu-north-1": 0.493, "eu-south-1": 0.0, - "eu-south-2": 0.509, + "eu-south-2": 0.0, "eu-west-1": 0.5294, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.5434, + "eu-west-3": 0.5466, + "il-central-1": 0.5476, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.6546, + "sa-east-1": 0.684, "us-east-1": 0.0, - "us-east-2": 0.473, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.5522, "us-west-1": 0.5449, - "us-west-2": 0.473 + "us-west-2": 0.473, + "us-west-2-lax-1": 0.5567 }, "m6g.4xlarge": { "af-south-1": 0.9778, "ap-east-1": 1.0634, "ap-northeast-1": 0.957, - "ap-northeast-2": 0.917, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.0062, - "ap-south-1": 0.0, + "ap-south-1": 0.5698, "ap-south-2": 0.5698, "ap-southeast-1": 0.9791, "ap-southeast-2": 0.933, - "ap-southeast-3": 0.9791, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.9791, "ca-central-1": 0.8909, - "eu-central-1": 0.0, + "ca-west-1": 0.8498, + "eu-central-1": 0.945, "eu-central-2": 0.0, "eu-north-1": 0.821, "eu-south-1": 0.9247, - "eu-south-2": 0.0, + "eu-south-2": 0.853, "eu-west-1": 0.8938, "eu-west-2": 0.8754, - "eu-west-3": 0.885, + "eu-west-3": 0.0, "il-central-1": 0.8874, "me-central-1": 0.9218, "me-south-1": 0.9626, - "sa-east-1": 1.203, - "us-east-1": 0.8178, - "us-east-2": 0.781, + "sa-east-1": 0.0, + "us-east-1": 0.781, + "us-east-2": 0.0, "us-gov-east-1": 0.9859, "us-gov-west-1": 0.9859, "us-west-1": 0.9248, - "us-west-2": 0.781 + "us-west-2": 0.781, + "us-west-2-lax-1": 0.9042 }, "m6g.8xlarge": { "af-south-1": 1.8881, "ap-east-1": 1.861, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.669, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.8474, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 1.7932, "ap-southeast-2": 1.7932, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.701, "ap-southeast-4": 1.7932, - "ca-central-1": 1.6168, - "eu-central-1": 0.0, - "eu-central-2": 1.8814, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 1.5346, + "eu-central-1": 1.725, + "eu-central-2": 1.7842, + "eu-north-1": 1.477, + "eu-south-1": 1.6844, "eu-south-2": 0.0, "eu-west-1": 1.541, "eu-west-2": 1.671, @@ -66986,57 +74002,61 @@ "me-south-1": 1.7602, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 1.397, + "us-east-2": 1.4706, "us-gov-east-1": 1.7138, "us-gov-west-1": 1.8067, "us-west-1": 1.5986, - "us-west-2": 1.397 + "us-west-2": 1.397, + "us-west-2-lax-1": 1.6434 }, "m6g.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 2.6034, "ap-east-1": 2.8602, - "ap-northeast-1": 2.541, - "ap-northeast-2": 0.0, - "ap-northeast-3": 2.5458, - "ap-south-1": 1.3794, - "ap-south-2": 1.3794, + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.421, + "ap-northeast-3": 2.6886, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 2.6072, "ap-southeast-2": 2.6072, - "ap-southeast-3": 2.469, + "ap-southeast-3": 2.6072, "ap-southeast-4": 2.6072, - "ca-central-1": 2.3427, - "eu-central-1": 0.0, + "ca-central-1": 2.2194, + "ca-west-1": 0.0, + "eu-central-1": 2.505, "eu-central-2": 0.0, "eu-north-1": 2.133, - "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 2.3514, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-south-1": 2.444, + "eu-south-2": 2.229, + "eu-west-1": 0.0, + "eu-west-2": 2.4241, + "eu-west-3": 2.4546, "il-central-1": 2.3322, - "me-central-1": 2.4354, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 3.2789, + "sa-east-1": 0.0, "us-east-1": 2.1234, "us-east-2": 2.1234, - "us-gov-east-1": 2.6276, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 2.013 + "us-west-1": 2.3154, + "us-west-2": 2.013, + "us-west-2-lax-1": 2.3826 }, "m6g.16xlarge": { "af-south-1": 3.6113, "ap-east-1": 0.0, "ap-northeast-1": 3.525, - "ap-northeast-2": 3.173, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 1.7842, - "ap-south-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 1.7842, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.4213, "ap-southeast-3": 3.4213, "ap-southeast-4": 3.4213, - "ca-central-1": 2.9042, + "ca-central-1": 3.0686, + "ca-west-1": 2.9042, "eu-central-1": 0.0, "eu-central-2": 3.4034, "eu-north-1": 2.789, @@ -67045,268 +74065,343 @@ "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.2178, - "il-central-1": 0.0, + "il-central-1": 3.226, "me-central-1": 3.1922, "me-south-1": 3.3554, - "sa-east-1": 4.0818, - "us-east-1": 2.629, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 2.629, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.2626, - "us-west-1": 3.0322, - "us-west-2": 0.0 + "us-gov-west-1": 3.4485, + "us-west-1": 0.0, + "us-west-2": 0.0, + "us-west-2-lax-1": 0.0 }, "m6gd.medium": { - "af-south-1": 0.1586, + "af-south-1": 0.0, + "ap-east-1": 0.157, "ap-northeast-1": 0.1535, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.1569, + "ap-northeast-3": 0.0, "ap-south-1": 0.1252, - "ap-south-2": 0.1252, - "ap-southeast-1": 0.1549, + "ap-south-2": 0.127, + "ap-southeast-1": 0.1515, "ap-southeast-2": 0.1554, "ap-southeast-3": 0.1515, - "ap-southeast-4": 0.152, - "eu-central-1": 0.1495, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.1484, + "eu-central-1": 0.1527, "eu-central-2": 0.1585, - "eu-north-1": 0.143, - "eu-south-2": 0.0, + "eu-north-1": 0.1459, + "eu-south-1": 0.151, + "eu-south-2": 0.1454, "eu-west-1": 0.0, "eu-west-2": 0.1474, "eu-west-3": 0.151, - "il-central-1": 0.1479, - "me-central-1": 0.0, + "il-central-1": 0.1511, + "me-central-1": 0.1537, + "me-south-1": 0.1538, + "sa-east-1": 0.1712, "us-east-1": 0.1402, - "us-east-2": 0.1402, + "us-east-2": 0.1429, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.1556, "us-west-1": 0.148, - "us-west-2": 0.0 + "us-west-2": 0.1402 }, "m6gd.large": { - "af-south-1": 0.215, - "ap-northeast-1": 0.0, + "af-south-1": 0.2222, + "ap-east-1": 0.2264, + "ap-northeast-1": 0.219, "ap-northeast-2": 0.2128, "ap-northeast-3": 0.2188, "ap-south-1": 0.159, "ap-south-2": 0.159, - "ap-southeast-1": 0.208, + "ap-southeast-1": 0.2148, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.208, - "ap-southeast-4": 0.2158, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.209, + "ca-central-1": 0.1958, + "ca-west-1": 0.2018, "eu-central-1": 0.2105, - "eu-central-2": 0.2149, + "eu-central-2": 0.222, "eu-north-1": 0.1968, + "eu-south-1": 0.0, "eu-south-2": 0.2018, - "eu-west-1": 0.0, + "eu-west-1": 0.1958, "eu-west-2": 0.2061, "eu-west-3": 0.0, "il-central-1": 0.2008, "me-central-1": 0.2058, + "me-south-1": 0.2125, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.1908, - "us-west-1": 0.0, - "us-west-2": 0.1854 + "us-east-2": 0.1854, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.2074, + "us-west-2": 0.1908 }, "m6gd.xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.3306, - "ap-northeast-3": 0.0, - "ap-south-1": 0.223, - "ap-south-2": 0.223, + "ap-northeast-3": 0.3286, + "ap-south-1": 0.2158, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.3346, "ap-southeast-4": 0.3366, + "ca-central-1": 0.3087, + "ca-west-1": 0.3087, "eu-central-1": 0.326, "eu-central-2": 0.0, - "eu-north-1": 0.287, - "eu-south-2": 0.2966, - "eu-west-1": 0.0, - "eu-west-2": 0.3046, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.3087, + "eu-west-1": 0.3087, + "eu-west-2": 0.3172, "eu-west-3": 0.3062, "il-central-1": 0.3194, - "me-central-1": 0.3299, + "me-central-1": 0.3166, + "me-south-1": 0.0, + "sa-east-1": 0.383, "us-east-1": 0.0, "us-east-2": 0.2866, + "us-gov-east-1": 0.3375, + "us-gov-west-1": 0.3238, "us-west-1": 0.307, - "us-west-2": 0.0 + "us-west-2": 0.2866 }, "m6gd.metal": { "af-south-1": 0.0, + "ap-east-1": 4.3711, "ap-northeast-1": 4.133, "ap-northeast-2": 3.7234, - "ap-northeast-3": 3.9026, + "ap-northeast-3": 0.0, "ap-south-1": 2.2138, "ap-south-2": 0.0, "ap-southeast-1": 3.9986, "ap-southeast-2": 3.813, "ap-southeast-3": 3.781, "ap-southeast-4": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 3.5841, + "eu-central-1": 3.861, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 3.237, + "eu-south-1": 3.747, "eu-south-2": 3.3906, "eu-west-1": 3.3906, "eu-west-2": 0.0, "eu-west-3": 3.747, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 3.7106, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 3.2314, - "us-east-2": 3.0578, + "us-east-2": 3.2314, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 3.557, - "us-west-2": 3.2314 + "us-west-2": 0.0 }, "m6gd.2xlarge": { "af-south-1": 0.0, + "ap-east-1": 0.661, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.6362, - "ap-northeast-3": 0.6602, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.617, - "ap-southeast-2": 0.6482, + "ap-southeast-2": 0.621, "ap-southeast-3": 0.617, "ap-southeast-4": 0.0, - "eu-central-1": 0.627, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 0.6446, - "eu-north-1": 0.549, - "eu-south-2": 0.5682, + "eu-north-1": 0.0, + "eu-south-1": 0.5874, + "eu-south-2": 0.5924, "eu-west-1": 0.5682, - "eu-west-2": 0.6094, + "eu-west-2": 0.0, "eu-west-3": 0.5874, "il-central-1": 0.0, "me-central-1": 0.0, + "me-south-1": 0.6085, + "sa-east-1": 0.7742, "us-east-1": 0.5483, - "us-east-2": 0.0, - "us-west-1": 0.0, + "us-east-2": 0.5483, + "us-gov-east-1": 0.6226, + "us-gov-west-1": 0.6226, + "us-west-1": 0.589, "us-west-2": 0.5483 }, "m6gd.4xlarge": { "af-south-1": 1.1826, + "ap-east-1": 0.0, "ap-northeast-1": 1.157, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.1555, "ap-south-1": 0.0, "ap-south-2": 0.6482, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 1.1234, + "ap-southeast-2": 1.077, "ap-southeast-3": 0.0, - "ap-southeast-4": 1.077, - "eu-central-1": 1.037, + "ap-southeast-4": 0.0, + "ca-central-1": 0.9714, + "ca-west-1": 0.9714, + "eu-central-1": 0.0, "eu-central-2": 1.1242, "eu-north-1": 0.933, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.9714, "eu-west-2": 1.0034, - "eu-west-3": 1.0605, - "il-central-1": 0.0, + "eu-west-3": 1.0098, + "il-central-1": 1.0117, "me-central-1": 1.1046, + "me-south-1": 1.052, + "sa-east-1": 1.3835, "us-east-1": 0.9316, "us-east-2": 0.9316, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-east-1": 1.0802, + "us-gov-west-1": 1.0802, + "us-west-1": 1.013, + "us-west-2": 0.9316 }, "m6gd.8xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 2.149, - "ap-northeast-2": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 2.037, + "ap-northeast-2": 2.0499, "ap-northeast-3": 0.0, "ap-south-1": 1.1894, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.0978, + "ap-south-2": 1.1314, + "ap-southeast-1": 1.973, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 2.0978, + "ap-southeast-4": 1.989, + "ca-central-1": 1.7778, + "ca-west-1": 1.8746, "eu-central-1": 0.0, - "eu-central-2": 2.1978, + "eu-central-2": 0.0, "eu-north-1": 0.0, + "eu-south-1": 1.956, "eu-south-2": 1.8746, "eu-west-1": 1.8746, - "eu-west-2": 1.8418, + "eu-west-2": 1.9424, "eu-west-3": 1.8546, "il-central-1": 1.96, "me-central-1": 1.9378, - "us-east-1": 1.6114, + "me-south-1": 2.0455, + "sa-east-1": 2.469, + "us-east-1": 1.6982, "us-east-2": 1.6982, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.9954, "us-west-1": 1.9634, "us-west-2": 1.6982 }, "m6gd.12xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 3.141, - "ap-northeast-2": 2.9923, + "ap-east-1": 0.0, + "ap-northeast-1": 2.973, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.1364, - "ap-south-1": 1.6146, - "ap-south-2": 0.0, - "ap-southeast-1": 3.0402, + "ap-south-1": 1.7016, + "ap-south-2": 1.7016, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 2.877, + "ap-southeast-3": 0.0, "ap-southeast-4": 2.901, + "ca-central-1": 2.7294, + "ca-west-1": 2.7294, "eu-central-1": 2.781, - "eu-central-2": 3.2142, + "eu-central-2": 3.0426, "eu-north-1": 0.0, - "eu-south-2": 0.0, + "eu-south-1": 2.6994, + "eu-south-2": 2.5842, "eu-west-1": 2.7294, - "eu-west-2": 2.6802, + "eu-west-2": 2.8311, "eu-west-3": 2.6994, "il-central-1": 2.8576, - "me-central-1": 0.0, + "me-central-1": 2.8242, + "me-south-1": 2.9858, + "sa-east-1": 3.8204, "us-east-1": 2.3346, "us-east-2": 2.4648, + "us-gov-east-1": 2.9106, + "us-gov-west-1": 2.9106, "us-west-1": 2.8626, "us-west-2": 2.3346 }, "m6gd.16xlarge": { "af-south-1": 4.005, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 3.9026, - "ap-south-1": 2.2138, + "ap-south-1": 0.0, "ap-south-2": 2.0978, "ap-southeast-1": 3.781, - "ap-southeast-2": 4.0306, - "ap-southeast-3": 3.781, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ap-southeast-4": 3.813, - "eu-central-1": 3.653, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 4.0018, - "eu-north-1": 0.0, + "eu-north-1": 3.237, + "eu-south-1": 3.747, "eu-south-2": 3.3906, "eu-west-1": 0.0, "eu-west-2": 3.5186, "eu-west-3": 0.0, - "il-central-1": 3.7551, + "il-central-1": 0.0, "me-central-1": 3.7106, + "me-south-1": 0.0, + "sa-east-1": 5.0389, "us-east-1": 3.2314, - "us-east-2": 3.0578, - "us-west-1": 3.557, + "us-east-2": 0.0, + "us-gov-east-1": 3.8258, + "us-gov-west-1": 3.8258, + "us-west-1": 3.7618, "us-west-2": 3.2314 }, "m6i.large": { - "af-south-1": 0.222, + "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.219, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.219, "ap-south-1": 0.196, - "ap-south-2": 0.0, + "ap-south-2": 0.196, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.215, + "ap-southeast-3": 0.0, "ca-central-1": 0.202, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.21, + "eu-central-2": 0.23415, "eu-north-1": 0.0, "eu-south-1": 0.2182, "eu-west-1": 0.0, - "eu-west-2": 0.2171, - "eu-west-3": 0.207, + "eu-west-2": 0.0, + "eu-west-3": 0.2182, "il-central-1": 0.21859, "me-central-1": 0.2127, "me-south-1": 0.0, - "sa-east-1": 0.2633, - "us-east-1": 0.191, - "us-east-2": 0.0, + "sa-east-1": 0.248, + "us-east-1": 0.0, + "us-east-2": 0.2006, "us-gov-east-1": 0.2281, - "us-gov-west-1": 0.216, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.2006 }, @@ -67314,24 +74409,26 @@ "af-south-1": 0.0, "ap-east-1": 0.3854, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.331, + "ap-northeast-3": 0.343, "ap-south-1": 0.0, - "ap-south-2": 0.297, + "ap-south-2": 0.0, "ap-southeast-1": 0.359, "ap-southeast-2": 0.0, "ap-southeast-3": 0.335, - "ca-central-1": 0.3304, - "eu-central-1": 0.0, + "ca-central-1": 0.309, + "ca-west-1": 0.309, + "eu-central-1": 0.348, + "eu-central-2": 0.3733, "eu-north-1": 0.299, "eu-south-1": 0.319, "eu-west-1": 0.0, - "eu-west-2": 0.317, - "eu-west-3": 0.319, + "eu-west-2": 0.3392, + "eu-west-3": 0.3414, "il-central-1": 0.3197, - "me-central-1": 0.3304, - "me-south-1": 0.3854, - "sa-east-1": 0.4316, + "me-central-1": 0.0, + "me-south-1": 0.359, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.3062, "us-gov-east-1": 0.337, @@ -67341,173 +74438,185 @@ }, "m6i.metal": { "af-south-1": 8.293, - "ap-east-1": 8.613, - "ap-northeast-1": 8.101, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 7.717, - "ap-northeast-3": 8.101, + "ap-northeast-3": 0.0, "ap-south-1": 6.629, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 7.845, "ap-southeast-3": 7.845, "ca-central-1": 0.0, + "ca-west-1": 7.013, "eu-central-1": 0.0, + "eu-central-2": 8.261, "eu-north-1": 6.693, "eu-south-1": 7.333, "eu-west-1": 0.0, "eu-west-2": 7.269, - "eu-west-3": 7.333, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 7.3554, "me-central-1": 7.6978, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 6.309, "us-east-2": 6.309, "us-gov-east-1": 7.909, "us-gov-west-1": 7.909, - "us-west-1": 0.0, + "us-west-1": 7.333, "us-west-2": 6.309 }, "m6i.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.7238, "ap-east-1": 0.693, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.661, - "ap-south-1": 0.569, + "ap-northeast-3": 0.7106, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.693, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.645, "ap-southeast-3": 0.693, "ca-central-1": 0.593, + "ca-west-1": 0.593, "eu-central-1": 0.625, + "eu-central-2": 0.671, "eu-north-1": 0.0, "eu-south-1": 0.613, "eu-west-1": 0.593, "eu-west-2": 0.0, "eu-west-3": 0.613, - "il-central-1": 0.0, + "il-central-1": 0.65934, "me-central-1": 0.68288, "me-south-1": 0.0, - "sa-east-1": 0.8382, - "us-east-1": 0.5874, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.649, + "us-gov-east-1": 0.649, + "us-gov-west-1": 0.6974, "us-west-1": 0.613, "us-west-2": 0.5874 }, "m6i.4xlarge": { - "af-south-1": 1.2826, + "af-south-1": 0.0, "ap-east-1": 1.221, "ap-northeast-1": 1.157, - "ap-northeast-2": 1.2034, + "ap-northeast-2": 1.109, "ap-northeast-3": 1.157, "ap-south-1": 0.973, "ap-south-2": 0.973, "ap-southeast-1": 1.125, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.125, "ap-southeast-3": 0.0, - "ca-central-1": 1.021, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 1.177, - "eu-north-1": 0.0, + "eu-central-2": 1.177, + "eu-north-1": 0.981, "eu-south-1": 0.0, - "eu-west-1": 1.1066, + "eu-west-1": 1.021, "eu-west-2": 1.1418, "eu-west-3": 1.1506, "il-central-1": 1.15368, "me-central-1": 1.20076, "me-south-1": 0.0, - "sa-east-1": 1.389, + "sa-east-1": 1.5114, "us-east-1": 0.933, - "us-east-2": 0.933, + "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 1.133, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.933 }, "m6i.8xlarge": { - "af-south-1": 2.4002, + "af-south-1": 2.197, "ap-east-1": 0.0, "ap-northeast-1": 2.3474, "ap-northeast-2": 2.2418, - "ap-northeast-3": 2.149, + "ap-northeast-3": 0.0, "ap-south-1": 1.781, - "ap-south-2": 1.781, - "ap-southeast-1": 2.277, - "ap-southeast-2": 0.0, + "ap-south-2": 1.9426, + "ap-southeast-1": 2.085, + "ap-southeast-2": 2.277, "ap-southeast-3": 2.085, - "ca-central-1": 2.0482, - "eu-central-1": 2.189, + "ca-central-1": 1.877, + "ca-west-1": 1.877, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 1.797, "eu-south-1": 1.957, - "eu-west-1": 1.877, + "eu-west-1": 0.0, "eu-west-2": 2.1186, - "eu-west-3": 0.0, + "eu-west-3": 2.1362, "il-central-1": 0.0, "me-central-1": 2.0482, "me-south-1": 2.4882, "sa-east-1": 2.8578, "us-east-1": 1.8546, "us-east-2": 1.701, - "us-gov-east-1": 2.2946, + "us-gov-east-1": 2.101, "us-gov-west-1": 2.101, "us-west-1": 1.957, "us-west-2": 1.8546 }, "m6i.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.5178, "ap-east-1": 3.333, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.2802, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 2.589, "ap-south-2": 2.589, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.333, "ap-southeast-2": 3.045, "ap-southeast-3": 3.045, "ca-central-1": 2.733, - "eu-central-1": 2.925, + "ca-west-1": 0.0, + "eu-central-1": 3.201, + "eu-central-2": 3.201, "eu-north-1": 0.0, - "eu-south-1": 3.1218, + "eu-south-1": 2.853, "eu-west-1": 2.733, - "eu-west-2": 3.0954, - "eu-west-3": 3.1218, + "eu-west-2": 2.829, + "eu-west-3": 2.853, "il-central-1": 2.8614, "me-central-1": 3.27228, - "me-south-1": 3.6498, + "me-south-1": 0.0, "sa-east-1": 3.837, "us-east-1": 2.6994, "us-east-2": 2.6994, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.3594, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 2.853, "us-west-2": 2.6994 }, "m6i.16xlarge": { "af-south-1": 4.6354, - "ap-east-1": 0.0, - "ap-northeast-1": 4.5298, - "ap-northeast-2": 3.941, + "ap-east-1": 4.389, + "ap-northeast-1": 4.133, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.133, "ap-south-1": 3.397, - "ap-south-2": 0.0, - "ap-southeast-1": 4.005, + "ap-south-2": 3.7202, + "ap-southeast-1": 4.389, "ap-southeast-2": 4.005, "ap-southeast-3": 4.389, - "ca-central-1": 0.0, - "eu-central-1": 4.213, + "ca-central-1": 3.589, + "ca-west-1": 3.589, + "eu-central-1": 3.845, + "eu-central-2": 4.213, "eu-north-1": 0.0, "eu-south-1": 3.749, - "eu-west-1": 3.589, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 4.0722, "eu-west-3": 3.749, - "il-central-1": 3.7602, + "il-central-1": 0.0, "me-central-1": 3.9314, "me-south-1": 4.8114, "sa-east-1": 5.5506, - "us-east-1": 3.5442, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.5442, "us-gov-east-1": 4.4242, "us-gov-west-1": 0.0, "us-west-1": 4.1074, @@ -67520,21 +74629,23 @@ "ap-northeast-2": 6.3954, "ap-northeast-3": 6.117, "ap-south-1": 5.4978, - "ap-south-2": 5.013, - "ap-southeast-1": 5.925, - "ap-southeast-2": 6.501, + "ap-south-2": 5.4978, + "ap-southeast-1": 6.501, + "ap-southeast-2": 5.925, "ap-southeast-3": 5.925, "ca-central-1": 5.8146, + "ca-west-1": 5.8146, "eu-central-1": 0.0, + "eu-central-2": 6.8442, "eu-north-1": 0.0, "eu-south-1": 5.541, - "eu-west-1": 5.301, + "eu-west-1": 5.8146, "eu-west-2": 5.493, "eu-west-3": 6.0786, "il-central-1": 5.5578, - "me-central-1": 6.37956, - "me-south-1": 7.1346, - "sa-east-1": 0.0, + "me-central-1": 5.8146, + "me-south-1": 6.501, + "sa-east-1": 7.509, "us-east-1": 5.2338, "us-east-2": 0.0, "us-gov-east-1": 0.0, @@ -67543,18 +74654,20 @@ "us-west-2": 0.0 }, "m6i.32xlarge": { - "af-south-1": 0.0, + "af-south-1": 8.293, "ap-east-1": 8.613, - "ap-northeast-1": 8.101, - "ap-northeast-2": 7.717, + "ap-northeast-1": 8.8946, + "ap-northeast-2": 0.0, "ap-northeast-3": 8.101, - "ap-south-1": 6.629, - "ap-south-2": 6.629, + "ap-south-1": 7.2754, + "ap-south-2": 0.0, "ap-southeast-1": 7.845, - "ap-southeast-2": 7.845, - "ap-southeast-3": 7.845, - "ca-central-1": 0.0, - "eu-central-1": 7.525, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 7.013, + "ca-west-1": 7.013, + "eu-central-1": 8.261, + "eu-central-2": 8.261, "eu-north-1": 6.693, "eu-south-1": 0.0, "eu-west-1": 0.0, @@ -67563,31 +74676,47 @@ "il-central-1": 7.3554, "me-central-1": 7.6978, "me-south-1": 8.613, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 6.9234, + "sa-east-1": 9.957, + "us-east-1": 6.9234, + "us-east-2": 0.0, "us-gov-east-1": 7.909, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 7.909, + "us-west-1": 7.333, "us-west-2": 6.9234 }, "m6id.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.26363, + "ap-northeast-2": 0.25555, + "ap-south-1": 0.23591, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.25901, - "eu-central-1": 0.2378, + "ca-central-1": 0.24053, + "ca-west-1": 0.2273, + "eu-central-1": 0.25208, + "eu-central-2": 0.26779, "eu-west-1": 0.2273, + "eu-west-2": 0.23255, "il-central-1": 0.23392, + "sa-east-1": 0.3029, "us-east-1": 0.21365, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.2452, "us-west-2": 0.22552 }, "m6id.xlarge": { - "ap-northeast-1": 0.43226, + "ap-northeast-1": 0.4016, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.3911, "ap-southeast-2": 0.0, - "eu-central-1": 0.40916, + "ca-central-1": 0.0, + "ca-west-1": 0.38606, + "eu-central-1": 0.3806, + "eu-central-2": 0.0, "eu-west-1": 0.3596, + "eu-west-2": 0.0, "il-central-1": 0.37284, + "sa-east-1": 0.473, "us-east-1": 0.35603, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -67595,529 +74724,1249 @@ }, "m6id.metal": { "ap-northeast-1": 9.9762, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 9.7074, - "eu-central-1": 9.3042, - "eu-west-1": 8.6322, + "ca-central-1": 8.6322, + "ca-west-1": 8.6322, + "eu-central-1": 0.0, + "eu-central-2": 10.21812, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 9.05588, + "sa-east-1": 0.0, "us-east-1": 7.7586, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-east-2": 7.7586, + "us-gov-west-1": 9.7778, "us-west-2": 0.0 }, "m6id.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.7614, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.74712, + "ca-west-1": 0.74712, "eu-central-1": 0.7362, + "eu-central-2": 0.79332, "eu-west-1": 0.6942, + "eu-west-2": 0.0, "il-central-1": 0.72068, + "sa-east-1": 0.921, "us-east-1": 0.6396, "us-east-2": 0.6396, "us-gov-west-1": 0.7658, - "us-west-2": 0.68706 + "us-west-2": 0.0 }, "m6id.4xlarge": { "ap-northeast-1": 1.3914, - "ap-southeast-2": 0.0, + "ap-northeast-2": 1.3326, + "ap-south-1": 1.29228, + "ap-southeast-1": 1.3494, + "ap-southeast-2": 1.47708, + "ca-central-1": 1.2234, + "ca-west-1": 1.2234, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-west-1": 1.32924, - "il-central-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 1.3875, + "sa-east-1": 1.677, "us-east-1": 1.1142, "us-east-2": 1.1142, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.3666, "us-west-2": 1.20912 }, "m6id.8xlarge": { "ap-northeast-1": 2.86308, + "ap-northeast-2": 2.5002, + "ap-south-1": 2.2146, + "ap-southeast-1": 2.5338, "ap-southeast-2": 2.78916, + "ca-central-1": 0.0, + "ca-west-1": 2.49348, "eu-central-1": 0.0, - "eu-west-1": 2.49348, - "il-central-1": 0.0, + "eu-central-2": 2.67828, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 2.38772, + "sa-east-1": 3.4914, "us-east-1": 2.25324, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 2.0634 + "us-west-2": 0.0 }, "m6id.12xlarge": { "ap-northeast-1": 3.8442, + "ap-northeast-2": 0.0, + "ap-south-1": 3.54684, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.7434, - "eu-central-1": 3.93492, + "ca-central-1": 3.65772, + "ca-west-1": 3.3402, + "eu-central-1": 3.5922, + "eu-central-2": 3.93492, "eu-west-1": 3.65772, - "il-central-1": 0.0, + "eu-west-2": 3.79632, + "il-central-1": 3.49908, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.29736, "us-gov-west-1": 3.7698, "us-west-2": 0.0 }, "m6id.16xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 4.2642, + "ap-southeast-1": 4.9026, "ap-southeast-2": 4.9362, - "eu-central-1": 0.0, + "ca-central-1": 4.82196, + "ca-west-1": 4.3986, + "eu-central-1": 5.19156, + "eu-central-2": 5.69422, "eu-west-1": 4.3986, + "eu-west-2": 0.0, "il-central-1": 5.05498, + "sa-east-1": 6.213, "us-east-1": 0.0, - "us-east-2": 4.34148, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 3.9618 }, "m6id.24xlarge": { "ap-northeast-1": 8.25924, - "ap-southeast-2": 7.3218, + "ap-northeast-2": 7.1706, + "ap-south-1": 6.3138, + "ap-southeast-1": 7.2714, + "ap-southeast-2": 0.0, + "ca-central-1": 7.15044, + "ca-west-1": 0.0, "eu-central-1": 7.70484, - "eu-west-1": 7.15044, + "eu-central-2": 7.70484, + "eu-west-1": 6.5154, + "eu-west-2": 7.42764, "il-central-1": 0.0, + "sa-east-1": 10.1442, "us-east-1": 6.42972, - "us-east-2": 0.0, + "us-east-2": 6.42972, "us-gov-west-1": 7.3746, - "us-west-2": 6.42972 + "us-west-2": 0.0 }, "m6id.32xlarge": { "ap-northeast-1": 9.9762, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 9.6402, "ap-southeast-2": 9.7074, + "ca-central-1": 0.0, + "ca-west-1": 8.6322, "eu-central-1": 9.3042, + "eu-central-2": 0.0, "eu-west-1": 8.6322, + "eu-west-2": 8.9682, "il-central-1": 9.05588, - "us-east-1": 7.7586, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 9.7778, - "us-west-2": 0.0 + "us-west-2": 7.7586 }, "m6idn.large": { "ap-northeast-1": 0.29975, - "ap-southeast-1": 0.30993, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.29624, "eu-central-1": 0.0, + "eu-north-1": 0.2776, + "eu-south-2": 0.2866, "eu-west-1": 0.0, - "us-east-1": 0.25412, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-2": 0.25412 + "us-east-1": 0.0, + "us-east-2": 0.25412, + "us-gov-west-1": 0.29507, + "us-west-1": 0.27844, + "us-west-2": 0.0 }, "m6idn.xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.53773, "eu-central-1": 0.47408, - "eu-west-1": 0.48625, - "us-east-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.45068, + "us-east-1": 0.41324, "us-east-2": 0.41324, "us-gov-west-1": 0.49514, - "us-west-2": 0.41324 + "us-west-1": 0.46188, + "us-west-2": 0.0 }, "m6idn.metal": { "ap-northeast-1": 0.0, "ap-southeast-1": 12.66996, - "eu-central-1": 0.0, + "ap-southeast-2": 13.04436, + "eu-central-1": 12.29556, + "eu-north-1": 10.789, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 10.34868, "us-east-2": 10.34868, "us-gov-west-1": 12.96948, + "us-west-1": 11.90516, "us-west-2": 0.0 }, "m6idn.2xlarge": { - "ap-northeast-1": 1.0659, - "ap-southeast-1": 0.94656, + "ap-northeast-1": 0.984, + "ap-southeast-1": 1.02472, + "ap-southeast-2": 1.05046, "eu-central-1": 0.0, + "eu-north-1": 0.8954, + "eu-south-2": 0.0, "eu-west-1": 0.87636, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 0.86513, + "us-east-2": 0.86513, "us-gov-west-1": 0.96528, + "us-west-1": 0.0, "us-west-2": 0.86513 }, "m6idn.4xlarge": { "ap-northeast-1": 1.803, "ap-southeast-1": 1.88443, + "ap-southeast-2": 1.77492, "eu-central-1": 1.83295, + "eu-north-1": 1.493, + "eu-south-2": 1.55844, "eu-west-1": 1.72999, - "us-east-1": 1.43796, + "us-east-1": 0.0, "us-east-2": 1.43796, "us-gov-west-1": 0.0, + "us-west-1": 1.77927, "us-west-2": 1.43796 }, "m6idn.8xlarge": { "ap-northeast-1": 3.441, "ap-southeast-1": 3.60386, + "ap-southeast-2": 3.38484, "eu-central-1": 3.5009, + "eu-north-1": 3.0866, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 3.36612, - "us-west-2": 2.71092 + "us-gov-west-1": 3.68623, + "us-west-1": 0.0, + "us-west-2": 2.96551 }, "m6idn.12xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 4.85436, - "eu-central-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 4.71396, + "eu-north-1": 4.5474, + "eu-south-2": 4.76335, "eu-west-1": 4.43316, "us-east-1": 4.36577, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 5.44685, + "us-west-1": 4.56756, "us-west-2": 3.98388 }, "m6idn.16xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 6.41748, + "ap-southeast-2": 6.60468, "eu-central-1": 0.0, - "eu-west-1": 6.42497, + "eu-north-1": 5.477, + "eu-south-2": 0.0, + "eu-west-1": 5.85588, "us-east-1": 0.0, "us-east-2": 5.76602, - "us-gov-west-1": 6.56724, + "us-gov-west-1": 7.20746, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6idn.24xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 10.9758, "ap-southeast-1": 9.54372, + "ap-southeast-2": 10.79047, "eu-central-1": 0.0, - "eu-west-1": 8.70132, - "us-east-1": 7.80276, + "eu-north-1": 8.133, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 8.56654, "us-east-2": 7.80276, - "us-gov-west-1": 10.7287, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6idn.32xlarge": { "ap-northeast-1": 13.269, "ap-southeast-1": 0.0, + "ap-southeast-2": 13.04436, "eu-central-1": 12.29556, + "eu-north-1": 0.0, + "eu-south-2": 11.31252, "eu-west-1": 11.54676, - "us-east-1": 10.34868, + "us-east-1": 0.0, "us-east-2": 10.34868, "us-gov-west-1": 12.96948, - "us-west-2": 10.34868 + "us-west-1": 11.90516, + "us-west-2": 0.0 }, "m6in.large": { - "ap-northeast-1": 0.27401, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.26582, + "ap-southeast-2": 0.28805, "eu-central-1": 0.25997, + "eu-north-1": 0.2578, + "eu-south-2": 0.2657, "eu-west-1": 0.25061, "us-east-1": 0.23423, "us-east-2": 0.23423, - "us-gov-west-1": 0.28676, + "us-gov-west-1": 0.26933, + "us-west-1": 0.25744, "us-west-2": 0.0 }, "m6in.xlarge": { "ap-northeast-1": 0.45302, "ap-southeast-1": 0.43664, - "eu-central-1": 0.45793, - "eu-west-1": 0.40622, + "ap-southeast-2": 0.446, + "eu-central-1": 0.42494, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.43734, "us-east-1": 0.37346, "us-east-2": 0.0, "us-gov-west-1": 0.44366, + "us-west-1": 0.0, "us-west-2": 0.40131 }, "m6in.metal": { "ap-northeast-1": 11.62164, "ap-southeast-1": 0.0, + "ap-southeast-2": 11.397, "eu-central-1": 10.72308, + "eu-north-1": 9.637, + "eu-south-2": 10.09652, "eu-west-1": 10.12404, "us-east-1": 9.07572, - "us-east-2": 9.07572, + "us-east-2": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6in.2xlarge": { "ap-northeast-1": 0.95264, "ap-southeast-1": 0.84828, - "eu-central-1": 0.82488, + "ap-southeast-2": 0.867, + "eu-central-1": 0.89087, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.72192, - "us-east-2": 0.77761, + "us-east-1": 0.77761, + "us-east-2": 0.72192, "us-gov-west-1": 0.0, - "us-west-2": 0.72192 + "us-west-1": 0.81476, + "us-west-2": 0.77761 }, "m6in.4xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, + "ap-southeast-2": 1.7094, "eu-central-1": 0.0, + "eu-north-1": 1.349, + "eu-south-2": 1.40644, "eu-west-1": 1.40988, - "us-east-1": 0.0, + "us-east-1": 1.39022, "us-east-2": 0.0, "us-gov-west-1": 1.55964, + "us-west-1": 0.0, "us-west-2": 1.27884 }, "m6in.8xlarge": { "ap-northeast-1": 3.31558, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 2.65476, + "ap-southeast-2": 0.0, + "eu-central-1": 3.06847, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "us-east-1": 2.39268, "us-east-2": 2.61545, "us-gov-west-1": 0.0, - "us-west-2": 2.61545 + "us-west-1": 2.76404, + "us-west-2": 0.0 }, "m6in.12xlarge": { "ap-northeast-1": 4.46124, "ap-southeast-1": 4.26468, + "ap-southeast-2": 4.377, "eu-central-1": 4.52021, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 3.50652, "us-east-2": 0.0, - "us-gov-west-1": 4.34892, + "us-gov-west-1": 0.0, + "us-west-1": 4.45342, "us-west-2": 3.84067 }, "m6in.16xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 5.44404, - "eu-west-1": 5.14452, + "ap-southeast-1": 6.17786, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 5.13076, + "eu-west-1": 5.64247, "us-east-1": 4.62036, "us-east-2": 4.62036, "us-gov-west-1": 6.30142, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m6in.24xlarge": { "ap-northeast-1": 8.75748, "ap-southeast-1": 9.1843, + "ap-southeast-2": 8.589, "eu-central-1": 0.0, + "eu-north-1": 7.269, + "eu-south-2": 0.0, "eu-west-1": 8.38121, - "us-east-1": 6.84804, + "us-east-1": 0.0, "us-east-2": 6.84804, - "us-gov-west-1": 0.0, + "us-gov-west-1": 9.36962, + "us-west-1": 8.74183, "us-west-2": 6.84804 }, "m6in.32xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 11.62164, "ap-southeast-1": 0.0, + "ap-southeast-2": 11.397, "eu-central-1": 10.72308, + "eu-north-1": 9.637, + "eu-south-2": 10.09652, "eu-west-1": 10.12404, "us-east-1": 9.07572, "us-east-2": 9.07572, "us-gov-west-1": 11.32212, + "us-west-1": 10.56116, "us-west-2": 9.07572 }, - "m7g.medium": { + "m7a.medium": { + "ap-northeast-1": 0.16987, + "eu-central-1": 0.0, + "eu-north-1": 0.16274, + "eu-south-2": 0.16606, + "eu-west-1": 0.16606, + "us-east-1": 0.15876, + "us-east-2": 0.15296, + "us-west-2": 0.0 + }, + "m7a.large": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.24775, + "eu-north-1": 0.21816, + "eu-south-2": 0.23712, + "eu-west-1": 0.2242, + "us-east-1": 0.21092, + "us-east-2": 0.22251, + "us-west-2": 0.21092 + }, + "m7a.xlarge": { + "ap-northeast-1": 0.42441, + "eu-central-1": 0.0, + "eu-north-1": 0.34132, + "eu-south-2": 0.3534, + "eu-west-1": 0.3534, + "us-east-1": 0.32684, + "us-east-2": 0.35002, + "us-west-2": 0.35002 + }, + "m7a.metal-48xl": { + "ap-northeast-1": 0.0, + "eu-central-1": 13.49556, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 12.5682, + "us-east-1": 0.0, + "us-east-2": 11.29332, + "us-west-2": 11.29332 + }, + "m7a.2xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.72044, + "eu-north-1": 0.65764, + "eu-south-2": 0.6818, + "eu-west-1": 0.73348, + "us-east-1": 0.0, + "us-east-2": 0.62868, + "us-west-2": 0.0 + }, + "m7a.4xlarge": { + "ap-northeast-1": 1.48262, + "eu-central-1": 1.38697, + "eu-north-1": 0.0, + "eu-south-2": 1.1986, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.1851, + "us-west-2": 1.1851 + }, + "m7a.8xlarge": { + "ap-northeast-1": 2.56068, + "eu-central-1": 2.38676, + "eu-north-1": 0.0, + "eu-south-2": 2.2322, + "eu-west-1": 2.43892, + "us-east-1": 2.20519, + "us-east-2": 2.01972, + "us-west-2": 0.0 + }, + "m7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.41642, + "eu-south-2": 3.57588, + "eu-west-1": 0.0, + "us-east-1": 3.22529, + "us-east-2": 2.94708, + "us-west-2": 3.22529 + }, + "m7a.16xlarge": { + "ap-northeast-1": 4.95636, + "eu-central-1": 0.0, + "eu-north-1": 4.10612, + "eu-south-2": 4.2994, + "eu-west-1": 0.0, + "us-east-1": 4.24538, + "us-east-2": 3.87444, + "us-west-2": 4.24538 + }, + "m7a.24xlarge": { + "ap-northeast-1": 8.07074, + "eu-central-1": 6.83028, + "eu-north-1": 6.07668, + "eu-south-2": 0.0, + "eu-west-1": 6.3666, + "us-east-1": 5.72916, + "us-east-2": 6.28558, + "us-west-2": 0.0 + }, + "m7a.32xlarge": { "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 8.83546, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 8.32577, + "us-east-2": 7.58388, + "us-west-2": 7.58388 + }, + "m7a.48xlarge": { + "ap-northeast-1": 14.53908, + "eu-central-1": 0.0, + "eu-north-1": 11.98836, + "eu-south-2": 12.5682, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 11.29332, + "us-west-2": 0.0 + }, + "m7g.medium": { + "ap-northeast-1": 0.1477, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.126, + "ap-southeast-1": 0.146, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.147, + "eu-north-1": 0.0, + "eu-south-2": 0.1405, "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.1456, + "me-south-1": 0.0, + "sa-east-1": 0.16, "us-east-1": 0.1358, "us-east-2": 0.1358, + "us-west-1": 0.1426, "us-west-2": 0.1358 }, "m7g.large": { "ap-northeast-1": 0.2071, + "ap-northeast-2": 0.0, + "ap-south-1": 0.1533, + "ap-south-2": 0.157, + "ap-southeast-1": 0.197, "ap-southeast-2": 0.197, + "ca-central-1": 0.1917, "eu-central-1": 0.0, - "eu-west-1": 0.1917, - "us-east-1": 0.1817, + "eu-north-1": 0.0, + "eu-south-2": 0.1916, + "eu-west-1": 0.186, + "eu-west-2": 0.1953, + "eu-west-3": 0.0, + "me-south-1": 0.2072, + "sa-east-1": 0.2251, + "us-east-1": 0.0, "us-east-2": 0.1817, + "us-west-1": 0.0, "us-west-2": 0.1766 }, "m7g.xlarge": { "ap-northeast-1": 0.3191, + "ap-northeast-2": 0.2956, + "ap-south-1": 0.0, + "ap-south-2": 0.2116, + "ap-southeast-1": 0.3119, "ap-southeast-2": 0.0, + "ca-central-1": 0.2769, "eu-central-1": 0.2905, - "eu-west-1": 0.0, - "us-east-1": 0.2685, - "us-east-2": 0.0, + "eu-north-1": 0.2793, + "eu-south-2": 0.0, + "eu-west-1": 0.2884, + "eu-west-2": 0.2837, + "eu-west-3": 0.2974, + "me-south-1": 0.3194, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2685, + "us-west-1": 0.2854, "us-west-2": 0.0 }, "m7g.metal": { "ap-northeast-1": 3.5378, + "ap-northeast-2": 3.3746, + "ap-south-1": 2.0312, + "ap-south-2": 0.0, + "ap-southeast-1": 3.429, "ap-southeast-2": 3.429, + "ca-central-1": 3.0757, "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 3.0754, + "eu-west-2": 0.0, + "eu-west-3": 3.2114, + "me-south-1": 0.0, + "sa-east-1": 4.3266, "us-east-1": 2.7762, - "us-east-2": 2.7762, + "us-east-2": 0.0, + "us-west-1": 3.2114, "us-west-2": 2.7762 }, "m7g.2xlarge": { "ap-northeast-1": 0.6132, - "ap-southeast-2": 0.0, + "ap-northeast-2": 0.5912, + "ap-south-1": 0.0, + "ap-south-2": 0.413, + "ap-southeast-1": 0.5987, + "ap-southeast-2": 0.573, + "ca-central-1": 0.0, "eu-central-1": 0.556, + "eu-north-1": 0.5336, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.512, + "eu-west-2": 0.5424, + "eu-west-3": 0.5697, + "me-south-1": 0.0, + "sa-east-1": 0.6852, + "us-east-1": 0.4914, + "us-east-2": 0.4914, + "us-west-1": 0.5458, "us-west-2": 0.4914 }, "m7g.4xlarge": { "ap-northeast-1": 1.0614, + "ap-northeast-2": 0.0, + "ap-south-1": 0.6609, + "ap-south-2": 0.661, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.9471, + "eu-north-1": 0.8586, + "eu-south-2": 0.938, "eu-west-1": 0.8926, - "us-east-1": 0.0, + "eu-west-2": 0.9674, + "eu-west-3": 0.9744, + "me-south-1": 0.0, + "sa-east-1": 1.2668, + "us-east-1": 0.8589, "us-east-2": 0.8178, - "us-west-2": 0.8589 + "us-west-1": 0.9266, + "us-west-2": 0.0 }, "m7g.8xlarge": { "ap-northeast-1": 1.8514, + "ap-northeast-2": 1.7698, + "ap-south-1": 1.1568, + "ap-south-2": 0.0, + "ap-southeast-1": 1.797, "ap-southeast-2": 1.8998, + "ca-central-1": 1.7118, "eu-central-1": 1.7292, + "eu-north-1": 1.6396, + "eu-south-2": 1.7109, "eu-west-1": 1.7119, + "eu-west-2": 0.0, + "eu-west-3": 1.6882, + "me-south-1": 2.0733, + "sa-east-1": 2.3686, "us-east-1": 1.5529, "us-east-2": 1.4706, - "us-west-2": 1.4706 + "us-west-1": 0.0, + "us-west-2": 1.5529 }, "m7g.12xlarge": { "ap-northeast-1": 2.6946, + "ap-northeast-2": 0.0, + "ap-south-1": 1.6527, + "ap-south-2": 0.0, + "ap-southeast-1": 2.7672, "ap-southeast-2": 2.7672, + "ca-central-1": 2.348, "eu-central-1": 0.0, + "eu-north-1": 2.3769, + "eu-south-2": 2.4839, "eu-west-1": 2.4853, + "eu-west-2": 2.5721, + "eu-west-3": 2.5933, + "me-south-1": 0.0, + "sa-east-1": 3.4704, "us-east-1": 2.2468, "us-east-2": 0.0, - "us-west-2": 2.1234 + "us-west-1": 2.5933, + "us-west-2": 0.0 }, "m7g.16xlarge": { "ap-northeast-1": 3.5378, + "ap-northeast-2": 0.0, + "ap-south-1": 2.0312, + "ap-south-2": 2.0312, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.429, + "ca-central-1": 3.0757, "eu-central-1": 3.2933, - "eu-west-1": 0.0, + "eu-north-1": 2.9394, + "eu-south-2": 3.0738, + "eu-west-1": 3.0754, + "eu-west-2": 3.1845, + "eu-west-3": 3.2114, + "me-south-1": 3.7554, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 2.7762, + "us-west-1": 3.2114, "us-west-2": 2.7762 }, "m7gd.medium": { - "eu-west-1": 0.1545, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 0.1484 + "ap-northeast-1": 0.1681, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1656, + "ap-southeast-2": 0.1621, + "eu-central-1": 0.1631, + "eu-north-1": 0.1551, + "eu-south-2": 0.1545, + "eu-west-1": 0.1581, + "eu-west-3": 0.1611, + "sa-east-1": 0.185, + "us-east-1": 0.1516, + "us-east-2": 0.1516, + "us-west-1": 0.1578, + "us-west-2": 0.0 }, "m7gd.large": { - "eu-west-1": 0.0, - "us-east-1": 0.2018, + "ap-northeast-1": 0.233, + "ap-south-1": 0.166, + "ap-southeast-1": 0.2362, + "ap-southeast-2": 0.0, + "eu-central-1": 0.2312, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.2212, + "eu-west-3": 0.2197, + "sa-east-1": 0.2749, + "us-east-1": 0.0, "us-east-2": 0.2018, + "us-west-1": 0.2207, "us-west-2": 0.0 }, "m7gd.xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.2455, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.3354, + "eu-south-2": 0.3331, "eu-west-1": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.4352, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.3464, + "us-west-2": 0.3214 + }, + "m7gd.metal": { + "ap-northeast-1": 0.0, + "ap-south-1": 2.437, + "ap-southeast-1": 4.4288, + "ap-southeast-2": 4.4591, + "eu-central-1": 0.0, + "eu-north-1": 3.7938, + "eu-south-2": 3.9752, + "eu-west-1": 3.9752, + "eu-west-3": 4.1567, + "sa-east-1": 0.0, + "us-east-1": 3.5821, + "us-east-2": 3.5821, + "us-west-1": 4.1869, + "us-west-2": 3.5821 }, "m7gd.2xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.449, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.6458, + "eu-south-2": 0.0, "eu-west-1": 0.6413, + "eu-west-3": 0.664, + "sa-east-1": 0.0, "us-east-1": 0.5921, "us-east-2": 0.6178, + "us-west-1": 0.0, "us-west-2": 0.5921 }, "m7gd.4xlarge": { - "eu-west-1": 0.0, - "us-east-1": 1.0705, + "ap-northeast-1": 0.0, + "ap-south-1": 0.7671, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.3029, + "eu-central-1": 1.1932, + "eu-north-1": 0.0, + "eu-south-2": 1.1176, + "eu-west-1": 1.1747, + "eu-west-3": 1.1629, + "sa-east-1": 1.5258, + "us-east-1": 1.0193, "us-east-2": 1.0193, + "us-west-1": 1.1705, "us-west-2": 1.0705 }, "m7gd.8xlarge": { - "eu-west-1": 2.0701, + "ap-northeast-1": 0.0, + "ap-south-1": 1.301, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.4409, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.1844, + "eu-west-1": 2.1844, + "eu-west-3": 2.1608, + "sa-east-1": 2.8866, "us-east-1": 1.9761, "us-east-2": 1.9761, + "us-west-1": 2.2966, "us-west-2": 1.8736 }, "m7gd.12xlarge": { + "ap-northeast-1": 3.675, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 3.4345, + "eu-north-1": 3.0499, + "eu-south-2": 3.1941, "eu-west-1": 3.1941, + "eu-west-3": 3.3384, + "sa-east-1": 4.2474, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 3.3624, + "us-west-2": 2.7278 }, "m7gd.16xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 4.4288, + "ap-southeast-2": 4.4591, + "eu-central-1": 4.2776, + "eu-north-1": 0.0, + "eu-south-2": 3.9752, "eu-west-1": 3.9752, + "eu-west-3": 4.1567, + "sa-east-1": 5.6082, "us-east-1": 0.0, - "us-east-2": 3.5821, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 3.5821 }, "m7i.large": { + "ap-northeast-1": 0.2252, + "ap-northeast-2": 0.0, + "ap-south-1": 0.20105, + "ap-southeast-1": 0.221, + "ap-southeast-2": 0.2336, + "ca-central-1": 0.0, + "eu-central-1": 0.22783, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.21859, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.1958, "us-east-2": 0.0, - "us-west-2": 0.20588 + "us-gov-east-1": 0.22205, + "us-gov-west-1": 0.0, + "us-west-1": 0.22436, + "us-west-2": 0.1958 }, "m7i.xlarge": { - "eu-west-1": 0.3197, + "ap-northeast-1": 0.3554, + "ap-northeast-2": 0.3428, + "ap-south-1": 0.32831, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.347, + "ca-central-1": 0.3197, + "eu-central-1": 0.0, + "eu-north-1": 0.3092, + "eu-south-2": 0.0, + "eu-west-1": 0.34217, + "eu-west-2": 0.0, + "eu-west-3": 0.3302, + "sa-east-1": 0.44843, "us-east-1": 0.31676, - "us-east-2": 0.0, + "us-east-2": 0.2966, + "us-gov-east-1": 0.3491, + "us-gov-west-1": 0.3491, + "us-west-1": 0.35372, "us-west-2": 0.2966 }, + "m7i.metal-24xl": { + "ap-northeast-1": 7.03956, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 6.5406, + "eu-north-1": 5.3058, + "eu-south-2": 0.0, + "eu-west-1": 6.09708, + "eu-west-2": 6.31884, + "eu-west-3": 6.37428, + "sa-east-1": 8.64732, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 6.87324, + "us-west-1": 0.0, + "us-west-2": 5.0034 + }, + "m7i.metal-48xl": { + "ap-northeast-1": 12.6642, + "ap-northeast-2": 0.0, + "ap-south-1": 10.3458, + "ap-southeast-1": 12.261, + "ap-southeast-2": 12.261, + "ca-central-1": 0.0, + "eu-central-1": 11.757, + "eu-north-1": 0.0, + "eu-south-2": 10.9506, + "eu-west-1": 0.0, + "eu-west-2": 11.3538, + "eu-west-3": 11.4546, + "sa-east-1": 15.5874, + "us-east-1": 9.8418, + "us-east-2": 0.0, + "us-gov-east-1": 12.3618, + "us-gov-west-1": 0.0, + "us-west-1": 11.4546, + "us-west-2": 9.8418 + }, "m7i.2xlarge": { - "eu-west-1": 0.65934, + "ap-northeast-1": 0.6858, + "ap-northeast-2": 0.71016, + "ap-south-1": 0.0, + "ap-southeast-1": 0.669, + "ap-southeast-2": 0.669, + "ca-central-1": 0.0, + "eu-central-1": 0.6963, + "eu-north-1": 0.63624, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.67782, + "eu-west-3": 0.0, + "sa-east-1": 0.8076, "us-east-1": 0.60852, "us-east-2": 0.60852, + "us-gov-east-1": 0.6732, + "us-gov-west-1": 0.6732, + "us-west-1": 0.68244, "us-west-2": 0.60852 }, "m7i.4xlarge": { - "eu-west-1": 1.15368, - "us-east-1": 1.05204, - "us-east-2": 0.9714, - "us-west-2": 0.0 + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.1562, + "ap-south-1": 1.0134, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.173, + "ca-central-1": 1.15368, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 1.0638, + "eu-west-1": 1.0638, + "eu-west-2": 1.19064, + "eu-west-3": 1.1058, + "sa-east-1": 1.57872, + "us-east-1": 0.9714, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.1814, + "us-west-1": 1.19988, + "us-west-2": 1.05204 }, "m7i.8xlarge": { - "eu-west-1": 2.14236, + "ap-northeast-1": 2.2482, + "ap-northeast-2": 2.34564, + "ap-south-1": 0.0, + "ap-southeast-1": 2.181, + "ap-southeast-2": 2.3826, + "ca-central-1": 1.9626, + "eu-central-1": 2.097, + "eu-north-1": 1.8786, + "eu-south-2": 0.0, + "eu-west-1": 1.9626, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 1.7778, "us-east-2": 0.0, - "us-west-2": 1.7778 + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.1978, + "us-west-1": 2.0466, + "us-west-2": 0.0 }, "m7i.12xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.1386, + "ap-south-1": 2.96472, + "ap-southeast-1": 3.189, + "ap-southeast-2": 3.189, + "ca-central-1": 3.13104, + "eu-central-1": 3.063, + "eu-north-1": 2.99244, + "eu-south-2": 3.13104, "eu-west-1": 0.0, - "us-east-1": 2.5842, - "us-east-2": 2.82612, - "us-west-2": 2.5842 + "eu-west-2": 3.24192, + "eu-west-3": 3.26964, + "sa-east-1": 4.40616, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 3.51912, + "us-gov-west-1": 0.0, + "us-west-1": 3.26964, + "us-west-2": 2.82612 }, "m7i.16xlarge": { + "ap-northeast-1": 4.3314, + "ap-northeast-2": 0.0, + "ap-south-1": 3.89796, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.6002, + "ca-central-1": 3.7602, + "eu-central-1": 0.0, + "eu-north-1": 3.5922, + "eu-south-2": 3.7602, "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 3.9282, + "sa-east-1": 0.0, "us-east-1": 3.3906, "us-east-2": 0.0, - "us-west-2": 3.3906 + "us-gov-east-1": 4.63716, + "us-gov-west-1": 4.2306, + "us-west-1": 4.30452, + "us-west-2": 3.71316 }, "m7i.24xlarge": { + "ap-northeast-1": 6.4146, + "ap-northeast-2": 0.0, + "ap-south-1": 5.76444, + "ap-southeast-1": 6.213, + "ap-southeast-2": 6.8178, + "ca-central-1": 5.5578, + "eu-central-1": 5.961, + "eu-north-1": 0.0, + "eu-south-2": 5.5578, "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 6.37428, + "sa-east-1": 7.8762, "us-east-1": 0.0, "us-east-2": 5.48724, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 5.8098, "us-west-2": 5.0034 }, "m7i.48xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 12.6642, + "ap-northeast-2": 12.0594, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 12.261, + "ca-central-1": 10.9506, + "eu-central-1": 11.757, + "eu-north-1": 0.0, + "eu-south-2": 10.9506, + "eu-west-1": 10.9506, + "eu-west-2": 11.3538, + "eu-west-3": 11.4546, + "sa-east-1": 15.5874, "us-east-1": 9.8418, "us-east-2": 9.8418, + "us-gov-east-1": 12.3618, + "us-gov-west-1": 12.3618, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m7i-flex.large": { + "ap-northeast-1": 0.21869, + "ap-northeast-2": 0.21271, + "ap-south-1": 0.19575, + "ap-southeast-1": 0.2147, + "ap-southeast-2": 0.2147, + "ca-central-1": 0.20173, + "eu-central-1": 0.20971, + "eu-north-1": 0.19675, + "eu-south-2": 0.20173, "eu-west-1": 0.20173, + "eu-west-2": 0.20572, + "eu-west-3": 0.20672, + "sa-east-1": 0.24762, "us-east-1": 0.19076, "us-east-2": 0.19076, + "us-gov-east-1": 0.2157, + "us-gov-west-1": 0.2157, + "us-west-1": 0.20672, "us-west-2": 0.19076 }, "m7i-flex.xlarge": { + "ap-northeast-1": 0.34238, + "ap-northeast-2": 0.33042, + "ap-south-1": 0.2965, + "ap-southeast-1": 0.3344, + "ap-southeast-2": 0.3344, + "ca-central-1": 0.30846, + "eu-central-1": 0.32442, + "eu-north-1": 0.2985, + "eu-south-2": 0.30846, "eu-west-1": 0.30846, + "eu-west-2": 0.31644, + "eu-west-3": 0.31844, + "sa-east-1": 0.40024, "us-east-1": 0.28652, "us-east-2": 0.28652, + "us-gov-east-1": 0.3364, + "us-gov-west-1": 0.3364, + "us-west-1": 0.31844, "us-west-2": 0.28652 }, "m7i-flex.2xlarge": { + "ap-northeast-1": 0.65976, + "ap-northeast-2": 0.63584, + "ap-south-1": 0.568, + "ap-southeast-1": 0.6438, + "ap-southeast-2": 0.6438, + "ca-central-1": 0.59192, + "eu-central-1": 0.62384, + "eu-north-1": 0.572, + "eu-south-2": 0.59192, "eu-west-1": 0.59192, + "eu-west-2": 0.60788, + "eu-west-3": 0.61188, + "sa-east-1": 0.77548, "us-east-1": 0.54804, "us-east-2": 0.54804, + "us-gov-east-1": 0.6478, + "us-gov-west-1": 0.6478, + "us-west-1": 0.61188, "us-west-2": 0.54804 }, "m7i-flex.4xlarge": { + "ap-northeast-1": 1.15452, + "ap-northeast-2": 1.10668, + "ap-south-1": 0.971, + "ap-southeast-1": 1.1226, + "ap-southeast-2": 1.1226, + "ca-central-1": 1.01884, + "eu-central-1": 1.08268, + "eu-north-1": 0.979, + "eu-south-2": 1.01884, "eu-west-1": 1.01884, + "eu-west-2": 1.05076, + "eu-west-3": 1.05876, + "sa-east-1": 1.38596, "us-east-1": 0.93108, "us-east-2": 0.93108, + "us-gov-east-1": 1.1306, + "us-gov-west-1": 1.1306, + "us-west-1": 1.05876, "us-west-2": 0.93108 }, "m7i-flex.8xlarge": { + "ap-northeast-1": 2.14404, + "ap-northeast-2": 2.04836, + "ap-south-1": 1.777, + "ap-southeast-1": 2.0802, + "ap-southeast-2": 2.0802, + "ca-central-1": 1.87268, + "eu-central-1": 2.00036, + "eu-north-1": 1.793, + "eu-south-2": 1.87268, "eu-west-1": 1.87268, + "eu-west-2": 1.93652, + "eu-west-3": 1.95252, + "sa-east-1": 2.60692, "us-east-1": 1.69716, "us-east-2": 1.69716, + "us-gov-east-1": 2.0962, + "us-gov-west-1": 2.0962, + "us-west-1": 1.95252, "us-west-2": 1.69716 }, "p2.xlarge": { - "ap-northeast-1": 1.791, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.707, "ap-south-1": 0.0, - "ap-southeast-1": 1.985, + "ap-southeast-1": 1.813, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 1.554, "eu-west-1": 1.164, - "us-east-1": 0.995, - "us-east-2": 0.995, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 1.085 + "us-west-2": 0.0 }, "p2.8xlarge": { - "ap-northeast-1": 12.501, + "ap-northeast-1": 13.735, "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 15.283, "ap-southeast-2": 13.735, - "eu-central-1": 0.0, + "eu-central-1": 11.834, "eu-west-1": 8.719, "us-east-1": 7.365, "us-east-2": 7.365, - "us-gov-west-1": 8.805, + "us-gov-west-1": 9.669, "us-west-2": 7.365 }, "p2.16xlarge": { @@ -68131,15 +75980,15 @@ "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 17.445, - "us-west-2": 14.565 + "us-west-2": 0.0 }, "p3.2xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 4.681, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.681, "ap-southeast-2": 4.681, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 3.531, + "eu-central-1": 4.236, "eu-west-1": 3.685, "eu-west-2": 3.754, "us-east-1": 3.225, @@ -68150,28 +75999,28 @@ "p3.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 17.101, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 18.231, "ca-central-1": 13.629, "eu-central-1": 0.0, "eu-west-1": 14.247, "eu-west-2": 0.0, "us-east-1": 12.405, - "us-east-2": 13.201, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 13.201 }, "p3.16xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 34.037, "ap-southeast-1": 34.037, "ap-southeast-2": 34.037, "ca-central-1": 27.093, - "eu-central-1": 0.0, + "eu-central-1": 30.749, "eu-west-1": 26.605, - "eu-west-2": 28.877, + "eu-west-2": 0.0, "us-east-1": 0.0, - "us-east-2": 24.645, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 24.645 }, @@ -68184,64 +76033,73 @@ "us-west-2": 31.377 }, "p4d.24xlarge": { - "ap-northeast-1": 49.579365, - "ap-northeast-2": 45.55348, - "eu-central-1": 45.204225, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-southeast-1": 43.42481, + "ca-central-1": 41.624, + "eu-central-1": 0.0, "eu-west-1": 39.101205, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 32.9376, "us-east-2": 36.21486, - "us-gov-west-1": 39.495, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-2": 0.165 }, "p4de.24xlarge": { - "il-central-1": 53.25972, + "ap-southeast-1": 54.2399, + "il-central-1": 58.569192, "us-east-1": 0.0, - "us-west-2": 41.13075 + "us-west-2": 45.227325 }, "p5.48xlarge": { - "us-east-1": 98.485, - "us-west-2": 98.485 + "ap-southeast-2": 127.981, + "ca-central-1": 113.233, + "eu-north-1": 105.3674, + "sa-east-1": 165.3426, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-west-2": 0.165 }, "r3.large": { - "ap-northeast-1": 0.295, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.315, - "ap-south-1": 0.0, + "ap-south-1": 0.304, "ap-southeast-1": 0.295, "ap-southeast-2": 0.315, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "sa-east-1": 0.0, + "eu-west-1": 0.299, + "sa-east-1": 0.48, "us-east-1": 0.261, "us-east-2": 0.261, - "us-gov-west-1": 0.315, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "r3.xlarge": { "ap-northeast-1": 0.495, "ap-northeast-2": 0.495, - "ap-south-1": 0.0, - "ap-southeast-1": 0.535, + "ap-south-1": 0.475, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.495, "eu-central-1": 0.0, "eu-west-1": 0.0, "sa-east-1": 0.865, "us-east-1": 0.46, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-east-2": 0.427, + "us-gov-west-1": 0.495, + "us-west-1": 0.502, "us-west-2": 0.46 }, "r3.2xlarge": { - "ap-northeast-1": 0.965, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.965, "ap-south-1": 0.0, - "ap-southeast-1": 1.045, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.045, "eu-central-1": 1.045, "eu-west-1": 0.0, - "sa-east-1": 1.705, - "us-east-1": 0.895, + "sa-east-1": 1.565, + "us-east-1": 0.829, "us-east-2": 0.895, "us-gov-west-1": 0.0, "us-west-1": 0.979, @@ -68249,17 +76107,17 @@ }, "r3.4xlarge": { "ap-northeast-1": 1.765, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.765, "ap-south-1": 0.0, - "ap-southeast-1": 1.765, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 1.925, + "eu-central-1": 0.0, "eu-west-1": 1.793, - "sa-east-1": 3.245, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.626, - "us-gov-west-1": 1.765, - "us-west-1": 1.645, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 1.493 }, "r3.8xlarge": { @@ -68267,15 +76125,15 @@ "ap-northeast-2": 3.365, "ap-south-1": 3.205, "ap-southeast-1": 3.365, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.365, "eu-central-1": 3.365, - "eu-west-1": 0.0, + "eu-west-1": 3.125, "sa-east-1": 5.765, - "us-east-1": 0.0, + "us-east-1": 2.821, "us-east-2": 2.821, "us-gov-west-1": 3.365, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.821 }, "r4.large": { "ap-northeast-1": 0.271, @@ -68288,88 +76146,88 @@ "eu-central-1": 0.255, "eu-west-1": 0.2578, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "sa-east-1": 0.403, + "eu-west-3": 0.2666, + "sa-east-1": 0.0, "us-east-1": 0.228, "us-east-2": 0.228, "us-gov-west-1": 0.271, - "us-west-1": 0.0, + "us-west-1": 0.243, "us-west-2": 0.228 }, "r4.xlarge": { "ap-northeast-1": 0.447, "ap-northeast-2": 0.415, "ap-northeast-3": 0.447, - "ap-south-1": 0.0, + "ap-south-1": 0.369, "ap-southeast-1": 0.415, - "ap-southeast-2": 0.447, + "ap-southeast-2": 0.415, "ca-central-1": 0.4162, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, - "sa-east-1": 0.655, - "us-east-1": 0.361, - "us-east-2": 0.361, - "us-gov-west-1": 0.447, + "sa-east-1": 0.0, + "us-east-1": 0.3876, + "us-east-2": 0.0, + "us-gov-west-1": 0.415, "us-west-1": 0.4206, - "us-west-2": 0.3876 + "us-west-2": 0.361 }, "r4.2xlarge": { "ap-northeast-1": 0.805, "ap-northeast-2": 0.805, "ap-northeast-3": 0.0, - "ap-south-1": 0.713, + "ap-south-1": 0.7678, "ap-southeast-1": 0.869, "ap-southeast-2": 0.869, "ca-central-1": 0.8074, - "eu-central-1": 0.805, - "eu-west-1": 0.757, + "eu-central-1": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 0.789, "sa-east-1": 1.397, "us-east-1": 0.697, "us-east-2": 0.697, - "us-gov-west-1": 0.805, - "us-west-1": 0.757, - "us-west-2": 0.7502 + "us-gov-west-1": 0.869, + "us-west-1": 0.8162, + "us-west-2": 0.0 }, "r4.4xlarge": { - "ap-northeast-1": 1.573, + "ap-northeast-1": 1.445, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 1.261, "ap-southeast-1": 1.573, "ap-southeast-2": 1.573, - "ca-central-1": 1.4498, - "eu-central-1": 0.0, + "ca-central-1": 1.333, + "eu-central-1": 1.573, "eu-west-1": 1.4674, - "eu-west-2": 1.413, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 1.413, "sa-east-1": 2.629, "us-east-1": 1.229, "us-east-2": 1.229, "us-gov-west-1": 0.0, "us-west-1": 1.4674, - "us-west-2": 0.0 + "us-west-2": 1.3354 }, "r4.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.981, "ap-northeast-2": 0.0, - "ap-northeast-3": 2.725, + "ap-northeast-3": 2.981, "ap-south-1": 2.5762, "ap-southeast-1": 2.725, - "ap-southeast-2": 0.0, + "ap-southeast-2": 2.725, "ca-central-1": 0.0, - "eu-central-1": 2.981, + "eu-central-1": 0.0, "eu-west-1": 2.533, - "eu-west-2": 2.9106, - "eu-west-3": 0.0, - "sa-east-1": 0.0, + "eu-west-2": 2.661, + "eu-west-3": 2.9106, + "sa-east-1": 4.645, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-west-1": 2.981, - "us-west-1": 2.533, + "us-east-2": 2.5058, + "us-gov-west-1": 2.725, + "us-west-1": 0.0, "us-west-2": 2.5058 }, "r4.16xlarge": { @@ -68378,120 +76236,123 @@ "ap-northeast-3": 5.285, "ap-south-1": 4.549, "ap-southeast-1": 5.285, - "ap-southeast-2": 5.285, - "ca-central-1": 4.837, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 5.285, "eu-west-1": 0.0, "eu-west-2": 5.157, "eu-west-3": 0.0, - "sa-east-1": 9.125, + "sa-east-1": 0.0, "us-east-1": 4.421, "us-east-2": 4.421, "us-gov-west-1": 5.285, "us-west-1": 4.901, - "us-west-2": 0.0 + "us-west-2": 4.421 }, "r5.large": { "af-south-1": 0.263, - "ap-east-1": 0.0, + "ap-east-1": 0.262, "ap-northeast-1": 0.247, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.247, "ap-northeast-3": 0.256, "ap-south-1": 0.233, "ap-south-2": 0.0, - "ap-southeast-1": 0.247, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.246, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.247, "ap-southeast-4": 0.246, - "ca-central-1": 0.0, + "ca-central-1": 0.241, + "ca-west-1": 0.241, "eu-central-1": 0.247, - "eu-central-2": 0.0, + "eu-central-2": 0.262, "eu-north-1": 0.237, - "eu-south-1": 0.0, + "eu-south-1": 0.243, "eu-south-2": 0.244, "eu-west-1": 0.244, - "eu-west-2": 0.252, + "eu-west-2": 0.0, "eu-west-3": 0.252, "il-central-1": 0.252, - "me-central-1": 0.25, + "me-central-1": 0.259, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.229, - "us-gov-east-1": 0.246, - "us-gov-west-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.255, + "us-gov-west-1": 0.246, "us-west-1": 0.243, - "us-west-2": 0.0, + "us-west-2": 0.229, "us-west-2-lax-1": 0.0 }, "r5.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.449, - "ap-northeast-1": 0.399, - "ap-northeast-2": 0.399, + "ap-east-1": 0.429, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.417, "ap-northeast-3": 0.417, "ap-south-1": 0.0, - "ap-south-2": 0.355, + "ap-south-2": 0.0, "ap-southeast-1": 0.399, "ap-southeast-2": 0.397, "ap-southeast-3": 0.399, "ap-southeast-4": 0.397, "ca-central-1": 0.0, + "ca-west-1": 0.388, "eu-central-1": 0.417, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.391, "eu-south-2": 0.394, - "eu-west-1": 0.394, + "eu-west-1": 0.0, "eu-west-2": 0.409, "eu-west-3": 0.409, "il-central-1": 0.0, - "me-central-1": 0.405, - "me-south-1": 0.405, - "sa-east-1": 0.497, + "me-central-1": 0.424, + "me-south-1": 0.424, + "sa-east-1": 0.521, "us-east-1": 0.362, "us-east-2": 0.362, "us-gov-east-1": 0.397, - "us-gov-west-1": 0.397, + "us-gov-west-1": 0.0, "us-west-1": 0.392, "us-west-2": 0.0, "us-west-2-lax-1": 0.416 }, "r5.metal": { - "af-south-1": 0.0, + "af-south-1": 8.229, "ap-east-1": 8.181, "ap-northeast-1": 0.0, "ap-northeast-2": 7.461, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 6.405, "ap-south-2": 0.0, "ap-southeast-1": 7.461, "ap-southeast-2": 7.413, "ap-southeast-3": 0.0, "ap-southeast-4": 7.413, "ca-central-1": 6.789, + "ca-west-1": 0.0, "eu-central-1": 7.461, "eu-central-2": 0.0, "eu-north-1": 6.597, "eu-south-1": 7.269, - "eu-south-2": 6.933, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 7.269, "eu-west-3": 7.269, "il-central-1": 7.271, - "me-central-1": 0.0, + "me-central-1": 7.61, "me-south-1": 7.61, "sa-east-1": 9.813, - "us-east-1": 0.0, + "us-east-1": 6.213, "us-east-2": 0.0, "us-gov-east-1": 7.413, - "us-gov-west-1": 0.0, + "us-gov-west-1": 7.413, "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 7.423 + "us-west-2": 6.213, + "us-west-2-lax-1": 0.0 }, "r5.2xlarge": { - "af-south-1": 0.837, + "af-south-1": 0.0, "ap-east-1": 0.833, "ap-northeast-1": 0.773, "ap-northeast-2": 0.0, @@ -68499,88 +76360,91 @@ "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.773, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.769, - "ca-central-1": 0.717, + "ap-southeast-2": 0.769, + "ap-southeast-3": 0.773, + "ap-southeast-4": 0.805, + "ca-central-1": 0.75, + "ca-west-1": 0.75, "eu-central-1": 0.773, "eu-central-2": 0.834, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-south-1": 0.793, + "eu-south-2": 0.763, + "eu-west-1": 0.763, "eu-west-2": 0.0, "eu-west-3": 0.757, "il-central-1": 0.757, - "me-central-1": 0.823, + "me-central-1": 0.785, "me-south-1": 0.785, - "sa-east-1": 1.017, - "us-east-1": 0.669, - "us-east-2": 0.0, + "sa-east-1": 0.969, + "us-east-1": 0.0, + "us-east-2": 0.699, "us-gov-east-1": 0.805, "us-gov-west-1": 0.769, "us-west-1": 0.759, "us-west-2": 0.669, - "us-west-2-lax-1": 0.77 + "us-west-2-lax-1": 0.806 }, "r5.4xlarge": { - "af-south-1": 1.509, - "ap-east-1": 1.581, + "af-south-1": 1.59, + "ap-east-1": 1.501, "ap-northeast-1": 1.454, - "ap-northeast-2": 1.454, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 1.267, + "ap-south-1": 1.205, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 1.454, "ap-southeast-4": 0.0, "ca-central-1": 1.335, + "ca-west-1": 1.269, "eu-central-1": 0.0, "eu-central-2": 1.503, "eu-north-1": 0.0, "eu-south-1": 1.349, "eu-south-2": 1.361, - "eu-west-1": 1.293, - "eu-west-2": 1.349, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 1.349, - "il-central-1": 0.0, + "il-central-1": 1.349, "me-central-1": 1.48, - "me-south-1": 1.48, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 1.173, + "us-east-1": 1.233, "us-east-2": 0.0, "us-gov-east-1": 1.445, "us-gov-west-1": 1.373, - "us-west-1": 1.352, - "us-west-2": 0.0, + "us-west-1": 1.285, + "us-west-2": 1.233, "us-west-2-lax-1": 1.375 }, "r5.8xlarge": { "af-south-1": 2.853, "ap-east-1": 2.837, - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.743, "ap-northeast-2": 0.0, "ap-northeast-3": 2.743, "ap-south-1": 2.369, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 2.581, - "ap-southeast-3": 2.743, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 2.373, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 2.84, - "eu-north-1": 2.438, + "eu-central-2": 0.0, + "eu-north-1": 2.309, "eu-south-1": 2.533, - "eu-south-2": 2.556, + "eu-south-2": 2.421, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 2.675, "il-central-1": 0.0, "me-central-1": 2.647, "me-south-1": 2.647, - "sa-east-1": 3.381, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.302, "us-gov-east-1": 2.581, @@ -68590,51 +76454,53 @@ "us-west-2-lax-1": 2.584 }, "r5.12xlarge": { - "af-south-1": 0.0, - "ap-east-1": 4.413, - "ap-northeast-1": 0.0, - "ap-northeast-2": 4.032, + "af-south-1": 4.197, + "ap-east-1": 4.173, + "ap-northeast-1": 3.813, + "ap-northeast-2": 0.0, "ap-northeast-3": 3.813, - "ap-south-1": 0.0, - "ap-south-2": 3.471, + "ap-south-1": 3.471, + "ap-south-2": 0.0, "ap-southeast-1": 3.813, "ap-southeast-2": 4.006, - "ap-southeast-3": 4.032, + "ap-southeast-3": 0.0, "ap-southeast-4": 4.006, "ca-central-1": 3.477, - "eu-central-1": 4.032, + "ca-west-1": 3.676, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 3.574, "eu-south-1": 3.717, "eu-south-2": 3.752, "eu-west-1": 3.752, - "eu-west-2": 0.0, + "eu-west-2": 3.93, "eu-west-3": 0.0, - "il-central-1": 3.718, - "me-central-1": 3.887, + "il-central-1": 3.931, + "me-central-1": 4.111, "me-south-1": 3.887, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 3.789, + "us-gov-east-1": 4.006, + "us-gov-west-1": 4.006, "us-west-1": 0.0, "us-west-2": 3.37, "us-west-2-lax-1": 3.794 }, "r5.16xlarge": { - "af-south-1": 5.864, - "ap-east-1": 5.509, + "af-south-1": 5.541, + "ap-east-1": 5.83, "ap-northeast-1": 5.029, "ap-northeast-2": 0.0, "ap-northeast-3": 5.321, "ap-south-1": 4.573, - "ap-south-2": 0.0, - "ap-southeast-1": 5.029, + "ap-south-2": 4.325, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.287, "ap-southeast-3": 5.321, "ap-southeast-4": 5.287, "ca-central-1": 4.581, + "ca-west-1": 0.0, "eu-central-1": 5.321, "eu-central-2": 5.515, "eu-north-1": 4.71, @@ -68652,7 +76518,7 @@ "us-gov-east-1": 4.997, "us-gov-west-1": 5.287, "us-west-1": 0.0, - "us-west-2": 4.197, + "us-west-2": 4.439, "us-west-2-lax-1": 5.003 }, "r5.24xlarge": { @@ -68668,19 +76534,20 @@ "ap-southeast-3": 7.461, "ap-southeast-4": 7.413, "ca-central-1": 6.789, - "eu-central-1": 0.0, + "ca-west-1": 6.789, + "eu-central-1": 7.461, "eu-central-2": 8.191, "eu-north-1": 0.0, "eu-south-1": 7.269, "eu-south-2": 0.0, - "eu-west-1": 6.933, + "eu-west-1": 0.0, "eu-west-2": 7.269, "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 7.61, - "me-south-1": 7.61, + "me-south-1": 0.0, "sa-east-1": 9.813, - "us-east-1": 6.213, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 7.413, "us-gov-west-1": 7.413, @@ -68997,16 +76864,16 @@ "ap-northeast-2": 0.273, "ap-southeast-1": 0.0, "ap-southeast-2": 0.276, - "ca-central-1": 0.2743, + "ca-central-1": 0.258, "eu-central-1": 0.273, - "eu-north-1": 0.25294, - "eu-south-1": 0.2875, + "eu-north-1": 0.268734, + "eu-south-1": 0.27, "eu-west-1": 0.262, - "eu-west-2": 0.0, + "eu-west-2": 0.27, "sa-east-1": 0.332, - "us-east-1": 0.244, + "us-east-1": 0.2589, "us-east-2": 0.0, - "us-west-2": 0.244 + "us-west-2": 0.2589 }, "r5b.xlarge": { "ap-northeast-1": 0.4932, @@ -69016,58 +76883,58 @@ "ca-central-1": 0.421, "eu-central-1": 0.0, "eu-north-1": 0.442468, - "eu-south-1": 0.445, - "eu-west-1": 0.0, + "eu-south-1": 0.48, + "eu-west-1": 0.429, "eu-west-2": 0.445, "sa-east-1": 0.0, "us-east-1": 0.393, - "us-east-2": 0.0, + "us-east-2": 0.393, "us-west-2": 0.0 }, "r5b.metal": { - "ap-northeast-1": 9.7218, + "ap-northeast-1": 8.853, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 8.7714, "eu-central-1": 8.709, - "eu-north-1": 7.74612, + "eu-north-1": 8.504232, "eu-south-1": 8.565, "eu-west-1": 8.9826, - "eu-west-2": 0.0, - "sa-east-1": 0.0, + "eu-west-2": 9.405, + "sa-east-1": 11.541, "us-east-1": 8.0322, "us-east-2": 0.0, "us-west-2": 7.317 }, "r5b.2xlarge": { - "ap-northeast-1": 0.9614, + "ap-northeast-1": 0.889, "ap-northeast-2": 0.877, "ap-southeast-1": 0.9482, - "ap-southeast-2": 0.0, - "ca-central-1": 0.817, + "ap-southeast-2": 0.889, + "ca-central-1": 0.0, "eu-central-1": 0.877, "eu-north-1": 0.79676, "eu-south-1": 0.935, "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 1.113, "us-east-1": 0.8206, "us-east-2": 0.761, - "us-west-2": 0.8206 + "us-west-2": 0.0 }, "r5b.4xlarge": { "ap-northeast-1": 1.613, "ap-northeast-2": 1.589, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.613, "ca-central-1": 1.5994, "eu-central-1": 1.7314, - "eu-north-1": 1.42852, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 1.501, + "eu-west-1": 1.6346, "eu-west-2": 1.565, - "sa-east-1": 0.0, + "sa-east-1": 2.061, "us-east-1": 1.4762, "us-east-2": 0.0, "us-west-2": 1.4762 @@ -69076,33 +76943,33 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 3.061, + "ap-southeast-2": 0.0, "ca-central-1": 3.0338, "eu-central-1": 3.2978, "eu-north-1": 0.0, - "eu-south-1": 2.965, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "sa-east-1": 4.3362, - "us-east-1": 0.0, + "eu-west-2": 3.245, + "sa-east-1": 3.957, + "us-east-1": 2.7874, "us-east-2": 0.0, "us-west-2": 2.549 }, "r5b.12xlarge": { - "ap-northeast-1": 4.509, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 4.8642, "ap-southeast-1": 4.437, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 4.4682, "eu-central-1": 4.8642, - "eu-north-1": 3.95556, + "eu-north-1": 0.0, "eu-south-1": 4.785, - "eu-west-1": 4.5738, - "eu-west-2": 4.365, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 4.785, + "sa-east-1": 5.853, + "us-east-1": 3.741, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-2": 4.0986 }, "r5b.16xlarge": { "ap-northeast-1": 5.957, @@ -69111,24 +76978,24 @@ "ap-southeast-2": 6.5362, "ca-central-1": 5.9026, "eu-central-1": 0.0, - "eu-north-1": 5.724488, - "eu-south-1": 5.765, + "eu-north-1": 5.21908, + "eu-south-1": 6.325, "eu-west-1": 6.0434, "eu-west-2": 0.0, "sa-east-1": 8.5074, "us-east-1": 0.0, - "us-east-2": 5.4098, + "us-east-2": 4.933, "us-west-2": 4.933 }, "r5b.24xlarge": { "ap-northeast-1": 9.7218, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 8.709, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 9.5634, + "eu-central-1": 0.0, "eu-north-1": 8.504232, - "eu-south-1": 9.405, + "eu-south-1": 0.0, "eu-west-1": 8.9826, "eu-west-2": 8.565, "sa-east-1": 11.541, @@ -69139,56 +77006,56 @@ "r5d.large": { "af-south-1": 0.285, "ap-east-1": 0.27, - "ap-northeast-1": 0.269, - "ap-northeast-2": 0.278, - "ap-northeast-3": 0.279, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.279, - "ap-southeast-2": 0.279, + "ap-south-2": 0.255, + "ap-southeast-1": 0.269, + "ap-southeast-2": 0.269, "ap-southeast-3": 0.269, "ap-southeast-4": 0.0, "ca-central-1": 0.253, "eu-central-1": 0.278, "eu-central-2": 0.297, - "eu-north-1": 0.247, + "eu-north-1": 0.0, "eu-south-1": 0.273, - "eu-south-2": 0.255, - "eu-west-1": 0.255, + "eu-south-2": 0.265, + "eu-west-1": 0.265, "eu-west-2": 0.0, - "eu-west-3": 0.274, - "il-central-1": 0.273, - "me-central-1": 0.282, + "eu-west-3": 0.264, + "il-central-1": 0.263, + "me-central-1": 0.271, "me-south-1": 0.271, - "sa-east-1": 0.323, + "sa-east-1": 0.337, "us-east-1": 0.248, "us-east-2": 0.248, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.278, "us-gov-west-1": 0.278, "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.268 }, "r5d.xlarge": { - "af-south-1": 0.475, + "af-south-1": 0.498, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.464, "ap-northeast-2": 0.441, - "ap-northeast-3": 0.464, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-northeast-3": 0.443, + "ap-south-1": 0.397, + "ap-south-2": 0.415, "ap-southeast-1": 0.0, "ap-southeast-2": 0.443, "ap-southeast-3": 0.464, - "ap-southeast-4": 0.464, + "ap-southeast-4": 0.0, "ca-central-1": 0.411, - "eu-central-1": 0.462, + "eu-central-1": 0.441, "eu-central-2": 0.476, - "eu-north-1": 0.417, + "eu-north-1": 0.399, "eu-south-1": 0.431, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 0.434, + "eu-west-2": 0.433, "eu-west-3": 0.0, "il-central-1": 0.431, "me-central-1": 0.447, @@ -69198,9 +77065,9 @@ "us-east-2": 0.383, "us-gov-east-1": 0.462, "us-gov-west-1": 0.441, - "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.441 + "us-west-1": 0.438, + "us-west-2": 0.4, + "us-west-2-lax-1": 0.0 }, "r5d.metal": { "af-south-1": 0.0, @@ -69209,15 +77076,15 @@ "ap-northeast-2": 8.469, "ap-northeast-3": 8.517, "ap-south-1": 0.0, - "ap-south-2": 7.413, + "ap-south-2": 0.0, "ap-southeast-1": 8.517, "ap-southeast-2": 8.517, "ap-southeast-3": 8.517, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 7.749, "eu-central-1": 8.469, "eu-central-2": 9.299, - "eu-north-1": 0.0, + "eu-north-1": 7.461, "eu-south-1": 8.229, "eu-south-2": 0.0, "eu-west-1": 7.845, @@ -69225,44 +77092,44 @@ "eu-west-3": 8.277, "il-central-1": 0.0, "me-central-1": 8.613, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "me-south-1": 8.613, + "sa-east-1": 11.109, "us-east-1": 7.077, "us-east-2": 7.077, - "us-gov-east-1": 8.469, + "us-gov-east-1": 0.0, "us-gov-west-1": 8.469, "us-west-1": 7.941, "us-west-2": 7.077, "us-west-2-lax-1": 8.459 }, "r5d.2xlarge": { - "af-south-1": 0.925, + "af-south-1": 0.0, "ap-east-1": 0.865, - "ap-northeast-1": 0.861, + "ap-northeast-1": 0.903, "ap-northeast-2": 0.898, "ap-northeast-3": 0.0, "ap-south-1": 0.769, - "ap-south-2": 0.769, - "ap-southeast-1": 0.861, - "ap-southeast-2": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.861, "ap-southeast-3": 0.861, - "ap-southeast-4": 0.861, - "ca-central-1": 0.797, + "ap-southeast-4": 0.903, + "ca-central-1": 0.0, "eu-central-1": 0.899, "eu-central-2": 0.0, "eu-north-1": 0.773, - "eu-south-1": 0.837, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.843, "eu-west-2": 0.0, - "eu-west-3": 0.841, + "eu-west-3": 0.882, "il-central-1": 0.837, "me-central-1": 0.911, "me-south-1": 0.869, "sa-east-1": 1.132, "us-east-1": 0.776, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.857, "us-gov-west-1": 0.857, "us-west-1": 0.852, "us-west-2": 0.776, @@ -69272,58 +77139,58 @@ "af-south-1": 1.685, "ap-east-1": 1.565, "ap-northeast-1": 1.557, - "ap-northeast-2": 1.632, - "ap-northeast-3": 1.641, - "ap-south-1": 1.373, - "ap-south-2": 0.0, - "ap-southeast-1": 1.641, + "ap-northeast-2": 1.549, + "ap-northeast-3": 1.557, + "ap-south-1": 1.445, + "ap-south-2": 1.445, + "ap-southeast-1": 1.557, "ap-southeast-2": 1.557, "ap-southeast-3": 0.0, "ap-southeast-4": 1.557, "ca-central-1": 0.0, "eu-central-1": 1.632, - "eu-central-2": 1.779, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 1.509, - "eu-south-2": 1.522, + "eu-south-2": 1.445, "eu-west-1": 1.522, "eu-west-2": 1.517, "eu-west-3": 1.598, "il-central-1": 1.59, "me-central-1": 1.573, - "me-south-1": 1.573, + "me-south-1": 1.657, "sa-east-1": 1.989, - "us-east-1": 1.317, + "us-east-1": 1.386, "us-east-2": 1.317, - "us-gov-east-1": 0.0, - "us-gov-west-1": 1.549, + "us-gov-east-1": 1.549, + "us-gov-west-1": 1.632, "us-west-1": 1.539, - "us-west-2": 1.386, - "us-west-2-lax-1": 1.63 + "us-west-2": 1.317, + "us-west-2-lax-1": 1.547 }, "r5d.8xlarge": { "af-south-1": 3.205, "ap-east-1": 2.965, "ap-northeast-1": 2.949, "ap-northeast-2": 2.933, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.116, "ap-south-1": 2.581, - "ap-south-2": 2.581, + "ap-south-2": 2.726, "ap-southeast-1": 2.949, - "ap-southeast-2": 3.116, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.949, "ap-southeast-4": 3.116, "ca-central-1": 2.693, "eu-central-1": 2.933, - "eu-central-2": 3.21, + "eu-central-2": 0.0, "eu-north-1": 2.597, - "eu-south-1": 2.853, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 2.725, - "eu-west-2": 2.869, + "eu-west-2": 3.031, "eu-west-3": 2.869, - "il-central-1": 0.0, - "me-central-1": 3.15, + "il-central-1": 3.014, + "me-central-1": 2.981, "me-south-1": 2.981, "sa-east-1": 3.813, "us-east-1": 2.469, @@ -69335,49 +77202,49 @@ "us-west-2-lax-1": 2.93 }, "r5d.12xlarge": { - "af-south-1": 4.725, + "af-south-1": 0.0, "ap-east-1": 4.365, "ap-northeast-1": 4.592, - "ap-northeast-2": 4.317, - "ap-northeast-3": 0.0, - "ap-south-1": 3.789, - "ap-south-2": 3.789, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 4.592, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 4.341, "ap-southeast-2": 0.0, "ap-southeast-3": 4.592, "ap-southeast-4": 4.592, "ca-central-1": 4.185, "eu-central-1": 4.566, "eu-central-2": 0.0, - "eu-north-1": 4.032, - "eu-south-1": 4.197, - "eu-south-2": 4.005, - "eu-west-1": 4.005, - "eu-west-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 4.439, + "eu-south-2": 4.235, + "eu-west-1": 4.235, + "eu-west-2": 4.221, "eu-west-3": 4.221, "il-central-1": 4.197, "me-central-1": 4.389, - "me-south-1": 4.642, + "me-south-1": 4.389, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 3.828, "us-gov-east-1": 4.317, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 3.828, + "us-west-2": 3.621, "us-west-2-lax-1": 4.312 }, "r5d.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 6.101, "ap-northeast-1": 5.733, "ap-northeast-2": 5.701, - "ap-northeast-3": 6.067, + "ap-northeast-3": 0.0, "ap-south-1": 4.997, - "ap-south-2": 0.0, + "ap-south-2": 4.997, "ap-southeast-1": 5.733, "ap-southeast-2": 5.733, - "ap-southeast-3": 6.067, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 5.221, "eu-central-1": 5.701, @@ -69385,17 +77252,17 @@ "eu-north-1": 5.029, "eu-south-1": 5.541, "eu-south-2": 5.285, - "eu-west-1": 5.285, - "eu-west-2": 5.573, + "eu-west-1": 5.592, + "eu-west-2": 0.0, "eu-west-3": 5.573, "il-central-1": 0.0, "me-central-1": 5.797, "me-south-1": 5.797, - "sa-east-1": 7.899, + "sa-east-1": 7.461, "us-east-1": 4.773, "us-east-2": 4.773, "us-gov-east-1": 5.701, - "us-gov-west-1": 6.033, + "us-gov-west-1": 0.0, "us-west-1": 5.349, "us-west-2": 4.773, "us-west-2-lax-1": 6.026 @@ -69403,22 +77270,22 @@ "r5d.24xlarge": { "af-south-1": 9.285, "ap-east-1": 8.565, - "ap-northeast-1": 0.0, + "ap-northeast-1": 8.517, "ap-northeast-2": 8.469, - "ap-northeast-3": 0.0, + "ap-northeast-3": 8.517, "ap-south-1": 7.413, "ap-south-2": 7.413, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 8.517, "ap-southeast-3": 8.517, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 8.469, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 8.229, - "eu-south-2": 7.845, - "eu-west-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 7.845, "eu-west-2": 8.277, "eu-west-3": 8.277, "il-central-1": 8.229, @@ -69427,15 +77294,15 @@ "sa-east-1": 11.109, "us-east-1": 0.0, "us-east-2": 7.077, - "us-gov-east-1": 0.0, + "us-gov-east-1": 8.469, "us-gov-west-1": 8.469, - "us-west-1": 7.941, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 8.459 }, "r5dn.large": { "af-south-1": 0.316, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.31018, "ap-northeast-2": 0.30594, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, @@ -69443,25 +77310,25 @@ "eu-north-1": 0.272, "eu-south-1": 0.30276, "eu-west-1": 0.281, - "eu-west-3": 0.291, + "eu-west-3": 0.0, "us-east-1": 0.27202, "us-east-2": 0.27202, - "us-gov-east-1": 0.296, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.30806, + "us-gov-west-1": 0.296, "us-west-2": 0.262 }, "r5dn.xlarge": { "af-south-1": 0.537, - "ap-northeast-1": 0.501, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.51688, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.495, "ap-southeast-2": 0.503, - "eu-central-1": 0.51688, + "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.51052, "eu-west-1": 0.48932, "eu-west-3": 0.487, - "us-east-1": 0.44904, + "us-east-1": 0.429, "us-east-2": 0.429, "us-gov-east-1": 0.52112, "us-gov-west-1": 0.497, @@ -69469,33 +77336,33 @@ }, "r5dn.metal": { "af-south-1": 10.773, - "ap-northeast-1": 9.909, + "ap-northeast-1": 0.0, "ap-northeast-2": 9.717, "ap-southeast-1": 9.765, - "ap-southeast-2": 0.0, - "eu-central-1": 9.717, + "ap-southeast-2": 9.957, + "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 9.573, - "eu-west-1": 0.0, + "eu-west-1": 9.093, "eu-west-3": 9.573, "us-east-1": 8.181, - "us-east-2": 0.0, + "us-east-2": 8.181, "us-gov-east-1": 9.813, "us-gov-west-1": 9.813, "us-west-2": 8.181 }, "r5dn.2xlarge": { - "af-south-1": 1.049, - "ap-northeast-1": 1.02572, + "af-south-1": 0.0, + "ap-northeast-1": 0.977, "ap-northeast-2": 1.00876, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.02996, + "ap-southeast-2": 0.981, "eu-central-1": 0.0, "eu-north-1": 0.91548, "eu-south-1": 0.0, - "eu-west-1": 0.95364, + "eu-west-1": 0.0, "eu-west-3": 0.949, - "us-east-1": 0.0, + "us-east-1": 0.833, "us-east-2": 0.87308, "us-gov-east-1": 1.01724, "us-gov-west-1": 0.969, @@ -69505,50 +77372,50 @@ "af-south-1": 2.03908, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 1.765, + "ap-southeast-1": 1.861, "ap-southeast-2": 1.89492, - "eu-central-1": 1.757, + "eu-central-1": 0.0, "eu-north-1": 1.581, "eu-south-1": 1.733, "eu-west-1": 1.653, - "eu-west-3": 1.733, + "eu-west-3": 1.82708, "us-east-1": 0.0, - "us-east-2": 1.58116, + "us-east-2": 0.0, "us-gov-east-1": 1.86948, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.58116 }, "r5dn.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.91316, "ap-northeast-1": 0.0, "ap-northeast-2": 3.54004, "ap-southeast-1": 3.365, "ap-southeast-2": 3.62484, "eu-central-1": 3.349, - "eu-north-1": 2.997, - "eu-south-1": 3.48916, + "eu-north-1": 3.16692, + "eu-south-1": 0.0, "eu-west-1": 3.141, - "eu-west-3": 3.48916, + "eu-west-3": 3.301, "us-east-1": 2.837, - "us-east-2": 0.0, + "us-east-2": 2.99732, "us-gov-east-1": 0.0, "us-gov-west-1": 3.57396, "us-west-2": 2.99732 }, "r5dn.12xlarge": { - "af-south-1": 0.0, - "ap-northeast-1": 0.0, + "af-south-1": 5.78724, + "ap-northeast-1": 5.037, "ap-northeast-2": 4.941, "ap-southeast-1": 5.253, "ap-southeast-2": 5.061, "eu-central-1": 0.0, "eu-north-1": 4.413, - "eu-south-1": 0.0, + "eu-south-1": 4.869, "eu-west-1": 0.0, "eu-west-3": 5.15124, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 4.989, + "us-gov-east-1": 5.27844, "us-gov-west-1": 4.989, "us-west-2": 4.41348 }, @@ -69558,7 +77425,7 @@ "ap-northeast-2": 6.533, "ap-southeast-1": 0.0, "ap-southeast-2": 6.693, - "eu-central-1": 0.0, + "eu-central-1": 6.91508, "eu-north-1": 0.0, "eu-south-1": 6.81332, "eu-west-1": 6.47412, @@ -69574,8 +77441,8 @@ "ap-northeast-1": 9.909, "ap-northeast-2": 9.717, "ap-southeast-1": 0.0, - "ap-southeast-2": 9.957, - "eu-central-1": 9.717, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 9.573, "eu-west-1": 9.093, @@ -69583,27 +77450,27 @@ "us-east-1": 8.181, "us-east-2": 0.0, "us-gov-east-1": 9.813, - "us-gov-west-1": 0.0, + "us-gov-west-1": 9.813, "us-west-2": 8.181 }, "r5n.large": { - "af-south-1": 0.294, + "af-south-1": 0.0, "ap-east-1": 0.297, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.287, "ap-northeast-2": 0.284, - "ap-south-1": 0.248, + "ap-south-1": 0.257, "ap-southeast-1": 0.273, - "ap-southeast-2": 0.276, - "ca-central-1": 0.258, + "ap-southeast-2": 0.287, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 0.254, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.272, - "eu-west-2": 0.27, - "eu-west-3": 0.27, - "sa-east-1": 0.331, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.345, "us-east-1": 0.0, - "us-east-2": 0.253, + "us-east-2": 0.244, "us-gov-east-1": 0.274, "us-gov-west-1": 0.0, "us-west-1": 0.264, @@ -69611,137 +77478,137 @@ }, "r5n.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.499, + "ap-east-1": 0.0, "ap-northeast-1": 0.457, "ap-northeast-2": 0.472, "ap-south-1": 0.401, - "ap-southeast-1": 0.451, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.457, - "ca-central-1": 0.421, + "ca-central-1": 0.441, "eu-central-1": 0.451, - "eu-north-1": 0.413, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.429, - "eu-west-2": 0.445, + "eu-west-2": 0.466, "eu-west-3": 0.445, - "sa-east-1": 0.567, - "us-east-1": 0.411, - "us-east-2": 0.411, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.453, "us-gov-west-1": 0.0, - "us-west-1": 0.433, + "us-west-1": 0.0, "us-west-2": 0.411 }, "r5n.metal": { - "af-south-1": 9.701, - "ap-east-1": 9.861, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 7.509, + "ap-northeast-2": 8.709, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 8.853, - "ca-central-1": 7.989, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 7.797, + "eu-north-1": 0.0, "eu-south-1": 8.566, "eu-west-1": 8.181, - "eu-west-2": 8.565, - "eu-west-3": 8.565, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "sa-east-1": 11.493, - "us-east-1": 0.0, + "us-east-1": 7.317, "us-east-2": 7.317, "us-gov-east-1": 8.757, "us-gov-west-1": 8.757, - "us-west-1": 8.277, - "us-west-2": 7.317 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r5n.2xlarge": { "af-south-1": 1.007, - "ap-east-1": 0.973, + "ap-east-1": 0.0, "ap-northeast-1": 0.889, - "ap-northeast-2": 0.877, - "ap-south-1": 0.777, + "ap-northeast-2": 0.0, + "ap-south-1": 0.814, "ap-southeast-1": 0.0, "ap-southeast-2": 0.889, "ca-central-1": 0.817, - "eu-central-1": 0.0, - "eu-north-1": 0.801, + "eu-central-1": 0.877, + "eu-north-1": 0.839, "eu-south-1": 0.907, "eu-west-1": 0.873, "eu-west-2": 0.865, - "eu-west-3": 0.865, - "sa-east-1": 1.109, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.761, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.841, + "us-gov-west-1": 0.924, + "us-west-1": 0.0, "us-west-2": 0.761 }, "r5n.4xlarge": { "af-south-1": 1.754, - "ap-east-1": 1.781, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 1.589, "ap-south-1": 1.389, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.613, + "ap-southeast-2": 0.0, "ca-central-1": 1.469, "eu-central-1": 1.674, - "eu-north-1": 1.437, - "eu-south-1": 1.649, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 1.501, - "eu-west-2": 1.565, - "eu-west-3": 1.565, - "sa-east-1": 2.053, - "us-east-1": 1.357, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 2.166, + "us-east-1": 1.429, "us-east-2": 1.357, - "us-gov-east-1": 1.597, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.683, "us-west-1": 1.517, - "us-west-2": 0.0 + "us-west-2": 1.429 }, "r5n.8xlarge": { "af-south-1": 3.534, - "ap-east-1": 3.397, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 2.613, + "ap-east-1": 3.591, + "ap-northeast-1": 3.061, + "ap-northeast-2": 3.184, + "ap-south-1": 0.0, "ap-southeast-1": 3.013, - "ap-southeast-2": 3.061, - "ca-central-1": 2.773, + "ap-southeast-2": 0.0, + "ca-central-1": 2.93, "eu-central-1": 3.184, "eu-north-1": 2.709, "eu-south-1": 0.0, "eu-west-1": 2.997, - "eu-west-2": 2.965, - "eu-west-3": 2.965, - "sa-east-1": 3.941, - "us-east-1": 2.692, + "eu-west-2": 3.134, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 2.549, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.201, - "us-west-1": 2.869, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r5n.12xlarge": { - "af-south-1": 5.219, - "ap-east-1": 5.013, + "af-south-1": 4.933, + "ap-east-1": 5.303, "ap-northeast-1": 4.77, - "ap-northeast-2": 0.0, - "ap-south-1": 3.837, - "ap-southeast-1": 4.437, - "ap-southeast-2": 4.509, + "ap-northeast-2": 4.437, + "ap-south-1": 4.057, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 4.077, "eu-central-1": 0.0, - "eu-north-1": 3.981, - "eu-south-1": 4.618, + "eu-north-1": 4.209, + "eu-south-1": 4.365, "eu-west-1": 4.173, "eu-west-2": 4.365, - "eu-west-3": 4.365, - "sa-east-1": 5.829, + "eu-west-3": 4.618, + "sa-east-1": 6.169, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.741, "us-gov-east-1": 0.0, "us-gov-west-1": 4.461, "us-west-1": 4.221, @@ -69751,27 +77618,27 @@ "af-south-1": 6.522, "ap-east-1": 6.629, "ap-northeast-1": 6.305, - "ap-northeast-2": 6.203, + "ap-northeast-2": 5.861, "ap-south-1": 5.061, - "ap-southeast-1": 6.203, - "ap-southeast-2": 5.957, + "ap-southeast-1": 5.861, + "ap-southeast-2": 0.0, "ca-central-1": 5.381, - "eu-central-1": 5.861, - "eu-north-1": 5.253, + "eu-central-1": 0.0, + "eu-north-1": 5.557, "eu-south-1": 0.0, "eu-west-1": 5.509, "eu-west-2": 5.765, "eu-west-3": 5.765, "sa-east-1": 7.717, "us-east-1": 4.933, - "us-east-2": 5.219, + "us-east-2": 4.933, "us-gov-east-1": 5.893, - "us-gov-west-1": 0.0, - "us-west-1": 5.573, - "us-west-2": 0.0 + "us-gov-west-1": 5.893, + "us-west-1": 5.898, + "us-west-2": 5.219 }, "r5n.24xlarge": { - "af-south-1": 0.0, + "af-south-1": 9.701, "ap-east-1": 9.861, "ap-northeast-1": 0.0, "ap-northeast-2": 8.709, @@ -69781,239 +77648,287 @@ "ca-central-1": 7.989, "eu-central-1": 8.709, "eu-north-1": 7.797, - "eu-south-1": 8.566, + "eu-south-1": 0.0, "eu-west-1": 8.181, "eu-west-2": 8.565, - "eu-west-3": 8.565, + "eu-west-3": 0.0, "sa-east-1": 11.493, "us-east-1": 0.0, "us-east-2": 7.317, "us-gov-east-1": 8.757, - "us-gov-west-1": 8.757, + "us-gov-west-1": 0.0, "us-west-1": 8.277, "us-west-2": 7.317 }, "r6a.large": { + "ap-northeast-1": 0.24548, "ap-south-1": 0.17365, + "ap-southeast-1": 0.24548, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.23459, "us-east-1": 0.0, "us-east-2": 0.21974, + "us-west-1": 0.2336, "us-west-2": 0.0 }, "r6a.xlarge": { + "ap-northeast-1": 0.3686, "ap-south-1": 0.238, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 0.3686, - "eu-west-1": 0.0, + "eu-west-1": 0.3488, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.3218, + "us-west-1": 0.3722, "us-west-2": 0.3218 }, "r6a.metal": { + "ap-northeast-1": 13.2978, "ap-south-1": 7.029, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 13.2978, - "eu-west-1": 0.0, + "eu-west-1": 12.3474, "us-east-1": 0.0, "us-east-2": 11.0514, - "us-west-2": 11.0514 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r6a.2xlarge": { - "ap-south-1": 0.451, - "eu-central-1": 0.76692, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.7122, "eu-west-1": 0.6726, - "us-east-1": 0.6186, + "us-east-1": 0.66396, "us-east-2": 0.6186, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 0.6186 }, "r6a.4xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 0.7942, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.2522, "eu-central-1": 1.36884, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.16292, + "us-west-1": 1.2738, "us-west-2": 1.16292 }, "r6a.8xlarge": { + "ap-northeast-1": 2.3538, "ap-south-1": 1.309, + "ap-southeast-1": 2.3538, + "ap-southeast-2": 2.3394, "eu-central-1": 2.3538, "eu-west-1": 2.39844, "us-east-1": 0.0, - "us-east-2": 1.9794, + "us-east-2": 0.0, + "us-west-1": 2.3826, "us-west-2": 0.0 }, "r6a.12xlarge": { + "ap-northeast-1": 3.4482, "ap-south-1": 1.881, - "eu-central-1": 3.4482, - "eu-west-1": 3.2106, - "us-east-1": 2.8866, - "us-east-2": 2.8866, - "us-west-2": 3.15876 + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 3.15876, + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r6a.16xlarge": { - "ap-south-1": 2.453, + "ap-northeast-1": 4.5426, + "ap-south-1": 0.0, + "ap-southeast-1": 4.98036, + "ap-southeast-2": 4.5138, "eu-central-1": 0.0, - "eu-west-1": 4.63188, + "eu-west-1": 0.0, "us-east-1": 3.7938, "us-east-2": 4.15668, + "us-west-1": 4.6002, "us-west-2": 4.15668 }, "r6a.24xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 3.9402, + "ap-southeast-1": 7.38804, + "ap-southeast-2": 7.34052, "eu-central-1": 6.7314, "eu-west-1": 6.2562, - "us-east-1": 0.0, + "us-east-1": 6.15252, "us-east-2": 6.15252, - "us-west-2": 5.6082 + "us-west-1": 6.8178, + "us-west-2": 6.15252 }, "r6a.32xlarge": { + "ap-northeast-1": 8.9202, "ap-south-1": 5.1986, + "ap-southeast-1": 0.0, + "ap-southeast-2": 8.8626, "eu-central-1": 0.0, "eu-west-1": 8.2866, - "us-east-1": 7.4226, + "us-east-1": 0.0, "us-east-2": 8.14836, + "us-west-1": 8.229, "us-west-2": 0.0 }, "r6a.48xlarge": { - "ap-south-1": 7.029, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 13.2978, "eu-west-1": 12.3474, "us-east-1": 0.0, "us-east-2": 0.0, + "us-west-1": 12.261, "us-west-2": 0.0 }, "r6g.medium": { - "af-south-1": 0.1622, + "af-south-1": 0.1662, "ap-east-1": 0.162, "ap-northeast-1": 0.1558, - "ap-northeast-2": 0.156, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.1558, - "ap-south-1": 0.1295, - "ap-south-2": 0.1295, + "ap-south-1": 0.1275, + "ap-south-2": 0.0, "ap-southeast-1": 0.1594, - "ap-southeast-2": 0.1554, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.159, - "ca-central-1": 0.1535, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.1594, + "ap-southeast-4": 0.1554, + "ca-central-1": 0.1502, + "ca-west-1": 0.1502, "eu-central-1": 0.1558, - "eu-central-2": 0.1619, - "eu-north-1": 0.1485, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.1548, "eu-west-1": 0.0, "eu-west-2": 0.1542, "eu-west-3": 0.0, - "il-central-1": 0.1542, + "il-central-1": 0.1578, "me-central-1": 0.0, "me-south-1": 0.157, "sa-east-1": 0.1802, "us-east-1": 0.1454, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 0.1454, + "us-gov-east-1": 0.1554, "us-gov-west-1": 0.159, - "us-west-1": 0.0, + "us-west-1": 0.1544, "us-west-2": 0.0 }, "r6g.large": { "af-south-1": 0.2375, "ap-east-1": 0.229, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.2239, "ap-northeast-2": 0.2243, "ap-northeast-3": 0.2166, "ap-south-1": 0.0, "ap-south-2": 0.16, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.2158, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.223, + "ap-southeast-1": 0.2166, + "ap-southeast-2": 0.223, + "ap-southeast-3": 0.2166, + "ap-southeast-4": 0.2158, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 0.2054, + "eu-central-1": 0.2166, "eu-central-2": 0.2288, "eu-north-1": 0.2084, - "eu-south-1": 0.2134, - "eu-south-2": 0.2078, - "eu-west-1": 0.0, + "eu-south-1": 0.2205, + "eu-south-2": 0.2146, + "eu-west-1": 0.2146, "eu-west-2": 0.2205, - "eu-west-3": 0.2201, - "il-central-1": 0.2134, + "eu-west-3": 0.0, + "il-central-1": 0.0, "me-central-1": 0.2265, "me-south-1": 0.2265, - "sa-east-1": 0.0, + "sa-east-1": 0.2654, "us-east-1": 0.1958, "us-east-2": 0.0, - "us-gov-east-1": 0.2158, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.223, "us-west-1": 0.207, - "us-west-2": 0.2018 + "us-west-2": 0.1958 }, "r6g.xlarge": { "af-south-1": 0.0, "ap-east-1": 0.363, - "ap-northeast-1": 0.3528, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 0.3382, + "ap-south-1": 0.2328, "ap-south-2": 0.225, "ap-southeast-1": 0.3528, - "ap-southeast-2": 0.3366, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.3366, + "ap-southeast-2": 0.3511, + "ap-southeast-3": 0.3528, + "ap-southeast-4": 0.0, "ca-central-1": 0.3158, + "ca-west-1": 0.329, "eu-central-1": 0.0, - "eu-central-2": 0.3786, - "eu-north-1": 0.309, - "eu-south-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.3318, "eu-south-2": 0.3341, "eu-west-1": 0.0, "eu-west-2": 0.346, "eu-west-3": 0.3452, "il-central-1": 0.3461, - "me-central-1": 0.358, - "me-south-1": 0.358, + "me-central-1": 0.3432, + "me-south-1": 0.3432, "sa-east-1": 0.4359, "us-east-1": 0.0, "us-east-2": 0.2966, - "us-gov-east-1": 0.3366, + "us-gov-east-1": 0.3511, "us-gov-west-1": 0.3511, "us-west-1": 0.3324, - "us-west-2": 0.0 + "us-west-2": 0.3087 }, "r6g.metal": { - "af-south-1": 0.0, + "af-south-1": 4.4658, "ap-east-1": 4.453, "ap-northeast-1": 4.0562, - "ap-northeast-2": 4.069, + "ap-northeast-2": 4.3026, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 2.3698, "ap-south-2": 2.245, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.2897, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.0562, "ap-southeast-4": 4.0306, "ca-central-1": 3.9098, - "eu-central-1": 4.0562, + "ca-west-1": 3.6978, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 3.589, "eu-south-1": 3.9538, "eu-south-2": 3.7746, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 3.7746, + "eu-west-2": 4.1811, "eu-west-3": 4.1682, "il-central-1": 3.9551, "me-central-1": 4.1356, "me-south-1": 4.1356, - "sa-east-1": 5.3106, - "us-east-1": 0.0, + "sa-east-1": 5.6193, + "us-east-1": 3.3906, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.2625, + "us-gov-west-1": 4.0306, "us-west-1": 3.964, - "us-west-2": 3.3906 + "us-west-2": 0.0 }, "r6g.2xlarge": { - "af-south-1": 0.7026, - "ap-east-1": 0.733, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.6806, - "ap-northeast-2": 0.6822, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.6806, "ap-south-1": 0.425, "ap-south-2": 0.4406, @@ -70021,63 +77936,65 @@ "ap-southeast-2": 0.6772, "ap-southeast-3": 0.6514, "ap-southeast-4": 0.6482, - "ca-central-1": 0.6331, + "ca-central-1": 0.6066, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.7321, - "eu-north-1": 0.0, + "eu-north-1": 0.6186, "eu-south-1": 0.667, - "eu-south-2": 0.6162, + "eu-south-2": 0.6433, "eu-west-1": 0.6433, "eu-west-2": 0.6386, - "eu-west-3": 0.0, - "il-central-1": 0.6672, - "me-central-1": 0.0, + "eu-west-3": 0.6654, + "il-central-1": 0.0, + "me-central-1": 0.6911, "me-south-1": 0.0, "sa-east-1": 0.8468, - "us-east-1": 0.5682, - "us-east-2": 0.5924, + "us-east-1": 0.0, + "us-east-2": 0.5682, "us-gov-east-1": 0.6482, - "us-gov-west-1": 0.6482, - "us-west-1": 0.6399, + "us-gov-west-1": 0.0, + "us-west-1": 0.613, "us-west-2": 0.5924 }, "r6g.4xlarge": { - "af-south-1": 1.3047, + "af-south-1": 1.2402, "ap-east-1": 1.237, "ap-northeast-1": 1.1962, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.1378, "ap-south-1": 0.685, - "ap-south-2": 0.0, - "ap-southeast-1": 1.1378, + "ap-south-2": 0.685, + "ap-southeast-1": 1.1962, "ap-southeast-2": 1.1894, "ap-southeast-3": 0.0, - "ap-southeast-4": 1.1314, - "ca-central-1": 1.1012, + "ap-southeast-4": 0.0, + "ca-central-1": 1.0482, + "ca-west-1": 0.0, "eu-central-1": 1.1962, "eu-central-2": 1.2351, - "eu-north-1": 1.021, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 1.0674, "eu-west-1": 1.1215, "eu-west-2": 1.169, "eu-west-3": 1.1658, "il-central-1": 1.1694, - "me-central-1": 1.1576, + "me-central-1": 0.0, "me-south-1": 1.2172, - "sa-east-1": 1.4514, + "sa-east-1": 0.0, "us-east-1": 0.9714, "us-east-2": 0.0, - "us-gov-east-1": 1.1894, + "us-gov-east-1": 1.1314, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 1.0198 + "us-west-2": 0.9714 }, "r6g.8xlarge": { "af-south-1": 2.4444, - "ap-east-1": 2.309, + "ap-east-1": 2.437, "ap-northeast-1": 0.0, - "ap-northeast-2": 2.117, + "ap-northeast-2": 2.2338, "ap-northeast-3": 2.1106, "ap-south-1": 1.205, "ap-south-2": 1.205, @@ -70086,24 +78003,25 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 2.0374, - "eu-central-1": 2.1106, - "eu-central-2": 2.4336, + "ca-west-1": 2.0374, + "eu-central-1": 2.2273, + "eu-central-2": 2.3052, "eu-north-1": 0.0, "eu-south-1": 2.0594, "eu-south-2": 2.0781, - "eu-west-1": 1.9698, + "eu-west-1": 2.0781, "eu-west-2": 2.1731, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 2.1503, + "me-central-1": 2.2694, "me-south-1": 2.1503, "sa-east-1": 2.8922, - "us-east-1": 1.7778, + "us-east-1": 0.0, "us-east-2": 1.8746, "us-gov-east-1": 2.0978, - "us-gov-west-1": 2.0978, + "us-gov-west-1": 0.0, "us-west-1": 1.957, - "us-west-2": 0.0 + "us-west-2": 1.8746 }, "r6g.12xlarge": { "af-south-1": 0.0, @@ -70111,29 +78029,30 @@ "ap-northeast-1": 3.0834, "ap-northeast-2": 3.2682, "ap-northeast-3": 3.2585, - "ap-south-1": 1.8186, - "ap-south-2": 0.0, - "ap-southeast-1": 3.2585, + "ap-south-1": 0.0, + "ap-south-2": 1.725, + "ap-southeast-1": 3.0834, "ap-southeast-2": 3.2382, "ap-southeast-3": 3.0834, "ap-southeast-4": 0.0, "ca-central-1": 2.9736, + "ca-west-1": 2.8146, "eu-central-1": 3.0834, "eu-central-2": 3.5679, "eu-north-1": 2.8866, "eu-south-1": 0.0, "eu-south-2": 2.8722, - "eu-west-1": 2.8722, + "eu-west-1": 3.0346, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 2.997, "il-central-1": 0.0, "me-central-1": 3.1429, "me-south-1": 3.3216, "sa-east-1": 4.0242, - "us-east-1": 0.0, + "us-east-1": 2.7294, "us-east-2": 2.5842, "us-gov-east-1": 0.0, - "us-gov-west-1": 3.0642, + "us-gov-west-1": 0.0, "us-west-1": 2.853, "us-west-2": 2.5842 }, @@ -70148,69 +78067,76 @@ "ap-southeast-1": 4.0562, "ap-southeast-2": 0.0, "ap-southeast-3": 4.0562, - "ap-southeast-4": 4.2625, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 4.2897, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 4.4453, "eu-north-1": 0.0, "eu-south-1": 3.9538, "eu-south-2": 3.7746, - "eu-west-1": 0.0, + "eu-west-1": 3.9912, "eu-west-2": 3.9538, - "eu-west-3": 3.941, + "eu-west-3": 4.1682, "il-central-1": 3.9551, "me-central-1": 4.1356, "me-south-1": 4.1356, "sa-east-1": 5.6193, "us-east-1": 3.3906, "us-east-2": 3.5841, - "us-gov-east-1": 4.2625, + "us-gov-east-1": 0.0, "us-gov-west-1": 4.0306, "us-west-1": 3.964, - "us-west-2": 3.3906 + "us-west-2": 0.0 }, "r6gd.medium": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.1683, - "ap-northeast-3": 0.1646, - "ap-south-1": 0.1324, + "ap-northeast-3": 0.1688, + "ap-south-1": 0.1346, "ap-southeast-1": 0.1687, "ap-southeast-2": 0.1687, - "ap-southeast-3": 0.1645, + "ap-southeast-3": 0.0, "ca-central-1": 0.162, - "eu-central-1": 0.1681, - "eu-north-1": 0.0, - "eu-west-1": 0.1628, - "eu-west-2": 0.1626, - "eu-west-3": 0.1626, - "sa-east-1": 0.1862, - "us-east-1": 0.1526, + "eu-central-1": 0.164, + "eu-central-2": 0.0, + "eu-north-1": 0.1558, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.1667, + "sa-east-1": 0.0, + "us-east-1": 0.1561, "us-east-2": 0.1526, + "us-gov-east-1": 0.1684, + "us-gov-west-1": 0.1642, "us-west-1": 0.1639, - "us-west-2": 0.1561 + "us-west-2": 0.1526 }, "r6gd.large": { - "ap-northeast-1": 0.2424, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.2417, "ap-northeast-3": 0.0, - "ap-south-1": 0.1697, + "ap-south-1": 0.1742, "ap-southeast-1": 0.234, "ap-southeast-2": 0.2424, - "ap-southeast-3": 0.234, - "ca-central-1": 0.229, - "eu-central-1": 0.2413, - "eu-north-1": 0.2166, + "ap-southeast-3": 0.0, + "ca-central-1": 0.2214, + "eu-central-1": 0.0, + "eu-central-2": 0.2468, + "eu-north-1": 0.2239, "eu-west-1": 0.0, "eu-west-2": 0.2383, - "eu-west-3": 0.2383, + "eu-west-3": 0.2302, "sa-east-1": 0.2774, "us-east-1": 0.2171, "us-east-2": 0.2102, + "us-gov-east-1": 0.2417, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.2171 }, "r6gd.xlarge": { - "ap-northeast-1": 0.3898, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.3884, "ap-northeast-3": 0.3901, "ap-south-1": 0.2445, @@ -70219,73 +78145,85 @@ "ap-southeast-3": 0.373, "ca-central-1": 0.363, "eu-central-1": 0.0, - "eu-north-1": 0.3528, - "eu-west-1": 0.351, - "eu-west-2": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.3382, + "eu-west-1": 0.0, + "eu-west-2": 0.3816, "eu-west-3": 0.3816, "sa-east-1": 0.4817, "us-east-1": 0.3392, "us-east-2": 0.0, + "us-gov-east-1": 0.3884, + "us-gov-west-1": 0.3884, "us-west-1": 0.0, - "us-west-2": 0.3392 + "us-west-2": 0.0 }, "r6gd.metal": { "ap-northeast-1": 4.613, "ap-northeast-2": 4.5938, - "ap-northeast-3": 4.6194, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 2.5567, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.613, + "ap-southeast-2": 4.8818, "ap-southeast-3": 0.0, "ca-central-1": 4.2098, "eu-central-1": 4.581, - "eu-north-1": 4.0562, + "eu-central-2": 5.0226, + "eu-north-1": 0.0, "eu-west-1": 4.5068, "eu-west-2": 4.4914, "eu-west-3": 4.4914, "sa-east-1": 6.0018, "us-east-1": 4.0726, "us-east-2": 3.8514, - "us-west-1": 0.0, + "us-gov-east-1": 4.5938, + "us-gov-west-1": 4.5938, + "us-west-1": 4.5746, "us-west-2": 0.0 }, "r6gd.2xlarge": { "ap-northeast-1": 0.721, - "ap-northeast-2": 0.7518, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.7218, "ap-south-1": 0.0, "ap-southeast-1": 0.7546, "ap-southeast-2": 0.721, "ap-southeast-3": 0.0, "ca-central-1": 0.6706, - "eu-central-1": 0.0, + "eu-central-1": 0.7502, + "eu-central-2": 0.0, "eu-north-1": 0.6514, "eu-west-1": 0.677, - "eu-west-2": 0.7058, - "eu-west-3": 0.7058, + "eu-west-2": 0.7382, + "eu-west-3": 0.0, "sa-east-1": 0.8946, - "us-east-1": 0.6258, + "us-east-1": 0.0, "us-east-2": 0.6258, - "us-west-1": 0.685, - "us-west-2": 0.6534 + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.7186, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r6gd.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.2722, "ap-northeast-3": 1.3454, "ap-south-1": 0.7629, - "ap-southeast-1": 1.277, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.3442, - "ap-southeast-3": 1.277, + "ap-southeast-3": 0.0, "ca-central-1": 1.1762, "eu-central-1": 1.269, - "eu-north-1": 1.1378, + "eu-central-2": 1.4524, + "eu-north-1": 0.0, "eu-west-1": 1.189, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 1.3115, + "eu-west-3": 1.3115, "sa-east-1": 0.0, "us-east-1": 1.0866, "us-east-2": 1.0866, + "us-gov-east-1": 1.3386, + "us-gov-west-1": 0.0, "us-west-1": 1.2674, "us-west-2": 0.0 }, @@ -70293,132 +78231,147 @@ "ap-northeast-1": 2.5234, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 1.4326, - "ap-southeast-1": 2.389, + "ap-south-1": 1.3608, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 2.389, - "ca-central-1": 2.1874, - "eu-central-1": 2.373, + "ap-southeast-3": 2.5234, + "ca-central-1": 2.3087, + "eu-central-1": 0.0, + "eu-central-2": 2.7399, "eu-north-1": 0.0, "eu-west-1": 2.213, "eu-west-2": 0.0, "eu-west-3": 2.458, - "sa-east-1": 3.2585, + "sa-east-1": 0.0, "us-east-1": 2.0082, "us-east-2": 2.1188, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.3794, "us-west-1": 0.0, "us-west-2": 2.0082 }, "r6gd.12xlarge": { "ap-northeast-1": 3.501, - "ap-northeast-2": 3.6855, - "ap-northeast-3": 3.5058, - "ap-south-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 2.0664, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.7026, "ap-southeast-3": 3.7026, "ca-central-1": 3.3806, - "eu-central-1": 0.0, + "eu-central-1": 3.477, + "eu-central-2": 3.8082, "eu-north-1": 3.0834, "eu-west-1": 3.237, "eu-west-2": 3.4098, - "eu-west-3": 3.6045, - "sa-east-1": 4.5426, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 2.9298, - "us-east-2": 0.0, + "us-east-2": 3.0957, + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.6859, "us-west-1": 3.4722, "us-west-2": 0.0 }, "r6gd.16xlarge": { "ap-northeast-1": 4.8818, - "ap-northeast-2": 4.5938, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 2.5567, + "ap-south-1": 0.0, "ap-southeast-1": 4.613, "ap-southeast-2": 4.8818, - "ap-southeast-3": 4.613, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 5.0226, "eu-north-1": 4.0562, - "eu-west-1": 0.0, + "eu-west-1": 4.5068, "eu-west-2": 4.4914, "eu-west-3": 4.4914, - "sa-east-1": 0.0, + "sa-east-1": 6.0018, "us-east-1": 3.8514, "us-east-2": 4.0726, - "us-west-1": 4.5746, + "us-gov-east-1": 0.0, + "us-gov-west-1": 4.5938, + "us-west-1": 4.325, "us-west-2": 3.8514 }, "r6i.large": { "af-south-1": 0.0, "ap-east-1": 0.2787, "ap-northeast-1": 0.2622, - "ap-northeast-2": 0.2622, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.247, + "ap-northeast-3": 0.247, "ap-south-1": 0.225, - "ap-south-2": 0.238, + "ap-south-2": 0.225, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2611, - "ca-central-1": 0.0, + "ca-central-1": 0.233, + "ca-west-1": 0.2468, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.229, "eu-south-1": 0.2578, "eu-west-1": 0.0, - "eu-west-2": 0.2578, + "eu-west-2": 0.243, "eu-west-3": 0.0, - "il-central-1": 0.24305, + "il-central-1": 0.25786, "me-central-1": 0.26561, "me-south-1": 0.26561, - "sa-east-1": 0.3161, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.2336, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.2611, - "us-west-1": 0.235, - "us-west-2": 0.0 + "us-west-1": 0.249, + "us-west-2": 0.221 }, "r6i.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.429, - "ap-northeast-1": 0.399, - "ap-northeast-2": 0.399, - "ap-northeast-3": 0.399, - "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-east-1": 0.4624, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.4294, + "ap-northeast-3": 0.4294, + "ap-south-1": 0.355, + "ap-south-2": 0.381, + "ap-southeast-1": 0.4294, "ap-southeast-2": 0.0, - "ca-central-1": 0.3986, - "eu-central-1": 0.0, - "eu-north-1": 0.3898, + "ca-central-1": 0.371, + "ca-west-1": 0.3986, + "eu-central-1": 0.399, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 0.4206, - "eu-west-1": 0.377, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.391, "eu-west-3": 0.4206, - "il-central-1": 0.0, - "me-central-1": 0.4052, + "il-central-1": 0.42071, + "me-central-1": 0.43622, "me-south-1": 0.4052, - "sa-east-1": 0.5372, + "sa-east-1": 0.0, "us-east-1": 0.347, - "us-east-2": 0.347, + "us-east-2": 0.3722, "us-gov-east-1": 0.397, "us-gov-west-1": 0.397, "us-west-1": 0.375, - "us-west-2": 0.347 + "us-west-2": 0.0 }, "r6i.metal": { "af-south-1": 10.917, "ap-east-1": 10.853, - "ap-northeast-1": 9.893, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 9.893, - "ap-south-1": 0.0, + "ap-south-1": 8.485, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 9.829, "ca-central-1": 8.997, + "ca-west-1": 0.0, "eu-central-1": 9.893, + "eu-central-2": 10.8658, "eu-north-1": 8.741, - "eu-south-1": 9.637, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 9.637, "eu-west-3": 9.637, @@ -70426,38 +78379,40 @@ "me-central-1": 10.0914, "me-south-1": 0.0, "sa-east-1": 13.029, - "us-east-1": 8.229, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 9.829, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 9.125, "us-west-2": 8.229 }, "r6i.2xlarge": { - "af-south-1": 0.9042, - "ap-east-1": 0.0, + "af-south-1": 0.837, + "ap-east-1": 0.833, "ap-northeast-1": 0.773, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.8338, "ap-northeast-3": 0.773, - "ap-south-1": 0.737, - "ap-south-2": 0.685, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.8338, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.773, - "eu-north-1": 0.701, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.8338, + "eu-north-1": 0.0, "eu-south-1": 0.8162, - "eu-west-1": 0.729, + "eu-west-1": 0.0, "eu-west-2": 0.757, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.7572, "me-central-1": 0.84744, "me-south-1": 0.0, "sa-east-1": 1.0494, - "us-east-1": 0.669, + "us-east-1": 0.7194, "us-east-2": 0.7194, "us-gov-east-1": 0.769, - "us-gov-west-1": 0.769, + "us-gov-west-1": 0.8294, "us-west-1": 0.0, "us-west-2": 0.7194 }, @@ -70470,41 +78425,45 @@ "ap-south-1": 1.309, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.373, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 1.3442, "eu-south-1": 1.349, - "eu-west-1": 0.0, - "eu-west-2": 1.349, - "eu-west-3": 1.349, + "eu-west-1": 1.4058, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "il-central-1": 1.46784, - "me-central-1": 0.0, + "me-central-1": 1.52988, "me-south-1": 1.52988, "sa-east-1": 1.773, - "us-east-1": 1.173, + "us-east-1": 1.2738, "us-east-2": 1.173, "us-gov-east-1": 0.0, "us-gov-west-1": 1.373, - "us-west-1": 1.397, - "us-west-2": 1.173 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r6i.8xlarge": { "af-south-1": 0.0, - "ap-east-1": 2.837, + "ap-east-1": 3.1042, "ap-northeast-1": 2.597, - "ap-northeast-2": 2.597, + "ap-northeast-2": 2.8402, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.8226, + "ap-southeast-1": 2.8402, + "ap-southeast-2": 2.581, "ca-central-1": 2.373, + "ca-west-1": 2.373, "eu-central-1": 2.597, - "eu-north-1": 2.309, + "eu-central-2": 0.0, + "eu-north-1": 2.5234, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 2.533, "eu-west-3": 0.0, "il-central-1": 2.5338, "me-central-1": 2.6466, @@ -70518,88 +78477,94 @@ "us-west-2": 2.3826 }, "r6i.12xlarge": { - "af-south-1": 4.6002, + "af-south-1": 0.0, "ap-east-1": 4.5738, "ap-northeast-1": 3.813, "ap-northeast-2": 0.0, "ap-northeast-3": 3.813, - "ap-south-1": 3.285, - "ap-south-2": 3.597, - "ap-southeast-1": 0.0, - "ap-southeast-2": 4.1514, + "ap-south-1": 3.597, + "ap-south-2": 3.285, + "ap-southeast-1": 3.813, + "ap-southeast-2": 3.789, "ca-central-1": 3.477, - "eu-central-1": 3.813, + "ca-west-1": 3.8082, + "eu-central-1": 0.0, + "eu-central-2": 4.57908, "eu-north-1": 3.7026, - "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-south-1": 3.717, + "eu-west-1": 3.8874, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 3.7182, - "me-central-1": 3.8874, + "eu-west-3": 3.717, + "il-central-1": 0.0, + "me-central-1": 4.25964, "me-south-1": 3.8874, "sa-east-1": 5.4714, "us-east-1": 3.189, - "us-east-2": 3.189, - "us-gov-east-1": 4.1514, - "us-gov-west-1": 3.789, - "us-west-1": 3.525, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 4.1514, + "us-west-1": 3.861, "us-west-2": 3.4914 }, "r6i.16xlarge": { "af-south-1": 6.0786, - "ap-east-1": 6.0434, + "ap-east-1": 5.509, "ap-northeast-1": 5.029, - "ap-northeast-2": 5.029, - "ap-northeast-3": 0.0, + "ap-northeast-2": 5.5154, + "ap-northeast-3": 5.5154, "ap-south-1": 4.741, - "ap-south-2": 4.741, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 4.997, - "ca-central-1": 4.581, + "ca-central-1": 5.0226, + "ca-west-1": 5.0226, "eu-central-1": 5.5154, + "eu-central-2": 6.05044, "eu-north-1": 4.453, - "eu-south-1": 5.3746, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 4.901, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.0, - "me-south-1": 5.1282, + "il-central-1": 4.9026, + "me-central-1": 5.1282, + "me-south-1": 0.0, "sa-east-1": 7.2402, "us-east-1": 0.0, - "us-east-2": 4.197, - "us-gov-east-1": 4.997, - "us-gov-west-1": 4.997, - "us-west-1": 0.0, + "us-east-2": 4.6002, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 4.645, "us-west-2": 4.197 }, "r6i.24xlarge": { - "af-south-1": 0.0, + "af-south-1": 8.229, "ap-east-1": 8.181, - "ap-northeast-1": 0.0, + "ap-northeast-1": 7.461, "ap-northeast-2": 0.0, "ap-northeast-3": 7.461, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 8.1906, "ap-southeast-2": 8.1378, - "ca-central-1": 0.0, + "ca-central-1": 7.4514, + "ca-west-1": 0.0, "eu-central-1": 7.461, - "eu-north-1": 7.2402, - "eu-south-1": 7.9794, + "eu-central-2": 8.99316, + "eu-north-1": 0.0, + "eu-south-1": 7.269, "eu-west-1": 0.0, "eu-west-2": 7.269, - "eu-west-3": 0.0, - "il-central-1": 7.2714, - "me-central-1": 7.6098, + "eu-west-3": 7.9794, + "il-central-1": 7.98204, + "me-central-1": 0.0, "me-south-1": 8.35428, "sa-east-1": 10.7778, "us-east-1": 0.0, - "us-east-2": 6.213, - "us-gov-east-1": 0.0, - "us-gov-west-1": 7.413, - "us-west-1": 0.0, - "us-west-2": 6.213 + "us-east-2": 0.0, + "us-gov-east-1": 7.413, + "us-gov-west-1": 8.1378, + "us-west-1": 6.885, + "us-west-2": 6.8178 }, "r6i.32xlarge": { "af-south-1": 0.0, @@ -70612,10 +78577,12 @@ "ap-southeast-1": 9.893, "ap-southeast-2": 9.829, "ca-central-1": 8.997, + "ca-west-1": 8.997, "eu-central-1": 9.893, + "eu-central-2": 10.8658, "eu-north-1": 8.741, - "eu-south-1": 9.637, - "eu-west-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 9.189, "eu-west-2": 9.637, "eu-west-3": 9.637, "il-central-1": 9.6402, @@ -70627,14 +78594,15 @@ "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 9.125, - "us-west-2": 8.229 + "us-west-2": 0.0 }, "r6id.large": { "ap-northeast-1": 0.29597, "ap-northeast-2": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.26946, "ap-southeast-1": 0.0, "ap-southeast-2": 0.269, + "ca-west-1": 0.27749, "eu-central-1": 0.27665, "eu-west-1": 0.263, "eu-west-2": 0.0, @@ -70642,29 +78610,31 @@ "us-east-1": 0.26132, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.2462 }, "r6id.xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.4584, - "ap-south-1": 0.44392, - "ap-southeast-1": 0.4604, + "ap-south-1": 0.0, + "ap-southeast-1": 0.49694, "ap-southeast-2": 0.4778, - "eu-central-1": 0.4583, + "ca-west-1": 0.4268, + "eu-central-1": 0.49463, "eu-west-1": 0.0, - "eu-west-2": 0.48539, + "eu-west-2": 0.4499, "il-central-1": 0.48308, "us-east-1": 0.3974, - "us-east-2": 0.42764, - "us-gov-west-1": 0.4584, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.42764 }, "r6id.metal": { - "ap-northeast-1": 11.8578, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 10.3154, "ap-southeast-1": 0.0, "ap-southeast-2": 11.301, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 10.917, "eu-west-2": 11.5218, @@ -70676,29 +78646,31 @@ }, "r6id.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.96448, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.96888, - "ap-southeast-2": 0.861, + "ap-southeast-2": 0.0, + "ca-west-1": 0.89496, "eu-central-1": 0.8916, "eu-west-1": 0.9042, - "eu-west-2": 0.0, - "il-central-1": 0.94116, - "us-east-1": 0.83028, - "us-east-2": 0.0, - "us-gov-west-1": 0.96448, - "us-west-2": 0.83028 + "eu-west-2": 0.8748, + "il-central-1": 0.8706, + "us-east-1": 0.0, + "us-east-2": 0.7698, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "r6id.4xlarge": { "ap-northeast-1": 1.6266, "ap-northeast-2": 1.6186, "ap-south-1": 1.56068, "ap-southeast-1": 1.6266, - "ap-southeast-2": 1.557, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.5846, - "il-central-1": 1.71732, + "eu-west-1": 1.509, + "eu-west-2": 0.0, + "il-central-1": 1.5762, "us-east-1": 0.0, "us-east-2": 1.49556, "us-gov-west-1": 1.6186, @@ -70706,25 +78678,27 @@ }, "r6id.8xlarge": { "ap-northeast-1": 3.38052, - "ap-northeast-2": 3.36292, + "ap-northeast-2": 3.0722, "ap-south-1": 2.7026, - "ap-southeast-1": 3.38052, + "ap-southeast-1": 3.0882, "ap-southeast-2": 2.949, - "eu-central-1": 3.0714, + "ca-west-1": 3.08484, + "eu-central-1": 0.0, "eu-west-1": 3.1218, "eu-west-2": 0.0, - "il-central-1": 2.9874, - "us-east-1": 0.0, + "il-central-1": 0.0, + "us-east-1": 2.82612, "us-east-2": 2.5842, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6id.12xlarge": { - "ap-northeast-1": 4.5498, - "ap-northeast-2": 4.96188, + "ap-northeast-1": 4.98828, + "ap-northeast-2": 4.5258, "ap-south-1": 4.35204, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.341, + "ap-southeast-2": 4.7586, + "ca-west-1": 4.1466, "eu-central-1": 4.5246, "eu-west-1": 4.6002, "eu-west-2": 0.0, @@ -70739,30 +78713,32 @@ "ap-northeast-2": 0.0, "ap-south-1": 5.2402, "ap-southeast-1": 6.0114, - "ap-southeast-2": 5.733, + "ap-southeast-2": 6.2898, + "ca-west-1": 6.00468, "eu-central-1": 6.55908, - "eu-west-1": 5.541, + "eu-west-1": 6.0786, "eu-west-2": 5.8434, "il-central-1": 5.8098, "us-east-1": 5.0034, - "us-east-2": 5.0034, - "us-gov-west-1": 6.56084, + "us-east-2": 0.0, + "us-gov-west-1": 5.9794, "us-west-2": 0.0 }, "r6id.24xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 7.7778, - "ap-southeast-1": 0.0, - "ap-southeast-2": 9.3522, + "ap-southeast-1": 8.9346, + "ap-southeast-2": 8.517, + "ca-west-1": 8.1282, "eu-central-1": 8.8842, - "eu-west-1": 0.0, + "eu-west-1": 9.0354, "eu-west-2": 0.0, "il-central-1": 0.0, - "us-east-1": 7.4226, + "us-east-1": 8.14836, "us-east-2": 8.14836, "us-gov-west-1": 8.8866, - "us-west-2": 7.4226 + "us-west-2": 0.0 }, "r6id.32xlarge": { "ap-northeast-1": 11.8578, @@ -70770,149 +78746,164 @@ "ap-south-1": 10.3154, "ap-southeast-1": 11.8578, "ap-southeast-2": 11.301, + "ca-west-1": 10.7826, "eu-central-1": 11.7906, "eu-west-1": 10.917, "eu-west-2": 11.5218, "il-central-1": 11.4546, - "us-east-1": 9.8418, + "us-east-1": 0.0, "us-east-2": 9.8418, "us-gov-west-1": 11.7938, "us-west-2": 9.8418 }, "r6idn.large": { "ap-northeast-1": 0.33251, - "ap-southeast-1": 0.3524, - "eu-central-1": 0.32783, + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.30209, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.29039, "us-east-2": 0.0, - "us-gov-west-1": 0.33017, + "us-gov-west-1": 0.0, "us-west-2": 0.30993 }, "r6idn.xlarge": { "ap-northeast-1": 0.61752, "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.52486, - "us-east-2": 0.0, - "us-gov-west-1": 0.56534, + "us-east-2": 0.48578, + "us-gov-west-1": 0.61237, "us-west-2": 0.0 }, "r6idn.metal": { - "ap-northeast-1": 15.36564, - "ap-southeast-1": 0.0, + "ap-northeast-1": 0.0, + "ap-southeast-1": 15.141, "eu-central-1": 15.06612, + "eu-north-1": 13.41876, "eu-west-1": 14.09268, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 15.21588, - "us-west-2": 12.66996 + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "r6idn.2xlarge": { - "ap-northeast-1": 1.21004, - "ap-southeast-1": 1.1946, - "eu-central-1": 1.18945, - "eu-west-1": 0.0, + "ap-northeast-1": 0.0, + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.99336, + "eu-west-1": 1.12253, "us-east-1": 1.02472, "us-east-2": 1.02472, - "us-gov-west-1": 1.19975, - "us-west-2": 1.02472 + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "r6idn.4xlarge": { - "ap-northeast-1": 2.25509, - "ap-southeast-1": 2.2242, + "ap-northeast-1": 2.06508, + "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 1.82172, "eu-west-1": 2.08006, - "us-east-1": 0.0, + "us-east-1": 1.72812, "us-east-2": 1.88443, - "us-gov-west-1": 2.04636, - "us-west-2": 1.88443 + "us-gov-west-1": 2.2345, + "us-west-2": 1.72812 }, "r6idn.8xlarge": { "ap-northeast-1": 4.34518, "ap-southeast-1": 0.0, "eu-central-1": 4.26281, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 3.60386, - "us-east-2": 0.0, - "us-gov-west-1": 4.30399, + "us-east-2": 3.60386, + "us-gov-west-1": 3.92772, "us-west-2": 0.0 }, "r6idn.12xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 5.781, - "eu-central-1": 0.0, + "eu-central-1": 6.31171, + "eu-north-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 4.85436, + "us-east-1": 0.0, "us-east-2": 4.85436, - "us-gov-west-1": 6.37349, + "us-gov-west-1": 5.80908, "us-west-2": 5.3233 }, "r6idn.16xlarge": { - "ap-northeast-1": 7.76532, - "ap-southeast-1": 0.0, - "eu-central-1": 8.36062, - "eu-west-1": 0.0, - "us-east-1": 7.04273, + "ap-northeast-1": 0.0, + "ap-southeast-1": 8.4018, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 7.82522, + "us-east-1": 0.0, "us-east-2": 7.04273, "us-gov-west-1": 8.44298, - "us-west-2": 7.04273 + "us-west-2": 0.0 }, "r6idn.24xlarge": { "ap-northeast-1": 12.70553, - "ap-southeast-1": 11.397, - "eu-central-1": 0.0, + "ap-southeast-1": 0.0, + "eu-central-1": 12.45842, + "eu-north-1": 10.10532, "eu-west-1": 10.61076, "us-east-1": 10.48159, "us-east-2": 9.54372, "us-gov-west-1": 11.45316, - "us-west-2": 9.54372 + "us-west-2": 10.48159 }, "r6idn.32xlarge": { "ap-northeast-1": 15.36564, - "ap-southeast-1": 0.0, + "ap-southeast-1": 15.141, "eu-central-1": 15.06612, + "eu-north-1": 13.41876, "eu-west-1": 14.09268, - "us-east-1": 12.66996, + "us-east-1": 0.0, "us-east-2": 12.66996, "us-gov-west-1": 15.21588, "us-west-2": 12.66996 }, "r6in.large": { - "ap-northeast-1": 0.32795, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.30326, - "eu-central-1": 0.30326, - "eu-west-1": 0.29039, - "us-east-1": 0.26933, - "us-east-2": 0.26933, - "us-gov-west-1": 0.30443, + "eu-central-1": 0.0, + "eu-north-1": 0.28103, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.26933 }, "r6in.xlarge": { "ap-northeast-1": 0.56089, "ap-southeast-1": 0.55317, "eu-central-1": 0.51152, - "eu-west-1": 0.0, - "us-east-1": 0.47853, - "us-east-2": 0.47853, - "us-gov-west-1": 0.51386, + "eu-north-1": 0.0, + "eu-west-1": 0.48578, + "us-east-1": 0.0, + "us-east-2": 0.44366, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6in.metal": { "ap-northeast-1": 13.71828, "ap-southeast-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 12.66996, + "eu-north-1": 12.07092, + "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 11.32212, "us-gov-west-1": 13.56852, "us-west-2": 11.32212 }, "r6in.2xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 0.99804, + "ap-southeast-1": 0.99804, + "eu-central-1": 1.08134, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.93205, "us-east-2": 0.86232, @@ -70921,10 +78912,11 @@ }, "r6in.4xlarge": { "ap-northeast-1": 2.02858, - "ap-southeast-1": 1.99769, - "eu-central-1": 1.83108, - "eu-west-1": 1.88443, - "us-east-1": 1.55964, + "ap-southeast-1": 1.83108, + "eu-central-1": 1.99769, + "eu-north-1": 1.80206, + "eu-west-1": 0.0, + "us-east-1": 0.0, "us-east-2": 1.6991, "us-gov-west-1": 0.0, "us-west-2": 1.55964 @@ -70933,16 +78925,18 @@ "ap-northeast-1": 0.0, "ap-southeast-1": 3.83038, "eu-central-1": 3.83038, + "eu-north-1": 0.0, "eu-west-1": 3.60386, "us-east-1": 3.23321, "us-east-2": 2.95428, - "us-gov-west-1": 3.51588, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6in.12xlarge": { "ap-northeast-1": 5.24748, - "ap-southeast-1": 0.0, + "ap-southeast-1": 5.66306, "eu-central-1": 5.16324, + "eu-north-1": 0.0, "eu-west-1": 5.3233, "us-east-1": 4.34892, "us-east-2": 4.34892, @@ -70950,22 +78944,24 @@ "us-west-2": 4.34892 }, "r6in.16xlarge": { - "ap-northeast-1": 7.6193, + "ap-northeast-1": 6.94164, "ap-southeast-1": 0.0, "eu-central-1": 6.82932, + "eu-north-1": 6.71326, "eu-west-1": 7.04273, - "us-east-1": 0.0, + "us-east-1": 5.74356, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 7.53694, "us-west-2": 6.30142 }, "r6in.24xlarge": { - "ap-northeast-1": 11.34646, - "ap-southeast-1": 0.0, + "ap-northeast-1": 10.32996, + "ap-southeast-1": 11.16113, "eu-central-1": 11.16113, - "eu-west-1": 9.54372, + "eu-north-1": 9.09444, + "eu-west-1": 0.0, "us-east-1": 9.36962, - "us-east-2": 9.36962, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, @@ -70973,141 +78969,743 @@ "ap-northeast-1": 13.71828, "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 12.07092, "eu-west-1": 12.66996, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-2": 11.32212 + "us-gov-west-1": 13.56852, + "us-west-2": 0.0 + }, + "r7a.medium": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.19595, + "eu-north-1": 0.1759, + "eu-south-2": 0.18864, + "eu-west-1": 0.18013, + "us-east-1": 0.0, + "us-east-2": 0.17108, + "us-west-2": 0.17868 + }, + "r7a.large": { + "ap-northeast-1": 0.27854, + "eu-central-1": 0.29689, + "eu-north-1": 0.2568, + "eu-south-2": 0.28229, + "eu-west-1": 0.28229, + "us-east-1": 0.24715, + "us-east-2": 0.0, + "us-west-2": 0.26237 + }, + "r7a.xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.49879, + "eu-north-1": 0.45096, + "eu-south-2": 0.43552, + "eu-west-1": 0.46957, + "us-east-1": 0.42973, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.metal-48xl": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 15.6978, + "eu-south-2": 16.50996, + "eu-west-1": 16.50996, + "us-east-1": 14.7714, + "us-east-2": 0.0, + "us-west-2": 14.7714 + }, + "r7a.2xlarge": { + "ap-northeast-1": 0.89916, + "eu-central-1": 0.0, + "eu-north-1": 0.8122, + "eu-south-2": 0.0, + "eu-west-1": 0.91414, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.7736 + }, + "r7a.4xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 1.63332, + "eu-north-1": 1.4594, + "eu-south-2": 1.52708, + "eu-west-1": 1.52708, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 1.3822 + }, + "r7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 2.88916, + "us-east-1": 2.84284, + "us-east-2": 2.5994, + "us-west-2": 2.5994 + }, + "r7a.12xlarge": { + "ap-northeast-1": 5.01046, + "eu-central-1": 5.01046, + "eu-north-1": 0.0, + "eu-south-2": 4.65986, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.8166, + "us-west-2": 3.8166 + }, + "r7a.16xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 6.62561, + "eu-north-1": 0.0, + "eu-south-2": 5.61332, + "eu-west-1": 6.15815, + "us-east-1": 5.52068, + "us-east-2": 5.52068, + "us-west-2": 5.0338 + }, + "r7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 9.15473, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 7.4682 + }, + "r7a.32xlarge": { + "ap-northeast-1": 11.91156, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 12.1513, + "us-east-1": 9.9026, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.48xlarge": { + "ap-northeast-1": 17.78484, + "eu-central-1": 17.78484, + "eu-north-1": 0.0, + "eu-south-2": 16.50996, + "eu-west-1": 16.50996, + "us-east-1": 14.7714, + "us-east-2": 14.7714, + "us-west-2": 14.7714 }, "r7g.medium": { - "ap-northeast-1": 0.1637, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1637, + "ap-south-1": 0.1325, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 0.1574, + "eu-central-1": 0.1596, + "eu-north-1": 0.152, + "eu-south-2": 0.1587, "eu-west-1": 0.1587, + "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 0.1519, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7g.large": { "ap-northeast-1": 0.2242, - "ap-southeast-2": 0.2314, + "ap-northeast-2": 0.2242, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.2234, + "ca-central-1": 0.2123, "eu-central-1": 0.0, + "eu-north-1": 0.2157, + "eu-south-2": 0.2148, "eu-west-1": 0.0, + "eu-west-2": 0.0, "us-east-1": 0.2021, - "us-east-2": 0.2021, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.2088 }, "r7g.xlarge": { "ap-northeast-1": 0.3534, + "ap-northeast-2": 0.3696, + "ap-south-1": 0.0, + "ap-south-2": 0.2546, + "ap-southeast-1": 0.3534, "ap-southeast-2": 0.3679, - "eu-central-1": 0.0, + "ca-central-1": 0.3444, + "eu-central-1": 0.3697, + "eu-north-1": 0.3228, + "eu-south-2": 0.3497, "eu-west-1": 0.3347, + "eu-west-2": 0.3466, "us-east-1": 0.3092, "us-east-2": 0.3227, + "us-west-1": 0.0, "us-west-2": 0.3227 }, "r7g.metal": { "ap-northeast-1": 0.0, + "ap-northeast-2": 4.2994, + "ap-south-1": 2.5676, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.2725, + "ca-central-1": 3.9186, "eu-central-1": 0.0, + "eu-north-1": 3.8098, + "eu-south-2": 3.9986, "eu-west-1": 0.0, + "eu-west-2": 0.0, "us-east-1": 3.5922, "us-east-2": 3.5922, + "us-west-1": 0.0, "us-west-2": 3.5922 }, "r7g.2xlarge": { "ap-northeast-1": 0.6818, - "ap-southeast-2": 0.7108, - "eu-central-1": 0.0, + "ap-northeast-2": 0.6818, + "ap-south-1": 0.4653, + "ap-south-2": 0.4841, + "ap-southeast-1": 0.6818, + "ap-southeast-2": 0.6784, + "ca-central-1": 0.6638, + "eu-central-1": 0.0, + "eu-north-1": 0.6479, + "eu-south-2": 0.6442, "eu-west-1": 0.6444, + "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 0.5934, - "us-west-2": 0.0 + "us-west-1": 0.641, + "us-west-2": 0.6204 }, "r7g.4xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.8032, + "ap-south-2": 0.7656, + "ap-southeast-1": 1.1986, "ap-southeast-2": 1.1919, + "ca-central-1": 0.0, "eu-central-1": 1.2637, - "eu-west-1": 1.1842, - "us-east-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 1.1234, + "eu-west-1": 1.1238, + "eu-west-2": 0.0, + "us-east-1": 1.0218, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7g.8xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 2.3621, + "ap-south-1": 1.4415, + "ap-south-2": 1.4416, + "ap-southeast-1": 2.2322, "ap-southeast-2": 2.348, - "eu-central-1": 2.2322, - "eu-west-1": 2.2034, + "ca-central-1": 2.1603, + "eu-central-1": 2.3624, + "eu-north-1": 1.9874, + "eu-south-2": 2.0818, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 1.8786, + "us-west-1": 2.069, "us-west-2": 1.9866 }, "r7g.12xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 3.2658, + "ap-south-1": 1.9669, + "ap-south-2": 2.0799, + "ap-southeast-1": 3.2658, "ap-southeast-2": 3.4395, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 3.0626, + "eu-south-2": 0.0, "eu-west-1": 3.0414, + "eu-west-2": 0.0, "us-east-1": 2.7354, - "us-east-2": 2.7354, + "us-east-2": 2.8973, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7g.16xlarge": { "ap-northeast-1": 4.2994, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 4.2994, "ap-southeast-2": 4.2725, + "ca-central-1": 3.9186, "eu-central-1": 4.2994, + "eu-north-1": 3.8098, + "eu-south-2": 3.9986, "eu-west-1": 4.0002, + "eu-west-2": 4.1906, "us-east-1": 0.0, "us-east-2": 3.5922, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7gd.medium": { - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.178, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.1706, + "eu-west-1": 0.1751, + "us-east-1": 0.163, "us-east-2": 0.163, + "us-west-1": 0.1761, "us-west-2": 0.163 }, "r7gd.large": { + "ap-northeast-1": 0.2693, + "ap-south-1": 0.183, + "ap-southeast-1": 0.2594, + "ap-southeast-2": 0.261, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, "us-east-1": 0.2311, - "us-east-2": 0.2392, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-1": 0.2573, + "us-west-2": 0.2311 }, "r7gd.xlarge": { + "ap-northeast-1": 0.4436, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.427, + "eu-central-1": 0.4416, + "eu-north-1": 0.0, + "eu-south-2": 0.4155, "eu-west-1": 0.4155, "us-east-1": 0.3672, "us-east-2": 0.3672, + "us-west-1": 0.0, "us-west-2": 0.3835 }, + "r7gd.metal": { + "ap-northeast-1": 0.0, + "ap-south-1": 2.981, + "ap-southeast-1": 5.4268, + "ap-southeast-2": 0.0, + "eu-central-1": 5.3965, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 5.0034, + "us-east-1": 4.5196, + "us-east-2": 0.0, + "us-west-1": 5.0639, + "us-west-2": 0.0 + }, "r7gd.2xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.8227, + "ap-south-1": 0.0, + "ap-southeast-1": 0.8227, + "ap-southeast-2": 0.829, + "eu-central-1": 0.8189, + "eu-north-1": 0.774, + "eu-south-2": 0.0, + "eu-west-1": 0.8061, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.7093, + "us-west-1": 0.7774, "us-west-2": 0.7419 }, "r7gd.4xlarge": { - "eu-west-1": 1.4472, - "us-east-1": 0.0, + "ap-northeast-1": 1.5594, + "ap-south-1": 0.9112, + "ap-southeast-1": 1.5594, + "ap-southeast-2": 1.4178, + "eu-central-1": 0.0, + "eu-north-1": 1.3141, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 1.3188, "us-east-2": 1.2536, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r7gd.8xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 1.573, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.8209, + "eu-central-1": 0.0, + "eu-north-1": 2.4632, + "eu-south-2": 2.5842, "eu-west-1": 2.5842, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 2.3423 + "us-west-1": 2.7614, + "us-west-2": 0.0 }, "r7gd.12xlarge": { - "eu-west-1": 4.0115, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 4.3481, + "ap-southeast-2": 0.0, + "eu-central-1": 4.3241, + "eu-north-1": 3.6124, + "eu-south-2": 4.0115, + "eu-west-1": 3.7938, "us-east-1": 3.4309, - "us-east-2": 3.4309, + "us-east-2": 3.6264, + "us-west-1": 3.8392, "us-west-2": 3.4309 }, "r7gd.16xlarge": { + "ap-northeast-1": 5.4268, + "ap-south-1": 2.981, + "ap-southeast-1": 5.4268, + "ap-southeast-2": 5.1762, + "eu-central-1": 0.0, + "eu-north-1": 4.7615, + "eu-south-2": 5.0034, "eu-west-1": 5.0034, "us-east-1": 4.5196, - "us-east-2": 0.0, + "us-east-2": 4.5196, + "us-west-1": 5.0639, "us-west-2": 4.5196 }, + "r7i.large": { + "ap-northeast-1": 0.27056, + "ap-northeast-2": 0.2546, + "ap-south-1": 0.24515, + "ap-southeast-1": 0.27056, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.2546, + "ca-central-1": 0.0, + "eu-central-1": 0.27056, + "eu-north-1": 0.0, + "eu-south-2": 0.25786, + "eu-west-1": 0.25786, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.32716, + "us-east-1": 0.0, + "us-east-2": 0.2273, + "us-gov-east-1": 0.26941, + "us-gov-west-1": 0.0, + "us-west-1": 0.242, + "us-west-2": 0.2273 + }, + "r7i.xlarge": { + "ap-northeast-1": 0.4142, + "ap-northeast-2": 0.0, + "ap-south-1": 0.3953, + "ap-southeast-1": 0.44612, + "ap-southeast-2": 0.4121, + "ap-southeast-3": 0.0, + "ca-central-1": 0.3848, + "eu-central-1": 0.4142, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.43688, + "eu-west-3": 0.43688, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.44381, + "us-gov-west-1": 0.0, + "us-west-1": 0.4184, + "us-west-2": 0.38606 + }, + "r7i.metal-24xl": { + "ap-northeast-1": 8.59188, + "ap-northeast-2": 7.8258, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 7.7754, + "ap-southeast-3": 0.0, + "ca-central-1": 7.81572, + "eu-central-1": 8.59188, + "eu-north-1": 0.0, + "eu-south-2": 7.98204, + "eu-west-1": 7.2714, + "eu-west-2": 7.6242, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 7.15044, + "us-east-2": 6.5154, + "us-gov-east-1": 0.0, + "us-gov-west-1": 7.7754, + "us-west-1": 7.9266, + "us-west-2": 7.15044 + }, + "r7i.metal-48xl": { + "ap-northeast-1": 15.4866, + "ap-northeast-2": 15.4866, + "ap-south-1": 13.269, + "ap-southeast-1": 15.4866, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 15.4866, + "eu-north-1": 0.0, + "eu-south-2": 14.3778, + "eu-west-1": 14.3778, + "eu-west-2": 15.0834, + "eu-west-3": 15.0834, + "sa-east-1": 20.4258, + "us-east-1": 12.8658, + "us-east-2": 0.0, + "us-gov-east-1": 15.3858, + "us-gov-west-1": 0.0, + "us-west-1": 14.277, + "us-west-2": 12.8658 + }, + "r7i.2xlarge": { + "ap-northeast-1": 0.86724, + "ap-northeast-2": 0.86724, + "ap-south-1": 0.7656, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.86262, + "ap-southeast-3": 0.0, + "ca-central-1": 0.80256, + "eu-central-1": 0.0, + "eu-north-1": 0.78408, + "eu-south-2": 0.0, + "eu-west-1": 0.7572, + "eu-west-2": 0.0, + "eu-west-3": 0.84876, + "sa-east-1": 0.0, + "us-east-1": 0.6942, + "us-east-2": 0.74712, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.7992, + "us-west-1": 0.753, + "us-west-2": 0.0 + }, + "r7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.56948, + "ap-south-1": 1.3662, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 1.4418, + "ca-central-1": 1.3242, + "eu-central-1": 1.56948, + "eu-north-1": 1.2906, + "eu-south-2": 1.3494, + "eu-west-1": 0.0, + "eu-west-2": 1.4082, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 1.2234, + "us-east-2": 1.32924, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 1.4586, + "us-west-2": 0.0 + }, + "r7i.8xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 2.349, + "ap-southeast-1": 2.97396, + "ap-southeast-2": 2.95548, + "ap-southeast-3": 2.97396, + "ca-central-1": 2.71524, + "eu-central-1": 2.97396, + "eu-north-1": 0.0, + "eu-south-2": 2.5338, + "eu-west-1": 2.5338, + "eu-west-2": 2.6514, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 2.49348, + "us-east-2": 2.49348, + "us-gov-east-1": 2.95548, + "us-gov-west-1": 2.7018, + "us-west-1": 2.517, + "us-west-2": 2.49348 + }, + "r7i.12xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 4.37844, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 3.9954, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.87948, + "eu-south-2": 0.0, + "eu-west-1": 3.7182, + "eu-west-2": 4.26756, + "eu-west-3": 3.8946, + "sa-east-1": 5.73672, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 4.35072, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 3.65772 + }, + "r7i.16xlarge": { + "ap-northeast-1": 5.2722, + "ap-northeast-2": 5.2722, + "ap-south-1": 4.9698, + "ap-southeast-1": 5.2722, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.2722, + "ca-central-1": 5.26548, + "eu-central-1": 5.78292, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 5.37636, + "eu-west-2": 5.1378, + "eu-west-3": 0.0, + "sa-east-1": 7.59396, + "us-east-1": 4.3986, + "us-east-2": 4.3986, + "us-gov-east-1": 0.0, + "us-gov-west-1": 5.2386, + "us-west-1": 4.869, + "us-west-2": 4.82196 + }, + "r7i.24xlarge": { + "ap-northeast-1": 7.8258, + "ap-northeast-2": 8.59188, + "ap-south-1": 6.717, + "ap-southeast-1": 7.8258, + "ap-southeast-2": 8.53644, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 7.8258, + "eu-north-1": 6.9186, + "eu-south-2": 7.2714, + "eu-west-1": 7.2714, + "eu-west-2": 7.6242, + "eu-west-3": 0.0, + "sa-east-1": 11.30844, + "us-east-1": 6.5154, + "us-east-2": 0.0, + "us-gov-east-1": 8.53644, + "us-gov-west-1": 0.0, + "us-west-1": 7.221, + "us-west-2": 7.15044 + }, + "r7i.48xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 15.4866, + "ap-southeast-2": 15.3858, + "ap-southeast-3": 0.0, + "ca-central-1": 14.0754, + "eu-central-1": 15.4866, + "eu-north-1": 0.0, + "eu-south-2": 14.3778, + "eu-west-1": 0.0, + "eu-west-2": 15.0834, + "eu-west-3": 15.0834, + "sa-east-1": 20.4258, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 15.3858, + "us-west-1": 14.277, + "us-west-2": 12.8658 + }, + "r7iz.large": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.303, + "us-east-1": 0.281, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.xlarge": { + "ap-northeast-1": 0.549, + "eu-central-1": 0.0, + "eu-west-1": 0.5526, + "us-east-1": 0.0, + "us-east-2": 0.5042, + "us-west-2": 0.5042 + }, + "r7iz.metal-16xl": { + "ap-northeast-1": 8.1554, + "eu-central-1": 8.085, + "eu-west-1": 0.0, + "us-east-1": 6.117, + "us-east-2": 6.117, + "us-west-2": 0.0 + }, + "r7iz.metal-32xl": { + "ap-northeast-1": 16.1458, + "eu-central-1": 14.565, + "eu-west-1": 13.477, + "us-east-1": 0.0, + "us-east-2": 13.2594, + "us-west-2": 13.2594 + }, + "r7iz.2xlarge": { + "ap-northeast-1": 1.1638, + "eu-central-1": 0.0, + "eu-west-1": 1.0802, + "us-east-1": 0.9834, + "us-east-2": 0.9834, + "us-west-2": 0.9834 + }, + "r7iz.4xlarge": { + "ap-northeast-1": 1.981, + "eu-central-1": 1.965, + "eu-west-1": 1.829, + "us-east-1": 1.653, + "us-east-2": 1.653, + "us-west-2": 0.0 + }, + "r7iz.8xlarge": { + "ap-northeast-1": 4.1602, + "eu-central-1": 4.125, + "eu-west-1": 3.493, + "us-east-1": 3.4386, + "us-east-2": 0.0, + "us-west-2": 3.141 + }, + "r7iz.12xlarge": { + "ap-northeast-1": 6.1578, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 5.0754, + "us-east-2": 0.0, + "us-west-2": 5.0754 + }, + "r7iz.16xlarge": { + "ap-northeast-1": 7.429, + "eu-central-1": 8.085, + "eu-west-1": 0.0, + "us-east-1": 6.7122, + "us-east-2": 6.7122, + "us-west-2": 6.7122 + }, + "r7iz.32xlarge": { + "ap-northeast-1": 14.693, + "eu-central-1": 14.565, + "eu-west-1": 13.477, + "us-east-1": 12.069, + "us-east-2": 12.069, + "us-west-2": 13.2594 + }, "t2.micro": { "ap-northeast-1": 0.1102, "ap-northeast-2": 0.1094, @@ -71225,58 +79823,60 @@ "t3.micro": { "af-south-1": 0.1086, "ap-east-1": 0.1096, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.1086, "ap-northeast-2": 0.108, "ap-northeast-3": 0.1086, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.1082, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.1082, - "ap-southeast-4": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.109, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 0.1073, + "eu-central-1": 0.107, "eu-central-2": 0.1082, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 0.1064, - "eu-west-2": 0.0, - "eu-west-3": 0.1068, + "eu-west-1": 0.1071, + "eu-west-2": 0.1068, + "eu-west-3": 0.1075, "il-central-1": 0.0, "me-central-1": 0.1075, - "me-south-1": 0.1075, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.1054, "us-east-2": 0.1054, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.1072, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.1074, "us-west-2": 0.1054, "us-west-2-lax-1": 0.1075 }, "t3.small": { - "af-south-1": 0.0, + "af-south-1": 0.1221, "ap-east-1": 0.1242, "ap-northeast-1": 0.1222, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.1174, "ap-south-2": 0.1174, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.123, + "ap-southeast-2": 0.1214, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.123, - "ca-central-1": 0.1182, + "ap-southeast-4": 0.1214, + "ca-central-1": 0.0, + "ca-west-1": 0.1182, "eu-central-1": 0.119, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.119, - "eu-south-2": 0.1178, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.1186, "eu-west-3": 0.0, - "il-central-1": 0.1204, + "il-central-1": 0.119, "me-central-1": 0.1201, "me-south-1": 0.1201, "sa-east-1": 0.0, @@ -71293,15 +79893,16 @@ "ap-east-1": 0.1534, "ap-northeast-1": 0.1494, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1494, "ap-south-1": 0.0, "ap-south-2": 0.1398, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.1478, "ap-southeast-3": 0.1478, "ap-southeast-4": 0.151, "ca-central-1": 0.1414, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.143, "eu-central-2": 0.0, "eu-north-1": 0.1382, "eu-south-1": 0.1429, @@ -71310,7 +79911,7 @@ "eu-west-2": 0.0, "eu-west-3": 0.145, "il-central-1": 0.1458, - "me-central-1": 0.0, + "me-central-1": 0.1452, "me-south-1": 0.1452, "sa-east-1": 0.0, "us-east-1": 0.1366, @@ -71323,10 +79924,10 @@ }, "t3.large": { "af-south-1": 0.0, - "ap-east-1": 0.2118, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.199, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.2038, "ap-south-1": 0.0, "ap-south-2": 0.1846, "ap-southeast-1": 0.2006, @@ -71334,15 +79935,16 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.2006, "ca-central-1": 0.0, + "ca-west-1": 0.1878, "eu-central-1": 0.191, "eu-central-2": 0.0, "eu-north-1": 0.1814, "eu-south-1": 0.0, "eu-south-2": 0.1862, - "eu-west-1": 0.1862, - "eu-west-2": 0.1894, + "eu-west-1": 0.1917, + "eu-west-2": 0.1951, "eu-west-3": 0.1951, - "il-central-1": 0.0, + "il-central-1": 0.1966, "me-central-1": 0.0, "me-south-1": 0.1953, "sa-east-1": 0.2294, @@ -71357,32 +79959,33 @@ "t3.xlarge": { "af-south-1": 0.312, "ap-east-1": 0.3286, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.3126, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.3126, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.2742, "ap-south-2": 0.0, - "ap-southeast-1": 0.3062, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.3189, "ca-central-1": 0.0, + "ca-west-1": 0.2806, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 0.3062, "eu-north-1": 0.0, - "eu-south-1": 0.2867, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.2883, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.2867, - "me-central-1": 0.2956, + "il-central-1": 0.2982, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 0.2614, + "us-east-2": 0.2614, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.2902, "us-west-1": 0.0, "us-west-2": 0.2614, "us-west-2-lax-1": 0.2947 @@ -71395,28 +79998,29 @@ "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.5234, - "ap-southeast-1": 0.5874, - "ap-southeast-2": 0.5874, - "ap-southeast-3": 0.5874, - "ap-southeast-4": 0.6127, + "ap-southeast-1": 0.6127, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.5874, "ca-central-1": 0.0, + "ca-west-1": 0.5585, "eu-central-1": 0.549, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 0.5106, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.5298, "eu-west-1": 0.0, - "eu-west-2": 0.5426, + "eu-west-2": 0.5653, "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.5663, - "sa-east-1": 0.7026, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.4978, - "us-east-2": 0.0, + "us-east-2": 0.4978, "us-gov-east-1": 0.5554, "us-gov-west-1": 0.5554, - "us-west-1": 0.5618, + "us-west-1": 0.0, "us-west-2": 0.4978, "us-west-2-lax-1": 0.5644 }, @@ -71559,6 +80163,7 @@ "ap-southeast-3": 0.1056, "ap-southeast-4": 0.1056, "ca-central-1": 0.1042, + "ca-west-1": 0.1042, "eu-central-1": 0.1046, "eu-central-2": 0.1056, "eu-north-1": 0.1036, @@ -71591,6 +80196,7 @@ "ap-southeast-3": 0.1162, "ap-southeast-4": 0.1162, "ca-central-1": 0.1134, + "ca-west-1": 0.1134, "eu-central-1": 0.1142, "eu-central-2": 0.1161, "eu-north-1": 0.1122, @@ -71623,6 +80229,7 @@ "ap-southeast-3": 0.1374, "ap-southeast-4": 0.1374, "ca-central-1": 0.1318, + "ca-west-1": 0.1318, "eu-central-1": 0.1334, "eu-central-2": 0.1372, "eu-north-1": 0.1294, @@ -71655,6 +80262,7 @@ "ap-southeast-3": 0.1798, "ap-southeast-4": 0.1798, "ca-central-1": 0.1686, + "ca-west-1": 0.1686, "eu-central-1": 0.1718, "eu-central-2": 0.1795, "eu-north-1": 0.1638, @@ -71687,6 +80295,7 @@ "ap-southeast-3": 0.2646, "ap-southeast-4": 0.2646, "ca-central-1": 0.2422, + "ca-west-1": 0.2422, "eu-central-1": 0.2486, "eu-central-2": 0.264, "eu-north-1": 0.2326, @@ -71719,6 +80328,7 @@ "ap-southeast-3": 0.5042, "ap-southeast-4": 0.5042, "ca-central-1": 0.4594, + "ca-west-1": 0.4594, "eu-central-1": 0.4722, "eu-central-2": 0.5029, "eu-north-1": 0.4402, @@ -71738,6 +80348,24 @@ "us-west-1": 0.485, "us-west-2": 0.4338 }, + "u7i-12tb.224xlarge": { + "us-east-1": 0.0, + "us-west-2": 153.045 + }, + "u7in-16tb.224xlarge": { + "ap-northeast-2": 246.067, + "ap-southeast-2": 0.0, + "us-east-1": 0.0, + "us-west-2": 0.0 + }, + "u7in-24tb.224xlarge": { + "us-east-1": 0.0, + "us-west-2": 305.925 + }, + "u7in-32tb.224xlarge": { + "us-east-1": 0.0, + "us-west-2": 407.845 + }, "u-3tb1.56xlarge": { "ap-northeast-1": 33.0983, "ap-southeast-1": 33.095, @@ -71753,115 +80381,182 @@ "us-west-2": 27.465 }, "u-6tb1.metal": { - "eu-central-2": 0.165 + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, + "ap-south-1": 0.165, + "ap-southeast-1": 0.165, + "ap-southeast-2": 0.165, + "ca-central-1": 0.165, + "eu-central-1": 0.165, + "eu-central-2": 0.165, + "eu-north-1": 0.165, + "eu-south-1": 0.165, + "eu-south-2": 0.165, + "eu-west-1": 0.165, + "eu-west-2": 0.165, + "eu-west-3": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-6tb1.56xlarge": { - "ap-northeast-1": 56.1446, - "ap-northeast-2": 56.1446, - "ap-south-1": 48.04176, - "ap-southeast-1": 56.1446, - "ap-southeast-2": 55.77575, - "ca-central-1": 50.98833, - "eu-central-1": 56.1446, + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, + "ap-south-1": 0.165, + "ap-southeast-1": 0.165, + "ap-southeast-2": 0.165, + "ca-central-1": 0.165, + "eu-central-1": 0.165, "eu-central-2": 0.165, - "eu-north-1": 49.49677, - "eu-south-1": 54.68959, - "eu-west-1": 52.09318, - "eu-west-3": 54.67089, - "sa-east-1": 74.19028, - "us-east-1": 46.56891, - "us-east-2": 46.56891, - "us-gov-east-1": 55.77575, - "us-gov-west-1": 55.77575, - "us-west-2": 46.56891 + "eu-north-1": 0.165, + "eu-south-1": 0.165, + "eu-south-2": 0.165, + "eu-west-1": 0.165, + "eu-west-2": 0.165, + "eu-west-3": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-6tb1.112xlarge": { - "ap-northeast-1": 66.032, - "ap-northeast-2": 66.032, - "ap-south-1": 56.498, - "ap-southeast-1": 66.032, - "ap-southeast-2": 65.598, - "ca-central-1": 59.965, - "eu-central-1": 66.032, + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, + "ap-south-1": 0.165, + "ap-southeast-1": 0.165, + "ap-southeast-2": 0.165, + "ca-central-1": 0.165, + "eu-central-1": 0.165, "eu-central-2": 0.165, - "eu-north-1": 58.21, - "eu-south-1": 64.32, - "eu-west-1": 61.265, - "eu-west-3": 64.298, - "sa-east-1": 87.265, - "us-east-1": 54.765, - "us-east-2": 54.765, - "us-gov-east-1": 65.598, - "us-gov-west-1": 65.598, - "us-west-2": 54.765 + "eu-north-1": 0.165, + "eu-south-1": 0.165, + "eu-south-2": 0.165, + "eu-west-1": 0.165, + "eu-west-2": 0.165, + "eu-west-3": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-9tb1.metal": { + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, "ap-south-2": 0.165, - "us-gov-east-1": 0.165 + "ap-southeast-1": 0.165, + "eu-central-1": 0.165, + "eu-north-1": 0.165, + "eu-west-1": 0.165, + "eu-west-2": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-9tb1.112xlarge": { - "ap-northeast-1": 98.965, + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, "ap-south-2": 0.165, - "ap-southeast-1": 98.965, - "eu-central-1": 98.965, - "eu-west-1": 91.815, - "us-east-1": 82.065, + "ap-southeast-1": 0.165, + "eu-central-1": 0.165, + "eu-north-1": 0.165, + "eu-west-1": 0.165, + "eu-west-2": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, "us-gov-east-1": 0.165, - "us-gov-west-1": 98.315, - "us-west-2": 82.065 + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-12tb1.metal": { - "ap-south-1": 0.165 + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, + "ap-northeast-3": 0.165, + "ap-south-1": 0.165, + "ap-southeast-1": 0.165, + "ap-southeast-2": 0.165, + "eu-central-1": 0.165, + "eu-south-1": 0.165, + "eu-west-1": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 }, "u-12tb1.112xlarge": { - "ap-northeast-1": 131.898, + "ap-northeast-1": 0.165, + "ap-northeast-2": 0.165, + "ap-northeast-3": 0.165, "ap-south-1": 0.165, - "ap-southeast-1": 131.898, - "eu-central-1": 131.898, - "eu-west-1": 122.365, - "sa-east-1": 174.365, - "us-east-1": 109.365, - "us-east-2": 109.365, - "us-gov-east-1": 131.032, - "us-gov-west-1": 131.032, - "us-west-2": 109.365 + "ap-southeast-1": 0.165, + "ap-southeast-2": 0.165, + "eu-central-1": 0.165, + "eu-south-1": 128.475, + "eu-west-1": 0.165, + "sa-east-1": 0.165, + "us-east-1": 0.165, + "us-east-2": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, + "us-west-2": 0.165 + }, + "u-18tb1.metal": { + "eu-west-1": 0.165, + "us-east-1": 0.165, + "us-west-2": 0.165 }, "u-18tb1.112xlarge": { - "eu-west-1": 183.465, - "us-east-1": 163.965, - "us-west-2": 163.965 + "eu-west-1": 0.165, + "us-east-1": 0.165, + "us-west-2": 0.165 }, "u-24tb1.metal": { + "ap-northeast-2": 0.165, + "us-east-1": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, "us-west-2": 0.165 }, "u-24tb1.112xlarge": { - "ap-northeast-2": 263.635, - "us-east-1": 218.565, - "us-gov-east-1": 261.895, - "us-gov-west-1": 261.895, + "ap-northeast-2": 0.165, + "us-east-1": 0.165, + "us-gov-east-1": 0.165, + "us-gov-west-1": 0.165, "us-west-2": 0.165 }, "vt1.3xlarge": { "ap-northeast-1": 1.06506, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.88, "us-west-2": 0.815 }, "vt1.6xlarge": { "ap-northeast-1": 0.0, - "eu-west-1": 1.63324, + "eu-west-1": 0.0, "us-east-1": 0.0, "us-west-2": 0.0 }, "vt1.24xlarge": { "ap-northeast-1": 0.0, "eu-west-1": 6.03794, - "us-east-1": 5.365, - "us-west-2": 5.885 + "us-east-1": 0.0, + "us-west-2": 0.0 }, "x1.16xlarge": { - "af-south-1": 9.689, - "ap-east-1": 11.867, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 9.836, "ap-northeast-2": 9.836, "ap-northeast-3": 0.0, @@ -71873,16 +80568,16 @@ "eu-west-1": 8.168, "eu-west-2": 9.408, "eu-west-3": 0.0, - "sa-east-1": 13.17, + "sa-east-1": 14.471, "us-east-1": 6.834, "us-east-2": 6.834, "us-gov-east-1": 8.168, - "us-gov-west-1": 8.968, + "us-gov-west-1": 8.168, "us-west-2": 6.834 }, "x1.32xlarge": { "af-south-1": 19.213, - "ap-east-1": 21.441, + "ap-east-1": 0.0, "ap-northeast-1": 19.507, "ap-northeast-2": 19.507, "ap-northeast-3": 0.0, @@ -71894,162 +80589,164 @@ "eu-west-1": 16.171, "eu-west-2": 16.971, "eu-west-3": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 26.175, "us-east-1": 13.503, "us-east-2": 13.503, - "us-gov-east-1": 0.0, + "us-gov-east-1": 16.171, "us-gov-west-1": 0.0, "us-west-2": 13.503 }, "x1e.xlarge": { "af-south-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.425, + "ap-northeast-2": 1.304, "ap-northeast-3": 0.0, "ap-south-1": 0.955, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.425, - "ca-central-1": 0.0, + "ap-southeast-2": 1.304, + "ca-central-1": 1.103, "eu-central-1": 1.262, "eu-west-1": 1.195, "sa-east-1": 1.721, "us-east-1": 0.929, "us-east-2": 1.012, - "us-gov-east-1": 1.195, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.095, "us-west-2": 1.012 }, "x1e.2xlarge": { "af-south-1": 2.545, - "ap-northeast-1": 2.825, - "ap-northeast-2": 2.583, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 1.885, - "ap-southeast-1": 2.825, - "ap-southeast-2": 0.0, + "ap-southeast-1": 2.583, + "ap-southeast-2": 2.583, "ca-central-1": 2.182, "eu-central-1": 2.732, "eu-west-1": 2.165, "sa-east-1": 3.416, "us-east-1": 2.0, "us-east-2": 2.0, - "us-gov-east-1": 2.165, + "us-gov-east-1": 0.0, "us-gov-west-1": 2.165, "us-west-2": 1.833 }, "x1e.4xlarge": { "af-south-1": 5.401, - "ap-northeast-1": 5.485, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 5.001, "ap-northeast-3": 0.0, "ap-south-1": 3.605, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.485, "ca-central-1": 3.832, "eu-central-1": 0.0, - "eu-west-1": 4.565, + "eu-west-1": 0.0, "sa-east-1": 6.667, - "us-east-1": 0.0, + "us-east-1": 3.501, "us-east-2": 0.0, "us-gov-east-1": 4.165, "us-gov-west-1": 4.165, - "us-west-2": 0.0 + "us-west-2": 3.501 }, "x1e.8xlarge": { "af-south-1": 9.685, - "ap-northeast-1": 10.804, + "ap-northeast-1": 0.0, "ap-northeast-2": 10.804, "ap-northeast-3": 0.0, "ap-south-1": 7.045, "ap-southeast-1": 0.0, "ap-southeast-2": 9.837, "ca-central-1": 0.0, - "eu-central-1": 9.501, + "eu-central-1": 10.435, "eu-west-1": 8.965, "sa-east-1": 13.17, - "us-east-1": 7.504, + "us-east-1": 6.837, "us-east-2": 7.504, "us-gov-east-1": 8.965, "us-gov-west-1": 0.0, - "us-west-2": 6.837 + "us-west-2": 0.0 }, "x1e.16xlarge": { "af-south-1": 19.205, "ap-northeast-1": 21.443, - "ap-northeast-2": 0.0, + "ap-northeast-2": 21.443, "ap-northeast-3": 0.0, "ap-south-1": 13.925, "ap-southeast-1": 21.443, - "ap-southeast-2": 19.509, - "ca-central-1": 16.301, + "ap-southeast-2": 21.443, + "ca-central-1": 14.834, "eu-central-1": 20.704, "eu-west-1": 0.0, "sa-east-1": 26.175, - "us-east-1": 13.509, + "us-east-1": 0.0, "us-east-2": 13.509, - "us-gov-east-1": 0.0, + "us-gov-east-1": 17.765, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "x1e.32xlarge": { "af-south-1": 38.245, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 38.853, + "ap-northeast-2": 38.853, "ap-northeast-3": 0.0, "ap-south-1": 27.685, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 29.503, + "ca-central-1": 0.0, "eu-central-1": 37.509, "eu-west-1": 32.165, - "sa-east-1": 0.0, + "sa-east-1": 52.184, "us-east-1": 26.853, - "us-east-2": 0.0, + "us-east-2": 26.853, "us-gov-east-1": 32.165, - "us-gov-west-1": 0.0, + "us-gov-west-1": 32.165, "us-west-2": 26.853 }, "x2idn.metal": { - "ap-northeast-1": 0.0, + "af-south-1": 19.213, + "ap-northeast-1": 19.506, "ap-northeast-2": 19.506, - "ap-northeast-3": 0.0, + "ap-northeast-3": 19.507, "ap-south-1": 13.927, "ap-south-2": 13.927, - "ap-southeast-1": 19.506, + "ap-southeast-1": 0.0, "ap-southeast-2": 19.506, "ap-southeast-3": 0.0, - "ca-central-1": 14.837, - "eu-central-1": 18.839, + "ca-central-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 20.7064, "eu-north-1": 0.0, - "eu-south-1": 16.966, + "eu-south-1": 0.0, "eu-south-2": 16.171, "eu-west-1": 16.171, - "eu-west-2": 0.0, + "eu-west-2": 16.971, "eu-west-3": 0.0, "me-central-1": 0.0, "sa-east-1": 26.175, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 16.171, - "us-gov-west-1": 0.0, - "us-west-1": 17.505, - "us-west-2": 0.0 + "us-gov-west-1": 16.171, + "us-west-1": 0.0, + "us-west-2": 13.503 }, "x2idn.16xlarge": { - "ap-northeast-1": 9.8355, - "ap-northeast-2": 10.80255, + "af-south-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 7.046, - "ap-south-2": 7.7341, + "ap-south-1": 7.7341, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 9.8355, "ap-southeast-3": 10.80255, - "ca-central-1": 0.0, + "ca-central-1": 7.501, "eu-central-1": 10.4357, "eu-central-2": 0.0, "eu-north-1": 7.7705, - "eu-south-1": 8.5655, + "eu-south-1": 0.0, "eu-south-2": 8.168, "eu-west-1": 0.0, "eu-west-2": 9.4083, @@ -72057,22 +80754,23 @@ "me-central-1": 9.1894, "sa-east-1": 14.4705, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 6.834, "us-gov-east-1": 0.0, - "us-gov-west-1": 8.168, + "us-gov-west-1": 8.9683, "us-west-1": 0.0, "us-west-2": 0.0 }, "x2idn.24xlarge": { - "ap-northeast-1": 16.12133, + "af-south-1": 0.0, + "ap-northeast-1": 14.67075, "ap-northeast-2": 14.67075, "ap-northeast-3": 0.0, "ap-south-1": 11.51865, - "ap-south-2": 0.0, - "ap-southeast-1": 14.67075, + "ap-south-2": 10.4865, + "ap-southeast-1": 16.12133, "ap-southeast-2": 0.0, "ap-southeast-3": 16.12133, - "ca-central-1": 0.0, + "ca-central-1": 12.2694, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 12.71408, @@ -72080,23 +80778,24 @@ "eu-south-2": 0.0, "eu-west-1": 13.36995, "eu-west-2": 0.0, - "eu-west-3": 12.7695, + "eu-west-3": 0.0, "me-central-1": 0.0, "sa-east-1": 21.62325, - "us-east-1": 10.1685, + "us-east-1": 0.0, "us-east-2": 11.16885, "us-gov-east-1": 0.0, "us-gov-west-1": 12.1695, - "us-west-1": 0.0, + "us-west-1": 14.4705, "us-west-2": 10.1685 }, "x2idn.32xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 19.507, "ap-south-1": 13.927, "ap-south-2": 0.0, - "ap-southeast-1": 19.506, + "ap-southeast-1": 0.0, "ap-southeast-2": 19.506, "ap-southeast-3": 0.0, "ca-central-1": 14.837, @@ -72105,43 +80804,46 @@ "eu-north-1": 15.376, "eu-south-1": 16.966, "eu-south-2": 16.171, - "eu-west-1": 16.171, + "eu-west-1": 0.0, "eu-west-2": 16.971, "eu-west-3": 16.971, "me-central-1": 16.573, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 13.503, - "us-gov-east-1": 16.171, + "us-gov-east-1": 0.0, "us-gov-west-1": 16.171, - "us-west-1": 0.0, + "us-west-1": 17.505, "us-west-2": 13.503 }, "x2iedn.xlarge": { + "af-south-1": 1.2855, "ap-northeast-1": 0.0, "ap-northeast-2": 1.42469, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 1.04114, - "ap-southeast-1": 1.42469, - "ap-southeast-2": 1.42469, + "ap-northeast-3": 1.42476, + "ap-south-1": 0.95513, + "ap-south-2": 0.95513, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 1.30381, - "ca-central-1": 1.012, + "ca-central-1": 0.0, "eu-central-1": 1.37884, - "eu-north-1": 0.0, + "eu-north-1": 1.04572, "eu-south-1": 1.25003, + "eu-south-2": 1.09538, "eu-west-1": 1.09538, "eu-west-2": 1.25041, "eu-west-3": 1.25041, - "sa-east-1": 1.72063, + "sa-east-1": 1.88319, "us-east-1": 0.0, "us-east-2": 1.01199, "us-gov-east-1": 1.09538, - "us-gov-west-1": 1.19541, + "us-gov-west-1": 0.0, "us-west-1": 1.28713, "us-west-2": 0.0 }, "x2iedn.metal": { + "af-south-1": 38.261, "ap-northeast-1": 38.847, "ap-northeast-2": 0.0, "ap-northeast-3": 38.849, @@ -72154,8 +80856,9 @@ "eu-central-1": 37.513, "eu-north-1": 30.588, "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 32.177, + "eu-west-2": 33.777, "eu-west-3": 33.777, "sa-east-1": 0.0, "us-east-1": 26.841, @@ -72163,148 +80866,160 @@ "us-gov-east-1": 32.177, "us-gov-west-1": 32.177, "us-west-1": 34.845, - "us-west-2": 26.841 + "us-west-2": 0.0 }, "x2iedn.2xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 2.58263, - "ap-northeast-2": 2.58263, + "ap-northeast-2": 2.82439, "ap-northeast-3": 0.0, "ap-south-1": 2.05728, - "ap-south-2": 1.88525, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 2.58263, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 2.25658, - "eu-south-1": 2.26506, - "eu-west-1": 2.16575, + "eu-south-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 2.36583, "eu-west-2": 2.47583, "eu-west-3": 0.0, - "sa-east-1": 3.74138, - "us-east-1": 1.99898, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 1.83225, "us-gov-east-1": 2.16575, "us-gov-west-1": 2.16575, "us-west-1": 2.54925, - "us-west-2": 0.0 + "us-west-2": 1.83225 }, "x2iedn.4xlarge": { + "af-south-1": 4.927, "ap-northeast-1": 5.48378, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 3.94955, "ap-south-2": 3.6055, "ap-southeast-1": 5.48378, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.48378, "ap-southeast-3": 5.48378, "ca-central-1": 4.1998, "eu-central-1": 4.8335, "eu-north-1": 4.34816, "eu-south-1": 4.78514, + "eu-south-2": 4.56665, "eu-west-1": 4.56665, "eu-west-2": 4.3665, "eu-west-3": 4.3665, "sa-east-1": 6.6675, - "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-1": 3.83295, + "us-east-2": 3.4995, "us-gov-east-1": 0.0, - "us-gov-west-1": 4.1665, - "us-west-1": 0.0, + "us-gov-west-1": 4.56665, + "us-west-1": 4.9335, "us-west-2": 0.0 }, "x2iedn.8xlarge": { + "af-south-1": 9.689, "ap-northeast-1": 10.80255, "ap-northeast-2": 10.80255, "ap-northeast-3": 9.836, "ap-south-1": 7.046, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 9.8355, "ap-southeast-3": 0.0, "ca-central-1": 7.501, "eu-central-1": 10.4357, - "eu-north-1": 8.53133, - "eu-south-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 8.56525, + "eu-south-2": 8.168, "eu-west-1": 8.9683, - "eu-west-2": 9.4083, + "eu-west-2": 0.0, "eu-west-3": 9.4083, "sa-east-1": 0.0, "us-east-1": 7.5009, "us-east-2": 7.5009, - "us-gov-east-1": 8.9683, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 8.835, - "us-west-2": 6.834 + "us-west-2": 0.0 }, "x2iedn.16xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 21.4401, "ap-northeast-2": 19.506, "ap-northeast-3": 21.4412, "ap-south-1": 15.3032, "ap-south-2": 15.3032, - "ap-southeast-1": 0.0, - "ap-southeast-2": 19.506, + "ap-southeast-1": 21.4401, + "ap-southeast-2": 21.4401, "ap-southeast-3": 0.0, "ca-central-1": 14.837, "eu-central-1": 18.839, - "eu-north-1": 16.89765, - "eu-south-1": 0.0, + "eu-north-1": 15.3765, + "eu-south-1": 18.64555, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 16.971, "eu-west-3": 0.0, "sa-east-1": 28.776, "us-east-1": 14.8368, - "us-east-2": 14.8368, + "us-east-2": 0.0, "us-gov-east-1": 16.171, - "us-gov-west-1": 0.0, - "us-west-1": 17.505, + "us-gov-west-1": 17.7716, + "us-west-1": 19.239, "us-west-2": 13.503 }, "x2iedn.24xlarge": { + "af-south-1": 31.5942, "ap-northeast-1": 29.1765, "ap-northeast-2": 32.07765, - "ap-northeast-3": 32.0793, + "ap-northeast-3": 29.178, "ap-south-1": 22.8723, - "ap-south-2": 0.0, + "ap-south-2": 20.808, "ap-southeast-1": 32.07765, - "ap-southeast-2": 0.0, + "ap-southeast-2": 32.07765, "ap-southeast-3": 32.07765, "ca-central-1": 22.173, "eu-central-1": 30.9771, "eu-north-1": 0.0, "eu-south-1": 27.88583, + "eu-south-2": 26.5749, "eu-west-1": 24.174, - "eu-west-2": 27.8949, + "eu-west-2": 0.0, "eu-west-3": 25.374, "sa-east-1": 43.0815, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 20.172, + "us-gov-east-1": 24.174, "us-gov-west-1": 0.0, "us-west-1": 28.776, "us-west-2": 20.172 }, "x2iedn.32xlarge": { + "af-south-1": 38.261, "ap-northeast-1": 38.847, "ap-northeast-2": 38.847, - "ap-northeast-3": 38.849, + "ap-northeast-3": 0.0, "ap-south-1": 27.689, - "ap-south-2": 0.0, + "ap-south-2": 27.689, "ap-southeast-1": 0.0, "ap-southeast-2": 38.847, "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 37.513, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 33.766, + "eu-south-2": 32.177, "eu-west-1": 32.177, "eu-west-2": 33.777, "eu-west-3": 33.777, "sa-east-1": 52.185, "us-east-1": 26.841, "us-east-2": 26.841, - "us-gov-east-1": 0.0, + "us-gov-east-1": 32.177, "us-gov-west-1": 32.177, "us-west-1": 34.845, "us-west-2": 26.841 @@ -72313,30 +81028,30 @@ "ap-northeast-1": 14.673, "eu-west-1": 12.165, "us-east-1": 10.173, - "us-west-2": 10.173 + "us-west-2": 0.0 }, "x2iezn.2xlarge": { - "ap-northeast-1": 2.8248, + "ap-northeast-1": 2.583, "eu-west-1": 0.0, "us-east-1": 1.9998, - "us-west-2": 0.0 + "us-west-2": 1.833 }, "x2iezn.4xlarge": { "ap-northeast-1": 5.4846, - "eu-west-1": 0.0, + "eu-west-1": 4.165, "us-east-1": 3.8346, "us-west-2": 3.8346 }, "x2iezn.6xlarge": { "ap-northeast-1": 0.0, - "eu-west-1": 6.765, - "us-east-1": 5.6694, + "eu-west-1": 6.165, + "us-east-1": 0.0, "us-west-2": 5.169 }, "x2iezn.8xlarge": { "ap-northeast-1": 0.0, - "eu-west-1": 8.965, - "us-east-1": 6.837, + "eu-west-1": 8.165, + "us-east-1": 7.5042, "us-west-2": 0.0 }, "x2iezn.12xlarge": { @@ -72347,27 +81062,27 @@ }, "z1d.large": { "ap-northeast-1": 0.336, - "ap-northeast-2": 0.334, - "ap-south-1": 0.303, - "ap-southeast-1": 0.335, + "ap-northeast-2": 0.32, + "ap-south-1": 0.291, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.32, - "eu-west-1": 0.315, + "eu-central-1": 0.334, + "eu-west-1": 0.0, "eu-west-2": 0.315, "us-east-1": 0.292, - "us-east-2": 0.292, + "us-east-2": 0.281, "us-west-1": 0.319, - "us-west-2": 0.281 + "us-west-2": 0.292 }, "z1d.xlarge": { - "ap-northeast-1": 0.576, - "ap-northeast-2": 0.545, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.572, "ap-south-1": 0.511, "ap-southeast-1": 0.574, - "ap-southeast-2": 0.0, - "eu-central-1": 0.572, - "eu-west-1": 0.511, - "eu-west-2": 0.561, + "ap-southeast-2": 0.574, + "eu-central-1": 0.545, + "eu-west-1": 0.536, + "eu-west-2": 0.534, "us-east-1": 0.0, "us-east-2": 0.489, "us-west-1": 0.517, @@ -72380,8 +81095,8 @@ "ap-southeast-1": 5.589, "ap-southeast-2": 5.589, "eu-central-1": 5.565, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 5.157, + "eu-west-2": 5.438, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 0.0, @@ -72389,20 +81104,20 @@ }, "z1d.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.065, "ap-south-1": 0.996, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 1.119, "eu-west-1": 0.997, - "eu-west-2": 1.097, - "us-east-1": 0.909, + "eu-west-2": 0.0, + "us-east-1": 0.954, "us-east-2": 0.954, "us-west-1": 0.0, "us-west-2": 0.0 }, "z1d.3xlarge": { - "ap-northeast-1": 1.527, + "ap-northeast-1": 1.609, "ap-northeast-2": 1.515, "ap-south-1": 1.412, "ap-southeast-1": 1.602, @@ -72411,19 +81126,19 @@ "eu-west-1": 1.413, "eu-west-2": 0.0, "us-east-1": 1.348, - "us-east-2": 1.281, + "us-east-2": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.348 }, "z1d.6xlarge": { "ap-northeast-1": 2.889, "ap-northeast-2": 2.865, "ap-south-1": 0.0, - "ap-southeast-1": 2.877, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.04, "eu-central-1": 0.0, - "eu-west-1": 2.811, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 2.96, "us-east-1": 0.0, "us-east-2": 2.531, "us-west-1": 2.849, @@ -72433,11 +81148,11 @@ "ap-northeast-1": 5.613, "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 5.589, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 5.565, - "eu-west-1": 5.157, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 5.438, "us-east-1": 4.629, "us-east-2": 0.0, "us-west-1": 5.229, @@ -72520,21 +81235,21 @@ "ap-south-1": 0.0581, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0663, - "eu-central-1": 0.0, - "eu-west-1": 0.0598, - "us-east-1": 0.058, - "us-east-2": 0.058, + "eu-central-1": 0.062, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-west-2": 0.0565 }, "a1.large": { "ap-northeast-1": 0.1205, - "ap-south-1": 0.1073, + "ap-south-1": 0.1104, "ap-southeast-1": 0.1151, "ap-southeast-2": 0.0, "eu-central-1": 0.118, - "eu-west-1": 0.0, + "eu-west-1": 0.1139, "us-east-1": 0.0, - "us-east-2": 0.1073, + "us-east-2": 0.0, "us-west-2": 0.1073 }, "a1.xlarge": { @@ -72543,30 +81258,30 @@ "ap-southeast-1": 0.181, "ap-southeast-2": 0.0, "eu-central-1": 0.1797, - "eu-west-1": 0.0, - "us-east-1": 0.1644, - "us-east-2": 0.1583, - "us-west-2": 0.1583 + "eu-west-1": 0.1715, + "us-east-1": 0.0, + "us-east-2": 0.1644, + "us-west-2": 0.1644 }, "a1.metal": { "ap-northeast-1": 0.0, - "ap-south-1": 0.533, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.591, "eu-west-1": 0.586, "us-east-1": 0.533, - "us-east-2": 0.0, + "us-east-2": 0.533, "us-west-2": 0.533 }, "a1.2xlarge": { - "ap-northeast-1": 0.3972, + "ap-northeast-1": 0.3818, "ap-south-1": 0.3412, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.3718, - "eu-west-1": 0.3554, - "us-east-1": 0.329, + "eu-west-1": 0.0, + "us-east-1": 0.3412, "us-east-2": 0.329, "us-west-2": 0.329 }, @@ -72608,47 +81323,47 @@ "ap-northeast-2": 0.22672, "ap-southeast-1": 0.232, "ap-southeast-2": 0.232, - "eu-central-1": 0.251, + "eu-central-1": 0.229, "eu-west-1": 0.22, "sa-east-1": 0.279, - "us-east-1": 0.216, - "us-gov-west-1": 0.0, - "us-west-1": 0.232, - "us-west-2": 0.0 + "us-east-1": 0.0, + "us-gov-west-1": 0.248, + "us-west-1": 0.0, + "us-west-2": 0.205 }, "c3.xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.33, - "ap-southeast-1": 0.365, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.393, + "eu-central-1": 0.358, "eu-west-1": 0.339, "sa-east-1": 0.458, "us-east-1": 0.31, - "us-gov-west-1": 0.387, + "us-gov-west-1": 0.0, "us-west-1": 0.339, - "us-west-2": 0.0 + "us-west-2": 0.31 }, "c3.2xlarge": { "ap-northeast-1": 0.662, "ap-northeast-2": 0.60589, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.682, + "ap-southeast-1": 0.629, + "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, - "sa-east-1": 0.75, + "sa-east-1": 0.0, "us-east-1": 0.562, - "us-gov-west-1": 0.604, + "us-gov-west-1": 0.664, "us-west-1": 0.578, "us-west-2": 0.562 }, "c3.4xlarge": { - "ap-northeast-1": 1.223, + "ap-northeast-1": 1.121, "ap-northeast-2": 1.11079, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.264, "ap-southeast-2": 1.264, "eu-central-1": 1.132, - "eu-west-1": 1.056, + "eu-west-1": 1.152, "sa-east-1": 1.53, "us-east-1": 0.94, "us-gov-west-1": 0.0, @@ -72657,30 +81372,30 @@ }, "c3.8xlarge": { "ap-northeast-1": 2.143, - "ap-northeast-2": 1.939, + "ap-northeast-2": 0.0, "ap-southeast-1": 2.217, "ap-southeast-2": 2.217, "eu-central-1": 2.164, "eu-west-1": 2.012, - "sa-east-1": 0.0, + "sa-east-1": 2.7, "us-east-1": 1.78, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 2.012, "us-west-2": 1.78 }, "c4.large": { - "ap-northeast-1": 0.226, - "ap-northeast-2": 0.214, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.225, "ap-northeast-3": 0.239, "ap-south-1": 0.21, "ap-southeast-1": 0.215, "ap-southeast-2": 0.243, - "ca-central-1": 0.221, + "ca-central-1": 0.0, "eu-central-1": 0.214, - "eu-west-1": 0.0, - "eu-west-2": 0.219, - "sa-east-1": 0.255, - "us-east-1": 0.21, + "eu-west-1": 0.213, + "eu-west-2": 0.231, + "sa-east-1": 0.0, + "us-east-1": 0.2, "us-east-2": 0.2, "us-gov-west-1": 0.22, "us-west-1": 0.224, @@ -72688,38 +81403,38 @@ }, "c4.xlarge": { "ap-northeast-1": 0.377, - "ap-northeast-2": 0.35, - "ap-northeast-3": 0.377, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.354, - "ap-southeast-2": 0.387, - "ca-central-1": 0.318, - "eu-central-1": 0.327, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, "eu-west-1": 0.326, "eu-west-2": 0.337, - "sa-east-1": 0.44, + "sa-east-1": 0.0, "us-east-1": 0.299, "us-east-2": 0.0, - "us-gov-west-1": 0.363, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "c4.2xlarge": { "ap-northeast-1": 0.604, - "ap-northeast-2": 0.554, - "ap-northeast-3": 0.654, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.604, "ap-south-1": 0.5, - "ap-southeast-1": 0.562, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.674, - "ca-central-1": 0.538, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.599, "eu-west-1": 0.553, "eu-west-2": 0.0, "sa-east-1": 0.718, - "us-east-1": 0.498, + "us-east-1": 0.0, "us-east-2": 0.538, - "us-gov-west-1": 0.579, - "us-west-1": 0.648, + "us-gov-west-1": 0.0, + "us-west-1": 0.598, "us-west-2": 0.0 }, "c4.4xlarge": { @@ -72727,17 +81442,17 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.98, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.024, "ap-southeast-2": 1.142, "ca-central-1": 0.0, - "eu-central-1": 1.009, - "eu-west-1": 1.005, - "eu-west-2": 1.05, + "eu-central-1": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 1.145, "sa-east-1": 1.335, "us-east-1": 0.896, - "us-east-2": 0.896, + "us-east-2": 0.0, "us-gov-west-1": 1.154, - "us-west-1": 1.097, + "us-west-1": 1.197, "us-west-2": 0.0 }, "c4.8xlarge": { @@ -72753,9 +81468,9 @@ "eu-west-2": 2.002, "sa-east-1": 2.57, "us-east-1": 1.691, - "us-east-2": 0.0, + "us-east-2": 1.691, "us-gov-west-1": 0.0, - "us-west-1": 2.093, + "us-west-1": 0.0, "us-west-2": 1.691 }, "c5.large": { @@ -72763,63 +81478,65 @@ "ap-east-1": 0.171, "ap-northeast-1": 0.163, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.17, + "ap-northeast-3": 0.163, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.154, "ap-southeast-2": 0.174, "ap-southeast-3": 0.0, "ap-southeast-4": 0.167, "ca-central-1": 0.0, - "eu-central-1": 0.159, + "ca-west-1": 0.0, + "eu-central-1": 0.153, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.157, "eu-south-2": 0.0, "eu-west-1": 0.158, - "eu-west-2": 0.0, - "eu-west-3": 0.157, - "il-central-1": 0.0, - "me-central-1": 0.0, + "eu-west-2": 0.163, + "eu-west-3": 0.163, + "il-central-1": 0.163, + "me-central-1": 0.168, "me-south-1": 0.162, "sa-east-1": 0.195, "us-east-1": 0.0, "us-east-2": 0.146, "us-gov-east-1": 0.158, "us-gov-west-1": 0.164, - "us-west-1": 0.0, + "us-west-1": 0.169, "us-west-2": 0.141, "us-west-2-lax-1": 0.158 }, "c5.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.272, + "ap-east-1": 0.0, "ap-northeast-1": 0.283, - "ap-northeast-2": 0.26, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.248, + "ap-northeast-3": 0.283, "ap-south-1": 0.237, - "ap-south-2": 0.0, - "ap-southeast-1": 0.264, + "ap-south-2": 0.226, + "ap-southeast-1": 0.252, "ap-southeast-2": 0.292, "ap-southeast-3": 0.252, "ap-southeast-4": 0.292, "ca-central-1": 0.0, + "ca-west-1": 0.242, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 0.238, + "eu-central-2": 0.283, + "eu-north-1": 0.0, "eu-south-1": 0.258, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.27, - "eu-west-3": 0.258, - "il-central-1": 0.0, + "eu-west-3": 0.27, + "il-central-1": 0.27, "me-central-1": 0.0, "me-south-1": 0.268, - "sa-east-1": 0.334, + "sa-east-1": 0.0, "us-east-1": 0.226, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.273, "us-west-1": 0.281, "us-west-2": 0.237, "us-west-2-lax-1": 0.0 @@ -72828,7 +81545,7 @@ "af-south-1": 5.572, "ap-east-1": 5.284, "ap-northeast-1": 5.236, - "ap-northeast-2": 4.708, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 4.18, "ap-south-2": 4.205, @@ -72837,31 +81554,32 @@ "ap-southeast-3": 4.804, "ap-southeast-4": 5.453, "ca-central-1": 4.564, - "eu-central-1": 4.756, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-central-2": 5.247, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 4.733, + "eu-south-1": 4.948, + "eu-south-2": 0.0, "eu-west-1": 4.708, "eu-west-2": 4.948, - "eu-west-3": 4.948, + "eu-west-3": 0.0, "il-central-1": 4.963, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 6.388, "us-east-1": 4.18, - "us-east-2": 4.18, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 4.996, - "us-west-1": 5.188, - "us-west-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 4.18, "us-west-2-lax-1": 4.996 }, "c5.2xlarge": { - "af-south-1": 0.583, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.509, + "af-south-1": 0.0, + "ap-east-1": 0.532, + "ap-northeast-1": 0.528, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.44, "ap-south-2": 0.465, @@ -72870,152 +81588,157 @@ "ap-southeast-3": 0.492, "ap-southeast-4": 0.0, "ca-central-1": 0.496, + "ca-west-1": 0.519, "eu-central-1": 0.488, "eu-central-2": 0.577, - "eu-north-1": 0.464, - "eu-south-1": 0.0, + "eu-north-1": 0.488, + "eu-south-1": 0.528, "eu-south-2": 0.532, - "eu-west-1": 0.484, + "eu-west-1": 0.0, "eu-west-2": 0.504, - "eu-west-3": 0.0, + "eu-west-3": 0.504, "il-central-1": 0.0, "me-central-1": 0.573, - "me-south-1": 0.55, + "me-south-1": 0.522, "sa-east-1": 0.624, "us-east-1": 0.44, - "us-east-2": 0.44, + "us-east-2": 0.461, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.552, + "us-gov-west-1": 0.533, + "us-west-1": 0.0, "us-west-2": 0.0, - "us-west-2-lax-1": 0.533 + "us-west-2-lax-1": 0.508 }, "c5.4xlarge": { "af-south-1": 1.067, "ap-east-1": 0.964, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.918, "ap-northeast-3": 1.007, "ap-south-1": 0.824, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.931, - "ap-southeast-4": 0.0, - "ca-central-1": 0.844, + "ap-southeast-2": 1.042, + "ap-southeast-3": 0.0, + "ap-southeast-4": 1.013, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.876, "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.908, - "eu-south-2": 0.893, + "eu-north-1": 0.876, + "eu-south-1": 0.0, + "eu-south-2": 0.939, "eu-west-1": 0.868, "eu-west-2": 0.0, - "eu-west-3": 0.961, - "il-central-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.98, "me-central-1": 0.97, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 0.78, + "us-gov-east-1": 0.916, "us-gov-west-1": 0.0, "us-west-1": 0.948, "us-west-2": 0.821, - "us-west-2-lax-1": 0.916 + "us-west-2-lax-1": 0.0 }, "c5.9xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 2.158, - "ap-northeast-2": 1.828, + "ap-northeast-2": 0.0, "ap-northeast-3": 2.026, "ap-south-1": 1.63, "ap-south-2": 1.655, "ap-southeast-1": 1.977, - "ap-southeast-2": 0.0, + "ap-southeast-2": 2.219, "ap-southeast-3": 1.97, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.123, "ca-central-1": 1.774, + "ca-west-1": 0.0, "eu-central-1": 1.961, "eu-central-2": 2.046, "eu-north-1": 1.845, "eu-south-1": 1.918, - "eu-south-2": 1.957, - "eu-west-1": 1.828, + "eu-south-2": 1.853, + "eu-west-1": 1.941, "eu-west-2": 0.0, - "eu-west-3": 2.037, + "eu-west-3": 1.918, "il-central-1": 1.939, "me-central-1": 2.14, "me-south-1": 2.125, - "sa-east-1": 2.618, - "us-east-1": 0.0, + "sa-east-1": 2.458, + "us-east-1": 1.722, "us-east-2": 1.722, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.046, + "us-gov-east-1": 2.046, + "us-gov-west-1": 1.936, "us-west-1": 2.008, "us-west-2": 1.722, "us-west-2-lax-1": 1.936 }, "c5.12xlarge": { "af-south-1": 3.0, - "ap-east-1": 0.0, + "ap-east-1": 2.692, "ap-northeast-1": 2.668, "ap-northeast-2": 2.404, "ap-northeast-3": 2.668, "ap-south-1": 2.14, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.926, + "ap-southeast-1": 2.603, + "ap-southeast-2": 2.764, "ap-southeast-3": 2.593, "ap-southeast-4": 2.789, "ca-central-1": 2.475, - "eu-central-1": 2.581, - "eu-central-2": 2.839, - "eu-north-1": 2.284, + "ca-west-1": 0.0, + "eu-central-1": 2.428, + "eu-central-2": 0.0, + "eu-north-1": 2.427, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 2.555, - "eu-west-2": 2.683, + "eu-west-2": 0.0, "eu-west-3": 2.682, "il-central-1": 0.0, "me-central-1": 2.811, - "me-south-1": 2.786, - "sa-east-1": 0.0, + "me-south-1": 2.634, + "sa-east-1": 3.244, "us-east-1": 2.14, "us-east-2": 0.0, - "us-gov-east-1": 2.548, - "us-gov-west-1": 2.548, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.695, "us-west-1": 2.81, "us-west-2": 2.262, "us-west-2-lax-1": 2.548 }, "c5.18xlarge": { - "af-south-1": 0.0, - "ap-east-1": 3.988, + "af-south-1": 4.204, + "ap-east-1": 0.0, "ap-northeast-1": 3.952, "ap-northeast-2": 3.556, "ap-northeast-3": 3.952, "ap-south-1": 3.16, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.628, "ap-southeast-2": 4.096, - "ap-southeast-3": 3.628, + "ap-southeast-3": 0.0, "ap-southeast-4": 4.121, - "ca-central-1": 3.448, + "ca-central-1": 0.0, + "ca-west-1": 3.473, "eu-central-1": 3.592, "eu-central-2": 0.0, "eu-north-1": 3.376, "eu-south-1": 3.736, - "eu-south-2": 0.0, + "eu-south-2": 3.581, "eu-west-1": 3.556, - "eu-west-2": 0.0, + "eu-west-2": 3.736, "eu-west-3": 3.736, - "il-central-1": 3.754, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 4.816, "us-east-1": 0.0, - "us-east-2": 3.16, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 3.772, "us-west-1": 0.0, @@ -73023,37 +81746,38 @@ "us-west-2-lax-1": 3.772 }, "c5.24xlarge": { - "af-south-1": 0.0, + "af-south-1": 5.597, "ap-east-1": 5.284, "ap-northeast-1": 5.236, "ap-northeast-2": 4.733, - "ap-northeast-3": 0.0, + "ap-northeast-3": 5.236, "ap-south-1": 0.0, "ap-south-2": 4.205, "ap-southeast-1": 4.829, "ap-southeast-2": 5.453, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 4.564, + "ca-central-1": 0.0, + "ca-west-1": 4.589, "eu-central-1": 4.781, "eu-central-2": 5.247, "eu-north-1": 0.0, - "eu-south-1": 4.973, + "eu-south-1": 4.948, "eu-south-2": 4.733, "eu-west-1": 4.708, - "eu-west-2": 4.948, - "eu-west-3": 4.948, + "eu-west-2": 4.973, + "eu-west-3": 4.973, "il-central-1": 4.963, "me-central-1": 5.194, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 4.18, - "us-east-2": 0.0, - "us-gov-east-1": 4.996, - "us-gov-west-1": 4.996, - "us-west-1": 0.0, - "us-west-2": 4.205, - "us-west-2-lax-1": 4.996 + "us-east-2": 4.205, + "us-gov-east-1": 5.021, + "us-gov-west-1": 5.021, + "us-west-1": 5.213, + "us-west-2": 4.18, + "us-west-2-lax-1": 0.0 }, "c5a.large": { "af-south-1": 0.159, @@ -73353,79 +82077,79 @@ }, "c5d.large": { "af-south-1": 0.194, - "ap-east-1": 0.187, - "ap-northeast-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 0.186, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.161, "ap-south-2": 0.161, - "ap-southeast-1": 0.175, + "ap-southeast-1": 0.168, "ap-southeast-2": 0.182, "ap-southeast-3": 0.175, "ap-southeast-4": 0.19, "ca-central-1": 0.169, "eu-central-1": 0.0, "eu-central-2": 0.178, - "eu-north-1": 0.16, - "eu-south-1": 0.17, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.165, "eu-west-2": 0.171, "eu-west-3": 0.171, "il-central-1": 0.0, - "me-central-1": 0.176, + "me-central-1": 0.183, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.152, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.179, "us-gov-west-1": 0.179, "us-west-1": 0.176, - "us-west-2": 0.158 + "us-west-2": 0.0 }, "c5d.xlarge": { "af-south-1": 0.332, - "ap-east-1": 0.317, - "ap-northeast-1": 0.315, - "ap-northeast-2": 0.276, + "ap-east-1": 0.302, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.3, "ap-south-1": 0.266, "ap-south-2": 0.0, "ap-southeast-1": 0.294, - "ap-southeast-2": 0.308, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.323, + "ap-southeast-3": 0.294, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.281, "eu-central-1": 0.0, - "eu-central-2": 0.301, - "eu-north-1": 0.277, - "eu-south-1": 0.284, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.298, "eu-south-2": 0.274, - "eu-west-1": 0.0, - "eu-west-2": 0.286, + "eu-west-1": 0.274, + "eu-west-2": 0.3, "eu-west-3": 0.0, "il-central-1": 0.285, "me-central-1": 0.296, - "me-south-1": 0.0, + "me-south-1": 0.31, "sa-east-1": 0.372, "us-east-1": 0.26, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.288, - "us-west-1": 0.311, + "us-west-1": 0.0, "us-west-2": 0.26 }, "c5d.metal": { - "af-south-1": 0.0, + "af-south-1": 6.34, "ap-northeast-1": 5.956, "ap-northeast-2": 5.38, "ap-northeast-3": 5.956, - "ap-south-1": 4.852, + "ap-south-1": 0.0, "ap-south-2": 4.877, "ap-southeast-1": 5.476, "ap-southeast-2": 6.148, "ap-southeast-3": 5.476, - "ap-southeast-4": 6.173, + "ap-southeast-4": 0.0, "ca-central-1": 5.188, "eu-central-1": 5.428, "eu-central-2": 5.986, @@ -73444,63 +82168,63 @@ "us-west-2": 4.708 }, "c5d.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.62, "ap-east-1": 0.623, "ap-northeast-1": 0.588, - "ap-northeast-2": 0.568, - "ap-northeast-3": 0.588, - "ap-south-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.617, + "ap-south-1": 0.521, "ap-south-2": 0.545, "ap-southeast-1": 0.0, "ap-southeast-2": 0.635, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.659, + "ap-southeast-4": 0.629, "ca-central-1": 0.524, "eu-central-1": 0.544, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.583, - "eu-south-2": 0.561, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.59, - "eu-west-3": 0.0, - "il-central-1": 0.61, + "eu-west-3": 0.59, + "il-central-1": 0.583, "me-central-1": 0.605, "me-south-1": 0.58, - "sa-east-1": 0.736, + "sa-east-1": 0.696, "us-east-1": 0.507, "us-east-2": 0.484, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.592, "us-west-1": 0.58, "us-west-2": 0.0 }, "c5d.4xlarge": { "af-south-1": 1.14, "ap-east-1": 1.147, - "ap-northeast-1": 1.142, + "ap-northeast-1": 1.076, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.892, + "ap-northeast-3": 1.076, + "ap-south-1": 0.943, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.17, + "ap-southeast-2": 0.0, "ap-southeast-3": 1.05, - "ap-southeast-4": 0.0, + "ap-southeast-4": 1.193, "ca-central-1": 0.948, "eu-central-1": 0.988, "eu-central-2": 0.0, "eu-north-1": 0.932, "eu-south-1": 1.012, - "eu-south-2": 1.049, + "eu-south-2": 0.997, "eu-west-1": 0.972, "eu-west-2": 1.08, "eu-west-3": 1.02, "il-central-1": 1.041, - "me-central-1": 0.0, + "me-central-1": 1.084, "me-south-1": 1.059, "sa-east-1": 1.373, - "us-east-1": 0.914, + "us-east-1": 0.868, "us-east-2": 0.914, "us-gov-east-1": 1.084, "us-gov-west-1": 1.028, @@ -73510,32 +82234,32 @@ "c5d.9xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 2.296, + "ap-northeast-1": 2.445, "ap-northeast-2": 2.207, "ap-northeast-3": 2.296, "ap-south-1": 1.882, "ap-south-2": 1.907, "ap-southeast-1": 2.245, - "ap-southeast-2": 0.0, + "ap-southeast-2": 2.368, "ap-southeast-3": 2.116, - "ap-southeast-4": 2.529, + "ap-southeast-4": 2.393, "ca-central-1": 0.0, - "eu-central-1": 2.098, - "eu-central-2": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 2.455, "eu-north-1": 0.0, - "eu-south-1": 2.152, + "eu-south-1": 0.0, "eu-south-2": 2.087, "eu-west-1": 0.0, "eu-west-2": 2.306, "eu-west-3": 2.305, "il-central-1": 2.185, "me-central-1": 2.413, - "me-south-1": 2.4, - "sa-east-1": 0.0, - "us-east-1": 1.932, - "us-east-2": 1.932, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.314, + "me-south-1": 0.0, + "sa-east-1": 2.964, + "us-east-1": 0.0, + "us-east-2": 1.828, + "us-gov-east-1": 2.188, + "us-gov-west-1": 0.0, "us-west-1": 2.401, "us-west-2": 0.0 }, @@ -73543,8 +82267,8 @@ "af-south-1": 3.22, "ap-northeast-1": 3.028, "ap-northeast-2": 2.74, - "ap-northeast-3": 3.204, - "ap-south-1": 2.476, + "ap-northeast-3": 3.028, + "ap-south-1": 2.619, "ap-south-2": 2.644, "ap-southeast-1": 2.788, "ap-southeast-2": 0.0, @@ -73555,11 +82279,11 @@ "eu-central-2": 0.0, "eu-north-1": 2.596, "eu-south-1": 0.0, - "eu-south-2": 2.898, + "eu-south-2": 0.0, "eu-west-1": 2.888, "eu-west-2": 2.86, - "il-central-1": 3.037, - "me-central-1": 0.0, + "il-central-1": 2.872, + "me-central-1": 3.175, "sa-east-1": 3.676, "us-east-1": 2.404, "us-east-2": 2.404, @@ -73568,15 +82292,15 @@ "us-west-2": 2.404 }, "c5d.18xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, + "af-south-1": 4.78, + "ap-east-1": 4.528, "ap-northeast-1": 0.0, "ap-northeast-2": 4.06, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 3.664, "ap-south-2": 3.689, "ap-southeast-1": 4.132, - "ap-southeast-2": 4.636, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 3.916, @@ -73585,15 +82309,15 @@ "eu-north-1": 3.844, "eu-south-1": 0.0, "eu-south-2": 4.049, - "eu-west-1": 0.0, + "eu-west-1": 4.024, "eu-west-2": 0.0, - "eu-west-3": 4.24, + "eu-west-3": 0.0, "il-central-1": 4.245, "me-central-1": 4.441, "me-south-1": 0.0, "sa-east-1": 5.464, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.556, "us-gov-east-1": 4.276, "us-gov-west-1": 0.0, "us-west-1": 0.0, @@ -73604,22 +82328,22 @@ "ap-northeast-1": 5.956, "ap-northeast-2": 5.38, "ap-northeast-3": 5.956, - "ap-south-1": 5.137, + "ap-south-1": 4.852, "ap-south-2": 0.0, "ap-southeast-1": 5.476, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 5.799, "ap-southeast-4": 0.0, "ca-central-1": 5.188, "eu-central-1": 5.428, - "eu-central-2": 6.337, + "eu-central-2": 0.0, "eu-north-1": 5.092, - "eu-south-1": 5.9, + "eu-south-1": 5.572, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 5.62, + "eu-west-1": 5.671, + "eu-west-2": 0.0, "il-central-1": 5.619, - "me-central-1": 5.88, + "me-central-1": 0.0, "sa-east-1": 7.252, "us-east-1": 4.708, "us-east-2": 4.708, @@ -73632,56 +82356,56 @@ "ap-east-1": 0.199, "ap-northeast-1": 0.192, "ap-northeast-2": 0.178, - "ap-northeast-3": 0.0, - "ap-south-1": 0.164, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-northeast-3": 0.2, + "ap-south-1": 0.0, + "ap-southeast-1": 0.18, + "ap-southeast-2": 0.197, + "ap-southeast-3": 0.18, "ca-central-1": 0.181, "eu-central-1": 0.187, "eu-north-1": 0.179, "eu-south-1": 0.185, - "eu-west-1": 0.178, + "eu-west-1": 0.186, "eu-west-2": 0.0, "eu-west-3": 0.184, "me-south-1": 0.19, "sa-east-1": 0.0, "us-east-1": 0.164, - "us-east-2": 0.164, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.186, + "us-east-2": 0.171, + "us-gov-east-1": 0.186, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.164 }, "c5n.xlarge": { "af-south-1": 0.0, "ap-east-1": 0.359, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.328, "ap-northeast-2": 0.315, "ap-northeast-3": 0.345, "ap-south-1": 0.285, - "ap-southeast-1": 0.304, - "ap-southeast-2": 0.355, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ca-central-1": 0.306, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.288, "eu-south-1": 0.314, - "eu-west-1": 0.3, + "eu-west-1": 0.0, "eu-west-2": 0.312, "eu-west-3": 0.312, "me-south-1": 0.324, - "sa-east-1": 0.388, + "sa-east-1": 0.0, "us-east-1": 0.272, "us-east-2": 0.0, "us-gov-east-1": 0.316, - "us-gov-west-1": 0.316, - "us-west-1": 0.0, - "us-west-2": 0.272 + "us-gov-west-1": 0.332, + "us-west-1": 0.326, + "us-west-2": 0.0 }, "c5n.metal": { - "af-south-1": 0.0, - "ap-east-1": 5.273, + "af-south-1": 5.352, + "ap-east-1": 0.0, "ap-northeast-1": 5.021, "ap-northeast-2": 4.517, "ap-northeast-3": 5.021, @@ -73694,7 +82418,7 @@ "eu-north-1": 4.301, "eu-south-1": 4.769, "eu-west-1": 4.517, - "eu-west-2": 0.0, + "eu-west-2": 4.733, "eu-west-3": 4.733, "me-south-1": 4.949, "sa-east-1": 6.101, @@ -73710,10 +82434,10 @@ "ap-east-1": 0.731, "ap-northeast-1": 0.669, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.669, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.557, "ap-southeast-1": 0.621, - "ap-southeast-2": 0.723, + "ap-southeast-2": 0.689, "ap-southeast-3": 0.621, "ca-central-1": 0.0, "eu-central-1": 0.617, @@ -73723,79 +82447,79 @@ "eu-west-2": 0.0, "eu-west-3": 0.637, "me-south-1": 0.661, - "sa-east-1": 0.829, + "sa-east-1": 0.0, "us-east-1": 0.557, "us-east-2": 0.557, "us-gov-east-1": 0.676, "us-gov-west-1": 0.676, - "us-west-1": 0.697, + "us-west-1": 0.665, "us-west-2": 0.0 }, "c5n.4xlarge": { - "af-south-1": 0.0, - "ap-east-1": 1.338, + "af-south-1": 1.356, + "ap-east-1": 0.0, "ap-northeast-1": 1.278, "ap-northeast-2": 1.101, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.213, "ap-south-1": 1.041, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.177, "ap-southeast-2": 1.321, - "ap-southeast-3": 0.0, - "ca-central-1": 1.069, - "eu-central-1": 1.168, + "ap-southeast-3": 1.117, + "ca-central-1": 1.126, + "eu-central-1": 1.109, "eu-north-1": 1.109, "eu-south-1": 1.157, "eu-west-1": 1.101, "eu-west-2": 0.0, "eu-west-3": 1.149, "me-south-1": 1.197, - "sa-east-1": 0.0, + "sa-east-1": 1.533, "us-east-1": 0.0, - "us-east-2": 1.041, - "us-gov-east-1": 1.165, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 1.205, - "us-west-2": 1.041 + "us-west-2": 0.989 }, "c5n.9xlarge": { "af-south-1": 2.739, "ap-east-1": 2.853, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 2.72, + "ap-northeast-2": 2.453, "ap-northeast-3": 2.573, "ap-south-1": 0.0, "ap-southeast-1": 2.357, - "ap-southeast-2": 2.663, + "ap-southeast-2": 2.815, "ap-southeast-3": 2.357, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 2.213, "eu-south-1": 2.447, "eu-west-1": 2.453, "eu-west-2": 2.567, "eu-west-3": 2.429, "me-south-1": 2.537, - "sa-east-1": 0.0, - "us-east-1": 2.186, + "sa-east-1": 3.113, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 2.465, - "us-gov-west-1": 2.465, + "us-gov-west-1": 2.605, "us-west-1": 2.701, - "us-west-2": 0.0 + "us-west-2": 2.186 }, "c5n.18xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, + "af-south-1": 5.352, + "ap-east-1": 5.273, "ap-northeast-1": 5.021, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 4.013, + "ap-northeast-3": 5.021, + "ap-south-1": 0.0, "ap-southeast-1": 4.589, "ap-southeast-2": 5.201, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.589, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-north-1": 4.301, + "eu-central-1": 4.553, + "eu-north-1": 0.0, "eu-south-1": 4.769, "eu-west-1": 4.517, "eu-west-2": 4.733, @@ -73805,21 +82529,22 @@ "us-east-1": 4.013, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 4.985, - "us-west-2": 0.0 + "us-gov-west-1": 4.805, + "us-west-1": 0.0, + "us-west-2": 4.013 }, "c6a.large": { "ap-northeast-1": 0.1526, "ap-south-1": 0.0, "ap-southeast-1": 0.1445, - "ap-southeast-2": 0.16619, + "ap-southeast-2": 0.0, + "ca-central-1": 0.14, "eu-central-1": 0.0, - "eu-west-1": 0.13838, - "eu-west-2": 0.0, - "sa-east-1": 0.1742, + "eu-west-1": 0.14659, + "eu-west-2": 0.15629, + "sa-east-1": 0.0, "us-east-1": 0.14045, - "us-east-2": 0.0, + "us-east-2": 0.14045, "us-west-1": 0.16124, "us-west-2": 0.14045 }, @@ -73828,36 +82553,39 @@ "ap-south-1": 0.1498, "ap-southeast-1": 0.2327, "ap-southeast-2": 0.2561, + "ca-central-1": 0.0, "eu-central-1": 0.24836, - "eu-west-1": 0.23688, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "sa-east-1": 0.2921, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-1": 0.26618, + "us-west-1": 0.2471, "us-west-2": 0.2093 }, "c6a.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 9.3698, "ap-south-1": 0.0, "ap-southeast-1": 8.5922, - "ap-southeast-2": 0.0, - "eu-central-1": 8.5058, + "ap-southeast-2": 9.7154, + "ca-central-1": 8.1602, + "eu-central-1": 0.0, "eu-west-1": 8.00468, "eu-west-2": 0.0, - "sa-east-1": 11.4434, + "sa-east-1": 0.0, "us-east-1": 7.469, "us-east-2": 7.469, "us-west-1": 0.0, - "us-west-2": 7.469 + "us-west-2": 0.0 }, "c6a.2xlarge": { - "ap-northeast-1": 0.5102, + "ap-northeast-1": 0.0, "ap-south-1": 0.312, "ap-southeast-1": 0.4778, "ap-southeast-2": 0.0, - "eu-central-1": 0.4742, - "eu-west-1": 0.48615, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.45332, "eu-west-2": 0.0, "sa-east-1": 0.5966, "us-east-1": 0.431, @@ -73867,23 +82595,25 @@ }, "c6a.4xlarge": { "ap-northeast-1": 0.8954, - "ap-south-1": 0.499, - "ap-southeast-1": 0.8306, - "ap-southeast-2": 1.00412, - "eu-central-1": 0.8234, + "ap-south-1": 0.5364, + "ap-southeast-1": 0.90116, + "ap-southeast-2": 0.9242, + "ca-central-1": 0.7946, + "eu-central-1": 0.89324, "eu-west-1": 0.78164, - "eu-west-2": 0.92492, + "eu-west-2": 0.8522, "sa-east-1": 1.16252, "us-east-1": 0.737, - "us-east-2": 0.0, + "us-east-2": 0.7982, "us-west-1": 0.8882, "us-west-2": 0.737 }, "c6a.8xlarge": { "ap-northeast-1": 1.6658, "ap-south-1": 0.9478, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.67732, "ap-southeast-2": 0.0, + "ca-central-1": 1.59812, "eu-central-1": 1.5218, "eu-west-1": 1.43828, "eu-west-2": 1.5794, @@ -73898,12 +82628,13 @@ "ap-south-1": 1.247, "ap-southeast-1": 0.0, "ap-southeast-2": 2.5226, + "ca-central-1": 2.33468, "eu-central-1": 2.2202, - "eu-west-1": 0.0, - "eu-west-2": 2.52476, + "eu-west-1": 2.29191, + "eu-west-2": 2.3066, "sa-east-1": 3.23756, "us-east-1": 1.961, - "us-east-2": 1.961, + "us-east-2": 0.0, "us-west-1": 2.4146, "us-west-2": 2.1446 }, @@ -73912,152 +82643,163 @@ "ap-south-1": 1.621, "ap-southeast-1": 3.22964, "ap-southeast-2": 3.64148, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 3.19796, "eu-west-1": 2.75156, - "eu-west-2": 3.0338, + "eu-west-2": 3.32468, "sa-east-1": 0.0, "us-east-1": 2.8178, - "us-east-2": 2.573, - "us-west-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 3.1778, "us-west-2": 2.8178 }, "c6a.24xlarge": { "ap-northeast-1": 4.7474, "ap-south-1": 2.369, "ap-southeast-1": 4.78196, - "ap-southeast-2": 4.9202, + "ap-southeast-2": 0.0, + "ca-central-1": 4.54436, "eu-central-1": 4.73444, "eu-west-1": 4.06484, - "eu-west-2": 4.4882, - "sa-east-1": 6.35012, + "eu-west-2": 0.0, + "sa-east-1": 5.7842, "us-east-1": 0.0, "us-east-2": 4.1642, "us-west-1": 5.16212, - "us-west-2": 3.797 + "us-west-2": 0.0 }, "c6a.32xlarge": { "ap-northeast-1": 6.2882, "ap-south-1": 0.0, - "ap-southeast-1": 5.7698, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 6.5186, + "ca-central-1": 6.01748, "eu-central-1": 0.0, "eu-west-1": 5.90343, - "eu-west-2": 0.0, - "sa-east-1": 0.0, + "eu-west-2": 5.9426, + "sa-east-1": 7.6706, "us-east-1": 5.5106, "us-east-2": 5.021, "us-west-1": 6.2306, - "us-west-2": 5.021 + "us-west-2": 5.5106 }, "c6a.48xlarge": { "ap-northeast-1": 0.0, "ap-south-1": 4.613, "ap-southeast-1": 8.5922, - "ap-southeast-2": 0.0, + "ap-southeast-2": 9.7154, + "ca-central-1": 0.0, "eu-central-1": 8.5058, "eu-west-1": 8.00468, - "eu-west-2": 8.8514, + "eu-west-2": 0.0, "sa-east-1": 11.4434, "us-east-1": 7.469, "us-east-2": 7.469, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 9.2834, + "us-west-2": 7.469 }, "c6g.medium": { + "af-south-1": 0.1046, "ap-east-1": 0.074, "ap-northeast-1": 0.0764, "ap-northeast-2": 0.0718, - "ap-northeast-3": 0.0993, + "ap-northeast-3": 0.0, "ap-south-1": 0.0523, "ap-south-2": 0.0776, - "ap-southeast-1": 0.0726, - "ap-southeast-2": 0.0781, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0754, "ap-southeast-3": 0.0979, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.1007, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 0.1015, "eu-north-1": 0.0675, - "eu-south-1": 0.0714, + "eu-south-1": 0.0, "eu-south-2": 0.0951, - "eu-west-1": 0.0, + "eu-west-1": 0.0698, "eu-west-2": 0.0714, - "eu-west-3": 0.0739, + "eu-west-3": 0.0715, "il-central-1": 0.0, "me-central-1": 0.0964, - "me-south-1": 0.0761, - "sa-east-1": 0.0865, + "me-south-1": 0.0, + "sa-east-1": 0.0834, "us-east-1": 0.0, "us-east-2": 0.067, "us-gov-east-1": 0.0718, - "us-gov-west-1": 0.0718, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.0759, "us-west-2": 0.067 }, "c6g.large": { + "af-south-1": 0.153, "ap-east-1": 0.1475, "ap-northeast-1": 0.0, "ap-northeast-2": 0.1333, "ap-northeast-3": 0.0, "ap-south-1": 0.1015, - "ap-south-2": 0.1015, - "ap-southeast-1": 0.1347, + "ap-south-2": 0.0989, + "ap-southeast-1": 0.1394, "ap-southeast-2": 0.1504, "ap-southeast-3": 0.1347, "ap-southeast-4": 0.1451, - "ca-central-1": 0.1352, - "eu-central-1": 0.1339, - "eu-central-2": 0.1417, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.1468, "eu-north-1": 0.0, "eu-south-1": 0.1371, - "eu-south-2": 0.1339, - "eu-west-1": 0.0, - "eu-west-2": 0.1371, + "eu-south-2": 0.1293, + "eu-west-1": 0.1293, + "eu-west-2": 0.1419, "eu-west-3": 0.0, - "il-central-1": 0.1377, - "me-central-1": 0.1416, - "me-south-1": 0.1464, - "sa-east-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.1611, "us-east-1": 0.1243, "us-east-2": 0.1243, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 0.1428, + "us-west-1": 0.1411, "us-west-2": 0.0 }, "c6g.xlarge": { + "af-south-1": 0.2496, "ap-east-1": 0.2387, "ap-northeast-1": 0.2378, - "ap-northeast-2": 0.2103, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.1415, + "ap-south-1": 0.1466, "ap-south-2": 0.1466, "ap-southeast-1": 0.2225, - "ap-southeast-2": 0.2446, - "ap-southeast-3": 0.2131, - "ap-southeast-4": 0.0, - "ca-central-1": 0.214, - "eu-central-1": 0.0, + "ap-southeast-2": 0.2339, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.2446, + "ca-central-1": 0.2051, + "ca-west-1": 0.2051, + "eu-central-1": 0.2115, "eu-central-2": 0.227, "eu-north-1": 0.0, - "eu-south-1": 0.2276, + "eu-south-1": 0.2179, "eu-south-2": 0.2114, "eu-west-1": 0.2114, - "eu-west-2": 0.2276, + "eu-west-2": 0.0, "eu-west-3": 0.2279, "il-central-1": 0.0, "me-central-1": 0.2269, "me-south-1": 0.0, - "sa-east-1": 0.2785, + "sa-east-1": 0.2659, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.1923, "us-gov-east-1": 0.2293, - "us-gov-west-1": 0.2195, + "us-gov-west-1": 0.0, "us-west-1": 0.2259, "us-west-2": 0.1923 }, "c6g.metal": { - "ap-east-1": 2.877, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 2.589, "ap-northeast-3": 2.877, @@ -74068,16 +82810,17 @@ "ap-southeast-3": 2.6338, "ap-southeast-4": 2.9666, "ca-central-1": 2.5058, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 2.6082, "eu-central-2": 2.8565, "eu-north-1": 2.461, "eu-south-1": 2.7106, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 2.717, + "eu-west-3": 0.0, "il-central-1": 2.5762, - "me-central-1": 0.0, + "me-central-1": 2.6933, "me-south-1": 0.0, "sa-east-1": 3.4786, "us-east-1": 2.301, @@ -74088,134 +82831,143 @@ "us-west-2": 2.301 }, "c6g.2xlarge": { - "ap-east-1": 0.469, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.4674, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.4514, "ap-northeast-3": 0.0, "ap-south-1": 0.3056, - "ap-south-2": 0.2954, + "ap-south-2": 0.0, "ap-southeast-1": 0.4574, "ap-southeast-2": 0.5015, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.4802, "ca-central-1": 0.4405, + "ca-west-1": 0.0, "eu-central-1": 0.454, "eu-central-2": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 0.4346, + "eu-south-1": 0.4676, "eu-south-2": 0.0, "eu-west-1": 0.4168, - "eu-west-2": 0.4676, + "eu-west-2": 0.4482, "eu-west-3": 0.0, - "il-central-1": 0.4507, + "il-central-1": 0.0, "me-central-1": 0.4663, - "me-south-1": 0.4854, + "me-south-1": 0.465, "sa-east-1": 0.5442, "us-east-1": 0.4133, - "us-east-2": 0.0, + "us-east-2": 0.4133, "us-gov-east-1": 0.0, "us-gov-west-1": 0.4514, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.4133 }, "c6g.4xlarge": { + "af-south-1": 0.8546, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.8098, "ap-northeast-2": 0.7778, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.7898, - "ap-southeast-2": 0.8354, - "ap-southeast-3": 0.7898, - "ap-southeast-4": 0.878, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.7559, "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.7442, - "eu-south-1": 0.0, + "eu-north-1": 0.709, + "eu-south-1": 0.7714, "eu-south-2": 0.7087, "eu-west-1": 0.0, - "eu-west-2": 0.7714, + "eu-west-2": 0.0, "eu-west-3": 0.8114, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 0.7671, "me-south-1": 0.0, "sa-east-1": 1.0137, "us-east-1": 0.669, "us-east-2": 0.0, - "us-gov-east-1": 0.817, + "us-gov-east-1": 0.7778, "us-gov-west-1": 0.7778, "us-west-1": 0.8034, "us-west-2": 0.7016 }, "c6g.8xlarge": { + "af-south-1": 1.6718, "ap-east-1": 1.5842, - "ap-northeast-1": 1.4946, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.357, "ap-northeast-3": 1.5826, - "ap-south-1": 0.0, + "ap-south-1": 0.8066, "ap-south-2": 0.8066, - "ap-southeast-1": 1.4547, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.631, "ap-southeast-3": 1.3794, "ap-southeast-4": 0.0, "ca-central-1": 1.3154, + "ca-west-1": 1.3868, "eu-central-1": 1.3666, - "eu-central-2": 0.0, + "eu-central-2": 1.5727, "eu-north-1": 1.3634, "eu-south-1": 0.0, "eu-south-2": 1.2924, "eu-west-1": 1.366, "eu-west-2": 0.0, "eu-west-3": 1.4978, - "il-central-1": 1.3506, + "il-central-1": 0.0, "me-central-1": 1.4901, "me-south-1": 0.0, - "sa-east-1": 1.9024, - "us-east-1": 1.2783, + "sa-east-1": 1.8018, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.4306, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.5089, "us-west-1": 1.5632, "us-west-2": 1.2783 }, "c6g.12xlarge": { - "ap-east-1": 2.3138, - "ap-northeast-1": 2.3027, + "af-south-1": 0.0, + "ap-east-1": 2.189, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.973, - "ap-northeast-3": 2.3114, + "ap-northeast-3": 0.0, "ap-south-1": 1.1474, "ap-south-2": 1.2087, - "ap-southeast-1": 2.1195, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.2562, "ap-southeast-3": 2.0066, - "ap-southeast-4": 2.2562, + "ap-southeast-4": 0.0, "ca-central-1": 1.9106, + "ca-west-1": 0.0, "eu-central-1": 2.0991, "eu-central-2": 2.1736, "eu-north-1": 0.0, - "eu-south-1": 2.1804, + "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 1.876, - "eu-west-2": 2.1806, + "eu-west-1": 0.0, + "eu-west-2": 2.0642, "eu-west-3": 2.069, "il-central-1": 2.0793, "me-central-1": 2.0512, - "me-south-1": 2.165, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.8549, - "us-gov-east-1": 0.0, + "us-gov-east-1": 2.0834, "us-gov-west-1": 2.2009, "us-west-1": 2.2823, - "us-west-2": 1.757 + "us-west-2": 0.0 }, "c6g.16xlarge": { + "af-south-1": 3.0434, "ap-east-1": 2.877, - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.8642, "ap-northeast-2": 2.589, - "ap-northeast-3": 2.877, + "ap-northeast-3": 0.0, "ap-south-1": 1.4882, "ap-south-2": 1.4882, "ap-southeast-1": 2.6338, @@ -74223,12 +82975,13 @@ "ap-southeast-3": 2.6338, "ap-southeast-4": 3.1371, "ca-central-1": 0.0, + "ca-west-1": 2.5058, "eu-central-1": 2.6082, "eu-central-2": 2.8565, - "eu-north-1": 2.461, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 2.4597, "eu-west-2": 2.7106, "eu-west-3": 2.717, "il-central-1": 2.5762, @@ -74237,148 +82990,169 @@ "sa-east-1": 3.4786, "us-east-1": 2.301, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 2.7362, "us-gov-west-1": 2.7362, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.301 }, "c6gd.medium": { "ap-northeast-1": 0.08, "ap-northeast-2": 0.0, "ap-northeast-3": 0.1083, "ap-south-1": 0.0, - "ap-southeast-1": 0.076, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0815, "ap-southeast-3": 0.104, "ca-central-1": 0.0759, - "eu-central-1": 0.0781, + "eu-central-1": 0.0755, + "eu-central-2": 0.1053, "eu-north-1": 0.0979, "eu-west-1": 0.0746, - "eu-west-2": 0.0, + "eu-west-2": 0.077, "eu-west-3": 0.0, "sa-east-1": 0.1158, - "us-east-1": 0.0694, + "us-east-1": 0.0717, "us-east-2": 0.0, - "us-west-1": 0.079, - "us-west-2": 0.0694 + "us-gov-east-1": 0.1055, + "us-gov-west-1": 0.1027, + "us-west-1": 0.0, + "us-west-2": 0.0717 }, "c6gd.large": { "ap-northeast-1": 0.1602, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.1443, "ap-northeast-3": 0.0, "ap-south-1": 0.1053, "ap-southeast-1": 0.1517, - "ap-southeast-2": 0.1573, - "ap-southeast-3": 0.1517, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.1453, - "eu-north-1": 0.1395, - "eu-west-1": 0.0, - "eu-west-2": 0.1483, - "eu-west-3": 0.1538, + "eu-central-2": 0.16, + "eu-north-1": 0.0, + "eu-west-1": 0.1435, + "eu-west-2": 0.0, + "eu-west-3": 0.1483, "sa-east-1": 0.1825, "us-east-1": 0.1331, "us-east-2": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.1377 + "us-gov-east-1": 0.1491, + "us-gov-west-1": 0.1547, + "us-west-1": 0.1581, + "us-west-2": 0.1331 }, "c6gd.xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.2641, - "ap-south-1": 0.0, + "ap-northeast-3": 0.2523, + "ap-south-1": 0.1543, "ap-southeast-1": 0.2471, "ap-southeast-2": 0.2703, - "ap-southeast-3": 0.2363, + "ap-southeast-3": 0.0, "ca-central-1": 0.2259, "eu-central-1": 0.0, - "eu-north-1": 0.2327, - "eu-west-1": 0.2412, - "eu-west-2": 0.2513, - "eu-west-3": 0.2403, + "eu-central-2": 0.0, + "eu-north-1": 0.2227, + "eu-west-1": 0.2307, + "eu-west-2": 0.2403, + "eu-west-3": 0.0, "sa-east-1": 0.3087, "us-east-1": 0.0, "us-east-2": 0.2099, + "us-gov-east-1": 0.2419, + "us-gov-west-1": 0.0, "us-west-1": 0.2599, "us-west-2": 0.2099 }, "c6gd.metal": { "ap-northeast-1": 3.261, "ap-northeast-2": 2.941, - "ap-northeast-3": 3.261, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 1.693, "ap-southeast-1": 3.005, "ap-southeast-2": 3.357, "ap-southeast-3": 3.005, "ca-central-1": 2.8386, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 2.7874, "eu-west-1": 2.9154, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 3.069, + "eu-west-3": 3.069, "sa-east-1": 3.933, "us-east-1": 0.0, "us-east-2": 2.5826, + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.0946, "us-west-1": 3.197, "us-west-2": 2.5826 }, "c6gd.2xlarge": { "ap-northeast-1": 0.517, "ap-northeast-2": 0.477, - "ap-northeast-3": 0.517, + "ap-northeast-3": 0.0, "ap-south-1": 0.321, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.485, "ca-central-1": 0.4846, "eu-central-1": 0.481, + "eu-central-2": 0.5166, "eu-north-1": 0.4778, - "eu-west-1": 0.4738, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.5151, - "sa-east-1": 0.6298, + "eu-west-3": 0.493, + "sa-east-1": 0.601, "us-east-1": 0.4322, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.5185, "us-west-1": 0.509, - "us-west-2": 0.4506 + "us-west-2": 0.0 }, "c6gd.4xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.829, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.517, - "ap-southeast-1": 0.845, + "ap-southeast-1": 0.8882, "ap-southeast-2": 0.933, "ap-southeast-3": 0.845, "ca-central-1": 0.8441, - "eu-central-1": 0.837, - "eu-north-1": 0.0, + "eu-central-1": 0.8794, + "eu-central-2": 0.9548, + "eu-north-1": 0.8305, "eu-west-1": 0.0, - "eu-west-2": 0.861, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.9052, "sa-east-1": 1.077, - "us-east-1": 0.0, + "us-east-1": 0.7763, "us-east-2": 0.0, + "us-gov-east-1": 0.8674, + "us-gov-west-1": 0.9119, "us-west-1": 0.893, - "us-west-2": 0.0 + "us-west-2": 0.7394 }, "c6gd.8xlarge": { "ap-northeast-1": 1.7874, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.693, - "ap-south-1": 0.0, + "ap-northeast-3": 1.7874, + "ap-south-1": 0.956, "ap-southeast-1": 1.6514, "ap-southeast-2": 1.741, "ap-southeast-3": 1.6514, - "ca-central-1": 0.0, + "ca-central-1": 1.4818, "eu-central-1": 1.549, + "eu-central-2": 1.6914, "eu-north-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 1.597, + "eu-west-1": 1.6039, + "eu-west-2": 0.0, "eu-west-3": 1.6853, - "sa-east-1": 2.1442, - "us-east-1": 1.3538, - "us-east-2": 0.0, + "sa-east-1": 2.029, + "us-east-1": 1.4275, + "us-east-2": 1.3538, + "us-gov-east-1": 1.6098, + "us-gov-west-1": 1.6098, "us-west-1": 1.661, "us-west-2": 0.0 }, @@ -74387,18 +83161,21 @@ "ap-northeast-2": 2.3637, "ap-northeast-3": 2.477, "ap-south-1": 1.301, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.4146, "ap-southeast-2": 2.549, - "ap-southeast-3": 2.4146, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-north-1": 2.2416, - "eu-west-1": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 2.1602, + "eu-central-1": 2.261, + "eu-central-2": 2.4746, + "eu-north-1": 0.0, + "eu-west-1": 2.3434, "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 2.981, "us-east-1": 0.0, - "us-east-2": 1.9682, + "us-east-2": 2.0788, + "us-gov-east-1": 2.3522, + "us-gov-west-1": 2.4858, "us-west-1": 2.5682, "us-west-2": 2.0788 }, @@ -74409,18 +83186,21 @@ "ap-south-1": 1.693, "ap-southeast-1": 3.005, "ap-southeast-2": 3.357, - "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ap-southeast-3": 3.005, + "ca-central-1": 2.8386, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-west-1": 2.9154, "eu-west-2": 3.069, "eu-west-3": 0.0, "sa-east-1": 3.933, - "us-east-1": 0.0, + "us-east-1": 2.5826, "us-east-2": 2.5826, + "us-gov-east-1": 3.0946, + "us-gov-west-1": 3.0946, "us-west-1": 3.197, - "us-west-2": 2.5826 + "us-west-2": 0.0 }, "c6gn.medium": { "ap-east-1": 0.0, @@ -74428,141 +83208,165 @@ "ap-northeast-2": 0.10505, "ap-northeast-3": 0.11637, "ap-south-1": 0.07858, - "ap-southeast-1": 0.08545, - "ap-southeast-2": 0.09315, - "ca-central-1": 0.0783, - "eu-central-1": 0.08523, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.1059, + "ca-central-1": 0.0, + "ca-west-1": 0.10833, + "eu-central-1": 0.0803, "eu-north-1": 0.08215, "eu-south-1": 0.0, "eu-west-1": 0.08468, "eu-west-2": 0.0, - "eu-west-3": 0.11268, + "eu-west-3": 0.10755, "il-central-1": 0.10754, "me-south-1": 0.1099, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-1": 0.085, + "us-gov-east-1": 0.1135, + "us-gov-west-1": 0.1083, + "us-west-1": 0.0904, "us-west-2": 0.0 }, "c6gn.large": { "ap-east-1": 0.18225, - "ap-northeast-1": 0.1653, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.1762, + "ap-northeast-2": 0.1538, "ap-northeast-3": 0.0, - "ap-south-1": 0.1428, - "ap-southeast-1": 0.1652, + "ap-south-1": 0.15145, + "ap-southeast-1": 0.1553, "ap-southeast-2": 0.1806, + "ap-southeast-3": 0.0, "ca-central-1": 0.16036, - "eu-central-1": 0.16476, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-north-1": 0.1493, "eu-south-1": 0.0, "eu-west-1": 0.1539, "eu-west-2": 0.1588, "eu-west-3": 0.1588, - "il-central-1": 0.0, + "il-central-1": 0.16903, "me-south-1": 0.1635, - "sa-east-1": 0.0, - "us-east-1": 0.1427, + "sa-east-1": 0.2026, + "us-east-1": 0.15134, "us-east-2": 0.0, + "us-gov-east-1": 0.1603, + "us-gov-west-1": 0.0, "us-west-1": 0.1751, "us-west-2": 0.15134 }, "c6gn.xlarge": { - "ap-east-1": 0.3082, - "ap-northeast-1": 0.2961, + "ap-east-1": 0.2853, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.2513, "ap-northeast-3": 0.0, - "ap-south-1": 0.2466, + "ap-south-1": 0.0, "ap-southeast-1": 0.2543, - "ap-southeast-2": 0.3049, - "ca-central-1": 0.2455, - "eu-central-1": 0.27322, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.26442, + "eu-central-1": 0.2535, "eu-north-1": 0.2609, - "eu-south-1": 0.2627, + "eu-south-1": 0.28334, "eu-west-1": 0.0, - "eu-west-2": 0.2613, + "eu-west-2": 0.2818, "eu-west-3": 0.0, "il-central-1": 0.28176, "me-south-1": 0.29214, - "sa-east-1": 0.3223, - "us-east-1": 0.2291, - "us-east-2": 0.24638, + "sa-east-1": 0.3489, + "us-east-1": 0.24638, + "us-east-2": 0.2291, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.2643, "us-west-1": 0.2723, "us-west-2": 0.24638 }, "c6gn.metal": { - "ca-central-1": 0.0, + "ca-central-1": 3.1522, "eu-west-3": 3.733 }, "c6gn.2xlarge": { "ap-east-1": 0.6288, - "ap-northeast-1": 0.561, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.515, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-southeast-1": 0.5606, + "ap-northeast-3": 0.60557, + "ap-south-1": 0.5056, + "ap-southeast-1": 0.521, "ap-southeast-2": 0.577, + "ap-southeast-3": 0.5218, "ca-central-1": 0.54124, - "eu-central-1": 0.5194, - "eu-north-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.55884, + "eu-north-1": 0.5342, "eu-south-1": 0.5378, - "eu-west-1": 0.5154, - "eu-west-2": 0.0, + "eu-west-1": 0.55444, + "eu-west-2": 0.535, "eu-west-3": 0.576, - "il-central-1": 0.53492, + "il-central-1": 0.0, "me-south-1": 0.59668, - "sa-east-1": 0.657, + "sa-east-1": 0.7102, "us-east-1": 0.50516, "us-east-2": 0.0, - "us-west-1": 0.557, - "us-west-2": 0.4706 + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.50516 }, "c6gn.4xlarge": { "ap-east-1": 0.0, "ap-northeast-1": 1.0842, - "ap-northeast-2": 0.905, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.8862, - "ap-southeast-1": 0.9962, + "ap-south-1": 0.817, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.029, + "ap-southeast-3": 0.9186, "ca-central-1": 0.0, - "eu-central-1": 0.9138, + "ca-west-1": 0.8818, + "eu-central-1": 0.99268, "eu-north-1": 0.869, - "eu-south-1": 0.0, - "eu-west-1": 0.98388, - "eu-west-2": 0.945, + "eu-south-1": 1.03316, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 1.02682, "me-south-1": 1.06836, - "sa-east-1": 1.2954, + "sa-east-1": 1.189, "us-east-1": 0.0, "us-east-2": 0.88532, + "us-gov-east-1": 1.0402, + "us-gov-west-1": 1.0402, "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gn.8xlarge": { "ap-east-1": 1.957, - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.685, - "ap-northeast-3": 2.04727, - "ap-south-1": 0.0, - "ap-southeast-1": 1.709, + "ap-northeast-1": 2.0434, + "ap-northeast-2": 1.841, + "ap-northeast-3": 0.0, + "ap-south-1": 1.6474, + "ap-southeast-1": 1.8674, "ap-southeast-2": 0.0, - "ca-central-1": 1.6386, + "ap-southeast-3": 1.7122, + "ca-central-1": 1.78996, + "ca-west-1": 0.0, "eu-central-1": 1.7026, "eu-north-1": 1.7618, - "eu-south-1": 0.0, + "eu-south-1": 1.94132, "eu-west-1": 1.84276, "eu-west-2": 1.765, - "eu-west-3": 1.765, + "eu-west-3": 1.929, "il-central-1": 0.0, "me-south-1": 2.01172, "sa-east-1": 0.0, "us-east-1": 1.64564, "us-east-2": 0.0, + "us-gov-east-1": 1.789, + "us-gov-west-1": 1.789, "us-west-1": 2.0258, - "us-west-2": 1.64564 + "us-west-2": 0.0 }, "c6gn.12xlarge": { "ap-east-1": 3.1478, @@ -74572,68 +83376,77 @@ "ap-south-1": 2.4086, "ap-southeast-1": 2.501, "ap-southeast-2": 2.837, - "ca-central-1": 2.3954, - "eu-central-1": 2.72804, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 2.4914, "eu-north-1": 2.357, - "eu-south-1": 2.84948, + "eu-south-1": 2.6018, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 2.585, "il-central-1": 2.83047, "me-south-1": 0.0, - "sa-east-1": 3.6362, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 2.40596, - "us-west-1": 2.717, + "us-east-2": 2.1986, + "us-gov-east-1": 2.8706, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c6gn.16xlarge": { "ap-east-1": 4.1554, "ap-northeast-1": 3.613, "ap-northeast-2": 3.245, - "ap-northeast-3": 3.96954, - "ap-south-1": 2.893, + "ap-northeast-3": 3.62004, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.741, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, + "ca-west-1": 3.1522, "eu-central-1": 0.0, "eu-north-1": 3.101, - "eu-south-1": 3.75764, + "eu-south-1": 0.0, "eu-west-1": 3.2482, "eu-west-2": 3.405, "eu-west-3": 0.0, "il-central-1": 0.0, "me-south-1": 3.5554, - "sa-east-1": 4.8066, + "sa-east-1": 4.381, "us-east-1": 3.16628, "us-east-2": 3.16628, + "us-gov-east-1": 0.0, + "us-gov-west-1": 3.453, "us-west-1": 3.581, "us-west-2": 2.8898 }, "c6i.large": { "af-south-1": 0.1817, - "ap-east-1": 0.0, + "ap-east-1": 0.1643, "ap-northeast-1": 0.174, - "ap-northeast-2": 0.1619, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.174, "ap-south-1": 0.0, "ap-south-2": 0.1413, - "ap-southeast-1": 0.1543, - "ap-southeast-2": 0.1673, - "ca-central-1": 0.1493, - "eu-central-1": 0.163, + "ap-southeast-1": 0.1641, + "ap-southeast-2": 0.1784, + "ca-central-1": 0.0, + "ca-west-1": 0.1493, + "eu-central-1": 0.0, "eu-north-1": 0.1473, - "eu-south-1": 0.0, + "eu-south-1": 0.1674, "eu-west-1": 0.0, "eu-west-2": 0.1573, "eu-west-3": 0.1573, "il-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.1873, + "sa-east-1": 0.2004, "us-east-1": 0.0, - "us-east-2": 0.1498, - "us-gov-east-1": 0.1583, - "us-gov-west-1": 0.1583, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.1685, "us-west-1": 0.1623, "us-west-2": 0.1413 }, @@ -74641,13 +83454,14 @@ "af-south-1": 0.3071, "ap-east-1": 0.2723, "ap-northeast-1": 0.2917, - "ap-northeast-2": 0.2675, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.2263, "ap-south-2": 0.0, "ap-southeast-1": 0.2719, "ap-southeast-2": 0.0, "ca-central-1": 0.2423, + "ca-west-1": 0.2423, "eu-central-1": 0.2503, "eu-north-1": 0.2383, "eu-south-1": 0.2583, @@ -74657,12 +83471,12 @@ "il-central-1": 0.26697, "me-south-1": 0.2675, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.2263, "us-east-2": 0.2263, - "us-gov-east-1": 0.2603, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.2433 + "us-west-2": 0.0 }, "c6i.metal": { "af-south-1": 7.421, @@ -74670,11 +83484,12 @@ "ap-northeast-1": 6.973, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 5.565, + "ap-south-1": 0.0, "ap-south-2": 5.565, "ap-southeast-1": 6.397, "ap-southeast-2": 0.0, "ca-central-1": 6.077, + "ca-west-1": 6.077, "eu-central-1": 6.333, "eu-north-1": 5.949, "eu-south-1": 6.589, @@ -74688,87 +83503,90 @@ "us-east-2": 5.565, "us-gov-east-1": 0.0, "us-gov-west-1": 6.653, - "us-west-1": 6.909, - "us-west-2": 5.565 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "c6i.2xlarge": { "af-south-1": 0.0, "ap-east-1": 0.557, "ap-northeast-1": 0.553, - "ap-northeast-2": 0.5474, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.553, "ap-south-1": 0.465, "ap-south-2": 0.0, - "ap-southeast-1": 0.5562, - "ap-southeast-2": 0.569, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 0.5342, - "eu-central-1": 0.5518, - "eu-north-1": 0.489, + "ca-west-1": 0.5342, + "eu-central-1": 0.513, + "eu-north-1": 0.5254, "eu-south-1": 0.529, "eu-west-1": 0.4898, - "eu-west-2": 0.0, - "eu-west-3": 0.5694, - "il-central-1": 0.50804, - "me-south-1": 0.58964, - "sa-east-1": 0.7014, + "eu-west-2": 0.529, + "eu-west-3": 0.0, + "il-central-1": 0.54634, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.465, - "us-east-2": 0.465, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.533, "us-west-1": 0.549, "us-west-2": 0.465 }, "c6i.4xlarge": { - "af-south-1": 1.037, - "ap-east-1": 0.0, + "af-south-1": 1.1282, + "ap-east-1": 0.989, "ap-northeast-1": 1.0666, "ap-northeast-2": 0.893, "ap-northeast-3": 1.0666, "ap-south-1": 0.805, "ap-south-2": 0.873, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.9874, "ap-southeast-2": 1.013, - "ca-central-1": 0.869, + "ca-central-1": 0.9434, + "ca-west-1": 0.9434, "eu-central-1": 0.0, "eu-north-1": 0.853, - "eu-south-1": 0.933, - "eu-west-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 0.92756, "eu-west-2": 0.0, "eu-west-3": 0.933, "il-central-1": 0.96769, "me-south-1": 0.9698, "sa-east-1": 1.2778, "us-east-1": 0.0, - "us-east-2": 0.805, - "us-gov-east-1": 0.941, - "us-gov-west-1": 0.941, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 1.0578, "us-west-2": 0.873 }, "c6i.8xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 1.837, - "ap-northeast-2": 1.661, + "af-south-1": 1.949, + "ap-east-1": 1.853, + "ap-northeast-1": 2.0082, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.837, "ap-south-1": 0.0, "ap-south-2": 1.621, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.693, "ap-southeast-2": 1.901, - "ca-central-1": 1.7618, - "eu-central-1": 1.8322, - "eu-north-1": 0.0, + "ca-central-1": 1.613, + "ca-west-1": 1.7618, + "eu-central-1": 0.0, + "eu-north-1": 1.581, "eu-south-1": 1.741, "eu-west-1": 1.73012, "eu-west-2": 1.741, "eu-west-3": 1.741, "il-central-1": 0.0, "me-south-1": 1.8146, - "sa-east-1": 2.4306, - "us-east-1": 1.485, - "us-east-2": 1.485, - "us-gov-east-1": 0.0, - "us-gov-west-1": 1.757, + "sa-east-1": 2.221, + "us-east-1": 0.0, + "us-east-2": 1.621, + "us-gov-east-1": 1.757, + "us-gov-west-1": 0.0, "us-west-1": 1.9906, "us-west-2": 0.0 }, @@ -74777,50 +83595,52 @@ "ap-east-1": 2.9762, "ap-northeast-1": 2.9498, "ap-northeast-2": 2.429, - "ap-northeast-3": 2.693, + "ap-northeast-3": 0.0, "ap-south-1": 2.165, "ap-south-2": 0.0, - "ap-southeast-1": 2.477, - "ap-southeast-2": 3.0554, - "ca-central-1": 2.357, - "eu-central-1": 0.0, - "eu-north-1": 2.5274, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 2.5802, + "eu-central-1": 2.6858, + "eu-north-1": 2.309, "eu-south-1": 2.549, - "eu-west-1": 2.53268, + "eu-west-1": 2.3138, "eu-west-2": 2.549, - "eu-west-3": 2.549, + "eu-west-3": 0.0, "il-central-1": 2.42324, - "me-south-1": 2.91284, - "sa-east-1": 0.0, + "me-south-1": 2.6594, + "sa-east-1": 3.5834, "us-east-1": 2.369, - "us-east-2": 2.369, + "us-east-2": 2.165, "us-gov-east-1": 2.8178, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.573, "us-west-1": 2.669, - "us-west-2": 2.165 + "us-west-2": 2.369 }, "c6i.16xlarge": { "af-south-1": 4.1378, "ap-east-1": 3.581, - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.8914, "ap-northeast-2": 3.197, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.549, "ap-south-1": 2.845, "ap-south-2": 2.845, "ap-southeast-1": 3.261, - "ap-southeast-2": 0.0, + "ap-southeast-2": 4.0322, "ca-central-1": 3.101, - "eu-central-1": 3.229, + "ca-west-1": 3.101, + "eu-central-1": 0.0, "eu-north-1": 3.037, - "eu-south-1": 3.6802, + "eu-south-1": 0.0, "eu-west-1": 3.33524, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 3.49575, + "il-central-1": 3.18932, "me-south-1": 3.84212, "sa-east-1": 4.7362, - "us-east-1": 0.0, - "us-east-2": 3.117, + "us-east-1": 3.117, + "us-east-2": 2.845, "us-gov-east-1": 3.389, "us-gov-west-1": 0.0, "us-west-1": 3.8562, @@ -74830,33 +83650,34 @@ "af-south-1": 0.0, "ap-east-1": 5.309, "ap-northeast-1": 5.7746, - "ap-northeast-2": 4.733, + "ap-northeast-2": 0.0, "ap-northeast-3": 5.7746, - "ap-south-1": 4.205, + "ap-south-1": 0.0, "ap-south-2": 4.205, "ap-southeast-1": 0.0, "ap-southeast-2": 5.9858, "ca-central-1": 5.0354, + "ca-west-1": 4.589, "eu-central-1": 5.2466, - "eu-north-1": 4.9298, + "eu-north-1": 4.493, "eu-south-1": 5.4578, "eu-west-1": 4.94036, - "eu-west-2": 4.973, + "eu-west-2": 0.0, "eu-west-3": 4.973, - "il-central-1": 4.72148, - "me-south-1": 0.0, + "il-central-1": 5.18113, + "me-south-1": 5.70068, "sa-east-1": 7.0418, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 5.021, "us-gov-west-1": 0.0, "us-west-1": 5.213, - "us-west-2": 4.613 + "us-west-2": 0.0 }, "c6i.32xlarge": { "af-south-1": 0.0, "ap-east-1": 7.037, - "ap-northeast-1": 6.973, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 6.973, "ap-south-1": 5.565, @@ -74864,126 +83685,167 @@ "ap-southeast-1": 6.397, "ap-southeast-2": 7.229, "ca-central-1": 6.077, - "eu-central-1": 0.0, - "eu-north-1": 5.949, - "eu-south-1": 0.0, - "eu-west-1": 5.9618, - "eu-west-2": 6.589, + "ca-west-1": 6.077, + "eu-central-1": 6.333, + "eu-north-1": 0.0, + "eu-south-1": 6.589, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 6.589, "il-central-1": 6.25364, "me-south-1": 0.0, "sa-east-1": 8.509, "us-east-1": 0.0, - "us-east-2": 5.565, - "us-gov-east-1": 6.653, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 6.653, "us-west-1": 6.909, "us-west-2": 5.565 }, "c6id.large": { "ap-northeast-1": 0.19721, + "ap-northeast-2": 0.1718, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.20183, - "eu-central-1": 0.18451, + "ca-west-1": 0.17873, + "eu-central-1": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.1571, "us-gov-west-1": 0.0, - "us-west-2": 0.1571 + "us-west-2": 0.0 }, "c6id.xlarge": { "ap-northeast-1": 0.3125, + "ap-northeast-2": 0.3104, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.2894, - "eu-west-1": 0.0, + "ca-west-1": 0.30116, + "eu-central-1": 0.0, + "eu-west-1": 0.30809, + "eu-west-2": 0.2978, "il-central-1": 0.32067, - "us-east-1": 0.27806, - "us-east-2": 0.27806, + "us-east-1": 0.2579, + "us-east-2": 0.2579, "us-gov-west-1": 0.2999, "us-west-2": 0.0 }, "c6id.metal": { "ap-northeast-1": 8.3234, + "ap-northeast-2": 0.0, + "ap-southeast-1": 7.6514, "ap-southeast-2": 0.0, + "ca-west-1": 7.2482, "eu-central-1": 7.5842, - "eu-west-1": 0.0, + "eu-west-1": 7.4498, + "eu-west-2": 0.0, "il-central-1": 7.81588, - "us-east-1": 6.5762, + "us-east-1": 0.0, "us-east-2": 6.5762, - "us-gov-west-1": 0.0, + "us-gov-west-1": 7.9202, "us-west-2": 6.5762 }, "c6id.2xlarge": { - "ap-northeast-1": 0.68864, - "ap-southeast-2": 0.6542, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.6332, + "ap-southeast-1": 0.5954, + "ap-southeast-2": 0.0, + "ca-west-1": 0.61472, "eu-central-1": 0.5912, "eu-west-1": 0.0, - "il-central-1": 0.60568, + "eu-west-2": 0.0, + "il-central-1": 0.0, "us-east-1": 0.56852, "us-east-2": 0.0, - "us-gov-west-1": 0.6122, - "us-west-2": 0.5282 + "us-gov-west-1": 0.66092, + "us-west-2": 0.56852 }, "c6id.4xlarge": { "ap-northeast-1": 1.25228, + "ap-northeast-2": 1.1414, + "ap-southeast-1": 1.0658, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 1.0154, + "eu-central-1": 1.15064, "eu-west-1": 1.13216, - "il-central-1": 1.08636, + "eu-west-2": 1.091, + "il-central-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-west-1": 1.19684, - "us-west-2": 0.9314 + "us-east-2": 0.9314, + "us-gov-west-1": 1.0994, + "us-west-2": 0.0 }, "c6id.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.1746, + "ap-northeast-2": 2.1578, + "ap-southeast-1": 2.19476, "ap-southeast-2": 2.2418, + "ca-west-1": 2.08388, "eu-central-1": 1.9898, - "eu-west-1": 2.13932, - "il-central-1": 2.04772, - "us-east-1": 1.89908, + "eu-west-1": 1.9562, + "eu-west-2": 2.057, + "il-central-1": 0.0, + "us-east-1": 1.7378, "us-east-2": 1.7378, "us-gov-west-1": 2.0738, "us-west-2": 1.89908 }, "c6id.12xlarge": { "ap-northeast-1": 3.50684, - "ap-southeast-2": 3.61772, + "ap-northeast-2": 0.0, + "ap-southeast-1": 2.9474, + "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 3.14648, + "eu-west-2": 0.0, "il-central-1": 3.00908, "us-east-1": 0.0, "us-east-2": 2.5442, "us-gov-west-1": 3.0482, - "us-west-2": 2.78612 + "us-west-2": 2.5442 }, "c6id.16xlarge": { "ap-northeast-1": 4.63412, - "ap-southeast-2": 4.3586, + "ap-northeast-2": 3.821, + "ap-southeast-1": 4.26452, + "ap-southeast-2": 4.78196, + "ca-west-1": 3.6866, "eu-central-1": 3.8546, - "eu-west-1": 3.7874, - "il-central-1": 0.0, + "eu-west-1": 4.15364, + "eu-west-2": 0.0, + "il-central-1": 3.97044, "us-east-1": 3.3506, "us-east-2": 3.3506, - "us-gov-west-1": 4.0226, - "us-west-2": 3.3506 + "us-gov-west-1": 4.41236, + "us-west-2": 0.0 }, "c6id.24xlarge": { "ap-northeast-1": 6.2738, + "ap-northeast-2": 6.2234, + "ap-southeast-1": 5.7698, "ap-southeast-2": 7.11044, + "ca-west-1": 6.00164, "eu-central-1": 0.0, "eu-west-1": 6.16796, + "eu-west-2": 5.921, "il-central-1": 6.46998, "us-east-1": 4.9634, "us-east-2": 4.9634, - "us-gov-west-1": 6.55604, + "us-gov-west-1": 5.9714, "us-west-2": 0.0 }, "c6id.32xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 7.517, + "ap-southeast-1": 0.0, "ap-southeast-2": 8.5922, + "ca-west-1": 7.2482, "eu-central-1": 0.0, "eu-west-1": 0.0, + "eu-west-2": 7.853, "il-central-1": 7.81588, "us-east-1": 0.0, "us-east-2": 6.5762, @@ -74991,431 +83853,1066 @@ "us-west-2": 6.5762 }, "c6in.large": { - "af-south-1": 0.20876, + "af-south-1": 0.22401, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1844, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 0.1696, + "ap-southeast-1": 0.19952, "ap-southeast-2": 0.21916, "ap-southeast-3": 0.19952, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.19837, "eu-central-2": 0.1986, "eu-north-1": 0.19028, - "eu-south-1": 0.19175, + "eu-south-1": 0.2053, + "eu-south-2": 0.1971, "eu-west-1": 0.19721, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-2": 0.20414, + "eu-west-3": 0.20414, + "il-central-1": 0.19081, "me-central-1": 0.0, "me-south-1": 0.197, - "sa-east-1": 0.0, + "sa-east-1": 0.24803, "us-east-1": 0.18104, "us-east-2": 0.0, "us-gov-east-1": 0.1928, - "us-gov-west-1": 0.20645, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.1697 }, "c6in.xlarge": { "af-south-1": 0.39171, + "ap-east-1": 0.38663, "ap-northeast-1": 0.37046, + "ap-northeast-2": 0.3125, "ap-south-1": 0.2831, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, - "ca-central-1": 0.32888, - "eu-central-1": 0.0, - "eu-central-2": 0.3409, - "eu-north-1": 0.32426, + "ap-southeast-3": 0.34274, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.34043, + "eu-central-2": 0.0, + "eu-north-1": 0.2999, "eu-south-1": 0.35429, - "eu-west-1": 0.33812, + "eu-south-2": 0.3379, + "eu-west-1": 0.3125, "eu-west-2": 0.0, - "eu-west-3": 0.35198, + "eu-west-3": 0.0, + "il-central-1": 0.35222, "me-central-1": 0.0, "me-south-1": 0.36584, - "sa-east-1": 0.0, + "sa-east-1": 0.43976, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.3566, - "us-west-2": 0.0 + "us-east-2": 0.2831, + "us-gov-east-1": 0.3566, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.2831 }, "c6in.metal": { "af-south-1": 9.88244, + "ap-east-1": 9.7346, "ap-northeast-1": 0.0, - "ap-south-1": 7.3826, + "ap-northeast-2": 8.3234, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 8.4578, "ap-southeast-2": 9.6002, "ap-southeast-3": 8.4578, + "ap-southeast-4": 9.597, "ca-central-1": 8.0546, - "eu-central-1": 0.0, + "eu-central-1": 8.3906, "eu-central-2": 9.2322, "eu-north-1": 0.0, "eu-south-1": 8.7938, + "eu-south-2": 0.0, "eu-west-1": 8.3234, "eu-west-2": 8.7266, - "eu-west-3": 8.7266, + "eu-west-3": 0.0, + "il-central-1": 8.73364, "me-central-1": 9.1362, "me-south-1": 9.1298, - "sa-east-1": 0.0, + "sa-east-1": 11.2802, "us-east-1": 7.3826, "us-east-2": 7.3826, - "us-gov-east-1": 8.861, + "us-gov-east-1": 0.0, "us-gov-west-1": 8.861, + "us-west-1": 0.0, "us-west-2": 7.3826 }, "c6in.2xlarge": { "af-south-1": 0.79582, + "ap-east-1": 0.7256, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 0.62396, + "ap-south-2": 0.62352, "ap-southeast-1": 0.6458, - "ap-southeast-2": 0.77642, + "ap-southeast-2": 0.7172, "ap-southeast-3": 0.6458, + "ap-southeast-4": 0.7762, "ca-central-1": 0.0, - "eu-central-1": 0.69326, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.66092, "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.68864, "eu-west-2": 0.0, "eu-west-3": 0.0, + "il-central-1": 0.66304, "me-central-1": 0.6882, - "me-south-1": 0.74408, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.5786, - "us-east-2": 0.5786, + "us-east-2": 0.62396, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.671, - "us-west-2": 0.0 + "us-gov-west-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.62396 }, "c6in.4xlarge": { - "af-south-1": 1.46665, + "af-south-1": 0.0, + "ap-east-1": 1.44632, "ap-northeast-1": 1.38164, - "ap-south-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.0322, + "ap-south-2": 1.12204, "ap-southeast-1": 1.27076, "ap-southeast-2": 1.42784, "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 1.1162, "eu-central-1": 1.1582, "eu-central-2": 1.2634, - "eu-north-1": 0.0, + "eu-north-1": 1.0994, "eu-south-1": 0.0, + "eu-south-2": 1.2514, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 1.2002, "eu-west-3": 1.2002, + "il-central-1": 1.30869, "me-central-1": 1.2514, "me-south-1": 1.36316, "sa-east-1": 1.5194, - "us-east-1": 1.12292, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 1.0322, "us-gov-east-1": 1.3262, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 1.259, + "us-west-2": 1.12292 }, "c6in.8xlarge": { - "af-south-1": 0.0, + "af-south-1": 2.56436, + "ap-east-1": 2.5274, "ap-northeast-1": 0.0, + "ap-northeast-2": 2.1746, "ap-south-1": 1.9394, + "ap-south-2": 2.11908, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.4938, - "ap-southeast-3": 2.2082, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.41652, + "ap-southeast-4": 2.493, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 2.1914, "eu-central-2": 2.4018, "eu-north-1": 0.0, "eu-south-1": 2.2922, + "eu-south-2": 2.173, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 2.49044, + "eu-west-3": 2.2754, + "il-central-1": 2.49238, "me-central-1": 0.0, "me-south-1": 2.60132, - "sa-east-1": 0.0, + "sa-east-1": 2.9138, "us-east-1": 2.12084, "us-east-2": 0.0, "us-gov-east-1": 2.5274, "us-gov-west-1": 2.5274, - "us-west-2": 0.0 + "us-west-1": 2.393, + "us-west-2": 2.12084 }, "c6in.12xlarge": { "af-south-1": 3.78404, + "ap-east-1": 3.7286, "ap-northeast-1": 3.89492, - "ap-south-1": 2.8466, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 3.11876, + "ap-south-2": 3.11612, + "ap-southeast-1": 3.2498, "ap-southeast-2": 0.0, "ap-southeast-3": 3.2498, - "ca-central-1": 3.39596, - "eu-central-1": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 3.2246, "eu-central-2": 3.5402, "eu-north-1": 3.0482, "eu-south-1": 3.3758, - "eu-west-1": 3.50684, - "eu-west-2": 3.3506, + "eu-south-2": 3.5042, + "eu-west-1": 3.1994, + "eu-west-2": 3.67316, "eu-west-3": 0.0, + "il-central-1": 3.67606, "me-central-1": 3.5042, - "me-south-1": 3.5018, - "sa-east-1": 4.72652, + "me-south-1": 3.83948, + "sa-east-1": 4.3082, "us-east-1": 3.11876, - "us-east-2": 0.0, - "us-gov-east-1": 3.401, + "us-east-2": 2.8466, + "us-gov-east-1": 3.7286, "us-gov-west-1": 3.7286, + "us-west-1": 3.527, "us-west-2": 0.0 }, "c6in.16xlarge": { - "af-south-1": 0.0, - "ap-northeast-1": 4.6946, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 5.33636, + "af-south-1": 5.00372, + "ap-east-1": 4.9298, + "ap-northeast-1": 5.15156, + "ap-northeast-2": 0.0, + "ap-south-1": 3.7538, + "ap-south-2": 3.7506, + "ap-southeast-1": 4.70804, + "ap-southeast-2": 4.8626, "ap-southeast-3": 4.2914, - "ca-central-1": 4.48628, - "eu-central-1": 4.2578, - "eu-central-2": 4.6786, + "ap-southeast-4": 4.861, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 4.41236, "eu-south-1": 4.89284, + "eu-south-2": 4.221, "eu-west-1": 4.63412, - "eu-west-2": 4.4258, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "me-central-1": 5.08116, + "il-central-1": 4.85975, + "me-central-1": 4.6306, "me-south-1": 4.6274, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 3.7538, - "us-gov-east-1": 4.9298, + "us-east-1": 4.11668, + "us-east-2": 4.11668, + "us-gov-east-1": 4.493, "us-gov-west-1": 0.0, + "us-west-1": 5.1146, "us-west-2": 0.0 }, "c6in.24xlarge": { - "af-south-1": 7.44308, + "af-south-1": 0.0, + "ap-east-1": 7.3322, "ap-northeast-1": 6.9794, - "ap-south-1": 5.5682, + "ap-northeast-2": 6.88868, + "ap-south-1": 0.0, + "ap-south-2": 5.5634, "ap-southeast-1": 0.0, - "ap-southeast-2": 7.94204, + "ap-southeast-2": 0.0, "ap-southeast-3": 6.3746, + "ap-southeast-4": 7.9394, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 6.9554, "eu-north-1": 0.0, "eu-south-1": 0.0, + "eu-south-2": 6.269, "eu-west-1": 0.0, "eu-west-2": 7.22132, "eu-west-3": 7.22132, - "me-central-1": 7.55924, + "il-central-1": 0.0, + "me-central-1": 0.0, "me-south-1": 7.55396, "sa-east-1": 8.4914, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 6.677, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 7.6094, + "us-west-2": 6.11252 }, "c6in.32xlarge": { - "af-south-1": 0.0, + "af-south-1": 9.88244, + "ap-east-1": 0.0, "ap-northeast-1": 9.2642, - "ap-south-1": 7.3826, - "ap-southeast-1": 8.4578, - "ap-southeast-2": 9.6002, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 7.3762, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ap-southeast-3": 8.4578, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, "eu-central-1": 8.3906, - "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-central-2": 9.2322, + "eu-north-1": 7.9202, "eu-south-1": 8.7938, - "eu-west-1": 8.3234, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "eu-west-2": 8.7266, - "eu-west-3": 0.0, + "eu-west-3": 8.7266, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 9.1298, "sa-east-1": 11.2802, - "us-east-1": 0.0, + "us-east-1": 7.3826, "us-east-2": 7.3826, "us-gov-east-1": 0.0, "us-gov-west-1": 8.861, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7a.medium": { + "ap-northeast-1": 0.12736, + "eu-central-1": 0.11487, + "eu-north-1": 0.0, + "eu-south-2": 0.11426, + "eu-west-1": 0.0, + "us-east-1": 0.10762, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "c7a.large": { + "ap-northeast-1": 0.19842, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.17743, + "us-east-1": 0.0, + "us-east-2": 0.15894, + "us-west-2": 0.0 + }, + "c7a.xlarge": { + "ap-northeast-1": 0.34054, + "eu-central-1": 0.29056, + "eu-north-1": 0.0, + "eu-south-2": 0.28814, + "eu-west-1": 0.27654, + "us-east-1": 0.28211, + "us-east-2": 0.26158, + "us-west-2": 0.0 + }, + "c7a.metal-48xl": { + "ap-northeast-1": 12.5282, + "eu-central-1": 11.36948, + "eu-north-1": 10.67348, + "eu-south-2": 0.0, + "eu-west-1": 10.69652, + "us-east-1": 0.0, + "us-east-2": 9.97844, + "us-west-2": 9.97844 + }, + "c7a.2xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.58868, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.53556 + }, + "c7a.4xlarge": { + "ap-northeast-1": 1.1586, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 1.1451, + "eu-west-1": 1.09406, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 1.02823 + }, + "c7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 1.99908, + "eu-north-1": 2.05889, + "eu-south-2": 2.16519, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 1.93146 + }, + "c7a.12xlarge": { + "ap-northeast-1": 3.2258, + "eu-central-1": 2.93612, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 2.8347, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "c7a.16xlarge": { + "ap-northeast-1": 4.67284, + "eu-central-1": 0.0, + "eu-north-1": 3.64116, + "eu-south-2": 3.83444, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 3.40948, + "us-west-2": 3.73793 + }, + "c7a.24xlarge": { + "ap-northeast-1": 6.94676, + "eu-central-1": 0.0, + "eu-north-1": 5.39924, + "eu-south-2": 0.0, + "eu-west-1": 5.93934, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "c7a.32xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 7.62132, + "eu-north-1": 7.15732, + "eu-south-2": 0.0, + "eu-west-1": 7.17268, + "us-east-1": 6.69396, + "us-east-2": 7.35086, + "us-west-2": 7.35086 + }, + "c7a.48xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 11.36948, + "eu-north-1": 10.67348, + "eu-south-2": 11.25332, + "eu-west-1": 10.69652, + "us-east-1": 9.97844, + "us-east-2": 9.97844, "us-west-2": 0.0 }, "c7g.medium": { "ap-northeast-1": 0.1018, + "ap-northeast-2": 0.0971, + "ap-south-1": 0.0, + "ap-south-2": 0.0808, "ap-southeast-1": 0.1006, "ap-southeast-2": 0.1064, + "ca-central-1": 0.0, "eu-central-1": 0.0975, - "eu-west-1": 0.0975, + "eu-north-1": 0.095, + "eu-south-2": 0.0975, + "eu-west-1": 0.0, + "eu-west-2": 0.1019, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-2": 0.0695 + "us-east-2": 0.0924, + "us-west-1": 0.1014, + "us-west-2": 0.0 }, "c7g.large": { "ap-northeast-1": 0.1473, + "ap-northeast-2": 0.143, + "ap-south-1": 0.1054, + "ap-south-2": 0.1085, "ap-southeast-1": 0.1449, - "ap-southeast-2": 0.1507, + "ap-southeast-2": 0.1566, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 0.1337, + "eu-south-2": 0.1338, "eu-west-1": 0.1338, - "us-east-1": 0.1288, + "eu-west-2": 0.1422, + "us-east-1": 0.1333, "us-east-2": 0.1286, + "us-west-1": 0.1521, "us-west-2": 0.1288 }, "c7g.xlarge": { "ap-northeast-1": 0.2496, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.2316, - "eu-west-1": 0.2113, - "us-east-1": 0.0, + "ap-northeast-2": 0.2298, + "ap-south-1": 0.0, + "ap-south-2": 0.1545, + "ap-southeast-1": 0.2229, + "ap-southeast-2": 0.2569, + "ca-central-1": 0.2244, + "eu-central-1": 0.2212, + "eu-north-1": 0.0, + "eu-south-2": 0.2211, + "eu-west-1": 0.0, + "eu-west-2": 0.2388, + "us-east-1": 0.2104, "us-east-2": 0.2099, + "us-west-1": 0.2365, "us-west-2": 0.2013 }, "c7g.metal": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.6956, + "ap-south-2": 0.0, "ap-southeast-1": 2.7906, - "ap-southeast-2": 3.1445, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 2.7634, + "eu-north-1": 2.6005, + "eu-south-2": 0.0, "eu-west-1": 2.6056, + "eu-west-2": 0.0, "us-east-1": 2.445, - "us-east-2": 2.4373, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 2.445 }, "c7g.2xlarge": { "ap-northeast-1": 0.5117, + "ap-northeast-2": 0.0, + "ap-south-1": 0.3213, + "ap-south-2": 0.3337, "ap-southeast-1": 0.4582, "ap-southeast-2": 0.5262, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.4351, + "eu-north-1": 0.0, + "eu-south-2": 0.435, + "eu-west-1": 0.4546, + "eu-west-2": 0.0, "us-east-1": 0.415, - "us-east-2": 0.414, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.415 }, "c7g.4xlarge": { "ap-northeast-1": 0.8984, - "ap-southeast-1": 0.8335, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.5176, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.9273, + "ca-central-1": 0.7975, "eu-central-1": 0.826, - "eu-west-1": 0.7843, + "eu-north-1": 0.7439, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.8119, "us-east-1": 0.7414, "us-east-2": 0.7031, - "us-west-2": 0.7414 + "us-west-1": 0.8911, + "us-west-2": 0.705 }, "c7g.8xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.6348, + "ap-northeast-2": 1.4306, + "ap-south-1": 0.0, + "ap-south-2": 0.9103, + "ap-southeast-1": 1.542, + "ap-southeast-2": 1.7297, + "ca-central-1": 1.39, "eu-central-1": 1.527, + "eu-north-1": 1.4407, + "eu-south-2": 1.4431, "eu-west-1": 1.4435, - "us-east-1": 1.3578, + "eu-west-2": 1.4988, + "us-east-1": 0.0, "us-east-2": 1.2812, + "us-west-1": 1.6573, "us-west-2": 0.0 }, "c7g.12xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.308, + "ap-northeast-2": 2.0834, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 2.532, + "ap-southeast-2": 2.3896, + "ca-central-1": 0.0, "eu-central-1": 2.1038, - "eu-west-1": 2.1028, + "eu-north-1": 1.9816, + "eu-south-2": 2.1021, + "eu-west-1": 0.0, + "eu-west-2": 2.3152, "us-east-1": 0.0, "us-east-2": 1.8592, + "us-west-1": 0.0, "us-west-2": 0.0 }, "c7g.16xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 2.7906, + "ap-northeast-1": 3.0357, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 1.6956, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.1445, + "ca-central-1": 0.0, "eu-central-1": 2.7634, + "eu-north-1": 2.6005, + "eu-south-2": 0.0, "eu-west-1": 2.6056, + "eu-west-2": 2.8725, "us-east-1": 2.445, - "us-east-2": 0.0, + "us-east-2": 2.4373, + "us-west-1": 3.0082, "us-west-2": 2.445 }, "c7gd.medium": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0868, + "ap-southeast-1": 0.1124, + "ap-southeast-2": 0.1158, + "eu-central-1": 0.1088, + "eu-north-1": 0.1084, + "eu-south-2": 0.1109, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.1017, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.113, + "us-west-2": 0.1044 }, "c7gd.large": { - "eu-west-1": 0.1593, + "ap-northeast-1": 0.0, + "ap-south-1": 0.1139, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.1825, + "eu-central-1": 0.0, + "eu-north-1": 0.1546, + "eu-south-2": 0.1593, + "eu-west-1": 0.1655, "us-east-1": 0.147, "us-east-2": 0.147, + "us-west-1": 0.1765, "us-west-2": 0.0 }, "c7gd.xlarge": { - "eu-west-1": 0.2623, - "us-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.1715, + "ap-southeast-1": 0.2807, + "ap-southeast-2": 0.2945, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.2623, + "eu-west-1": 0.2747, + "us-east-1": 0.2486, "us-east-2": 0.2377, + "us-west-1": 0.2831, "us-west-2": 0.2377 }, + "c7gd.metal": { + "ap-northeast-1": 3.8146, + "ap-south-1": 1.9682, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.9356, + "eu-central-1": 3.4818, + "eu-north-1": 3.27, + "eu-south-2": 3.4212, + "eu-west-1": 3.421, + "us-east-1": 0.0, + "us-east-2": 3.028, + "us-west-1": 0.0, + "us-west-2": 3.028 + }, "c7gd.2xlarge": { - "eu-west-1": 0.5617, - "us-east-1": 0.4879, - "us-east-2": 0.4879, - "us-west-2": 0.0 + "ap-northeast-1": 0.5862, + "ap-south-1": 0.3554, + "ap-southeast-1": 0.5484, + "ap-southeast-2": 0.6013, + "eu-central-1": 0.5698, + "eu-north-1": 0.5417, + "eu-south-2": 0.537, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.5097, + "us-west-1": 0.5786, + "us-west-2": 0.4879 }, "c7gd.4xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.1348, + "eu-central-1": 0.9642, + "eu-north-1": 0.9112, + "eu-south-2": 0.949, "eu-west-1": 0.9984, - "us-east-1": 0.0, - "us-east-2": 0.8508, - "us-west-2": 0.0 + "us-east-1": 0.8508, + "us-east-2": 0.0, + "us-west-1": 1.0322, + "us-west-2": 0.8943 }, "c7gd.8xlarge": { - "eu-west-1": 1.8719, - "us-east-1": 1.5765, - "us-east-2": 1.5765, + "ap-northeast-1": 0.0, + "ap-south-1": 1.0466, + "ap-southeast-1": 1.92, + "ap-southeast-2": 0.0, + "eu-central-1": 1.8034, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 1.773, + "us-east-1": 1.6636, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 1.5765 }, "c7gd.12xlarge": { - "eu-west-1": 2.597, - "us-east-1": 2.3023, - "us-east-2": 2.433, + "ap-northeast-1": 2.8922, + "ap-south-1": 1.5903, + "ap-southeast-1": 2.6652, + "ap-southeast-2": 2.9829, + "eu-central-1": 0.0, + "eu-north-1": 2.6252, + "eu-south-2": 2.7454, + "eu-west-1": 2.7453, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 2.3023 }, "c7gd.16xlarge": { - "eu-west-1": 3.421, + "ap-northeast-1": 3.8146, + "ap-south-1": 1.9682, + "ap-southeast-1": 3.5119, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.27, + "eu-south-2": 0.0, + "eu-west-1": 0.0, "us-east-1": 3.028, - "us-east-2": 3.028, + "us-east-2": 0.0, + "us-west-1": 3.7538, "us-west-2": 3.028 }, "c7gn.medium": { + "ap-northeast-1": 0.0, "eu-west-1": 0.131, - "us-east-1": 0.1224, + "us-east-1": 0.1187, "us-east-2": 0.1224, - "us-west-2": 0.1187 + "us-west-2": 0.1224 }, "c7gn.large": { + "ap-northeast-1": 0.2231, "eu-west-1": 0.2057, "us-east-1": 0.1886, "us-east-2": 0.0, - "us-west-2": 0.1811 + "us-west-2": 0.0 }, "c7gn.xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.3898, + "eu-west-1": 0.3552, "us-east-1": 0.3059, "us-east-2": 0.3059, "us-west-2": 0.0 }, + "c7gn.metal": { + "ap-northeast-1": 5.1618, + "eu-west-1": 0.0, + "us-east-1": 4.1186, + "us-east-2": 4.1186, + "us-west-2": 4.1186 + }, "c7gn.2xlarge": { + "ap-northeast-1": 0.7546, "eu-west-1": 0.689, - "us-east-1": 0.0, + "us-east-1": 0.6542, "us-east-2": 0.6242, "us-west-2": 0.6242 }, "c7gn.4xlarge": { + "ap-northeast-1": 1.4591, "eu-west-1": 1.253, - "us-east-1": 1.1234, + "us-east-1": 1.1833, "us-east-2": 0.0, - "us-west-2": 1.1833 + "us-west-2": 1.1234 }, "c7gn.8xlarge": { + "ap-northeast-1": 2.7932, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.1218, "us-west-2": 0.0 }, "c7gn.12xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 3.1202, + "ap-northeast-1": 3.9026, + "eu-west-1": 3.509, + "us-east-1": 3.2999, + "us-east-2": 0.0, "us-west-2": 0.0 }, "c7gn.16xlarge": { + "ap-northeast-1": 0.0, "eu-west-1": 4.637, + "us-east-1": 4.1186, + "us-east-2": 4.1186, + "us-west-2": 0.0 + }, + "c7i.large": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1571, + "ap-south-1": 0.15448, + "ap-southeast-1": 0.1592, + "ap-southeast-2": 0.18451, + "ca-central-1": 0.0, + "eu-central-1": 0.16834, + "eu-north-1": 0.15185, + "eu-south-2": 0.1571, + "eu-west-1": 0.16164, + "eu-west-2": 0.16235, + "eu-west-3": 0.17296, + "sa-east-1": 0.19385, "us-east-1": 0.0, "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "c7i.xlarge": { + "ap-northeast-1": 0.281, + "ap-northeast-2": 0.27806, + "ap-south-1": 0.0, + "ap-southeast-1": 0.28268, + "ap-southeast-2": 0.2894, + "ca-central-1": 0.0, + "eu-central-1": 0.28037, + "eu-north-1": 0.0, + "eu-south-2": 0.2579, + "eu-west-1": 0.26697, + "eu-west-2": 0.0, + "eu-west-3": 0.28961, + "sa-east-1": 0.35891, + "us-east-1": 0.2348, + "us-east-2": 0.2348, + "us-gov-east-1": 0.0, + "us-west-1": 0.2789, + "us-west-2": 0.2348 + }, + "c7i.metal-24xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 5.44724, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 5.28092, + "eu-central-1": 5.50268, + "eu-north-1": 4.7114, + "eu-south-2": 4.9634, + "eu-west-1": 5.18113, + "eu-west-2": 5.2154, + "eu-west-3": 0.0, + "sa-east-1": 6.7274, + "us-east-1": 4.409, + "us-east-2": 0.0, + "us-gov-east-1": 5.2658, + "us-west-1": 6.00164, + "us-west-2": 0.0 + }, + "c7i.metal-48xl": { + "ap-northeast-1": 10.9106, + "ap-northeast-2": 9.8018, + "ap-south-1": 8.693, + "ap-southeast-1": 10.0034, + "ap-southeast-2": 11.3138, + "ca-central-1": 0.0, + "eu-central-1": 9.9026, + "eu-north-1": 9.2978, + "eu-south-2": 0.0, + "eu-west-1": 9.31796, + "eu-west-2": 10.3058, + "eu-west-3": 0.0, + "sa-east-1": 13.3298, + "us-east-1": 8.693, + "us-east-2": 8.693, + "us-gov-east-1": 0.0, + "us-west-1": 10.8098, + "us-west-2": 8.693 + }, + "c7i.2xlarge": { + "ap-northeast-1": 0.5744, + "ap-northeast-2": 0.56852, + "ap-south-1": 0.0, + "ap-southeast-1": 0.57776, + "ap-southeast-2": 0.63782, + "ca-central-1": 0.5156, + "eu-central-1": 0.57314, + "eu-north-1": 0.5072, + "eu-south-2": 0.5282, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.5492, + "sa-east-1": 0.6752, + "us-east-1": 0.5177, + "us-east-2": 0.482, + "us-gov-east-1": 0.5534, + "us-west-1": 0.5702, + "us-west-2": 0.482 + }, + "c7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.839, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.15064, + "ca-central-1": 0.0, + "eu-central-1": 0.9398, + "eu-north-1": 0.0, + "eu-south-2": 0.9314, + "eu-west-1": 0.96769, + "eu-west-2": 0.9734, + "eu-west-3": 0.9734, + "sa-east-1": 1.33544, + "us-east-1": 0.839, + "us-east-2": 0.0, + "us-gov-east-1": 0.9818, + "us-west-1": 1.0154, + "us-west-2": 0.9104 + }, + "c7i.8xlarge": { + "ap-northeast-1": 2.10236, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 1.93604, + "ap-southeast-2": 2.17628, + "ca-central-1": 1.6874, + "eu-central-1": 1.91756, + "eu-north-1": 1.80668, + "eu-south-2": 1.89908, + "eu-west-1": 0.0, + "eu-west-2": 1.8218, + "eu-west-3": 1.99148, + "sa-east-1": 2.54588, + "us-east-1": 0.0, + "us-east-2": 1.553, + "us-gov-east-1": 2.00996, + "us-west-1": 1.9058, "us-west-2": 0.0 }, + "c7i.12xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 2.267, + "ap-southeast-1": 2.84156, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 2.5694, + "eu-north-1": 2.64752, + "eu-south-2": 2.5442, + "eu-west-1": 0.0, + "eu-west-2": 2.92472, + "eu-west-3": 2.6702, + "sa-east-1": 3.75632, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 2.95244, + "us-west-1": 0.0, + "us-west-2": 2.267 + }, + "c7i.16xlarge": { + "ap-northeast-1": 4.07972, + "ap-northeast-2": 0.0, + "ap-south-1": 2.981, + "ap-southeast-1": 3.74708, + "ap-southeast-2": 4.22756, + "ca-central-1": 3.56228, + "eu-central-1": 3.3842, + "eu-north-1": 3.48836, + "eu-south-2": 3.67316, + "eu-west-1": 3.49575, + "eu-west-2": 3.85796, + "eu-west-3": 3.85796, + "sa-east-1": 4.5266, + "us-east-1": 0.0, + "us-east-2": 3.2666, + "us-gov-east-1": 0.0, + "us-west-1": 4.04276, + "us-west-2": 2.981 + }, + "c7i.24xlarge": { + "ap-northeast-1": 5.5178, + "ap-northeast-2": 0.0, + "ap-south-1": 4.8374, + "ap-southeast-1": 5.55812, + "ap-southeast-2": 5.7194, + "ca-central-1": 5.28092, + "eu-central-1": 0.0, + "eu-north-1": 4.7114, + "eu-south-2": 5.44724, + "eu-west-1": 0.0, + "eu-west-2": 5.2154, + "eu-west-3": 5.72444, + "sa-east-1": 0.0, + "us-east-1": 4.8374, + "us-east-2": 4.8374, + "us-gov-east-1": 0.0, + "us-west-1": 6.00164, + "us-west-2": 4.409 + }, + "c7i.48xlarge": { + "ap-northeast-1": 10.9106, + "ap-northeast-2": 9.8018, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 9.2978, + "eu-south-2": 9.8018, + "eu-west-1": 0.0, + "eu-west-2": 10.3058, + "eu-west-3": 10.3058, + "sa-east-1": 13.3298, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 10.4066, + "us-west-1": 10.8098, + "us-west-2": 8.693 + }, + "c7i-flex.large": { + "ap-south-1": 0.14109, + "ap-southeast-1": 0.15408, + "ca-central-1": 0.14907, + "eu-north-1": 0.14707, + "eu-south-2": 0.15206, + "eu-west-1": 0.14727, + "eu-west-2": 0.15705, + "eu-west-3": 0.15705, + "sa-east-1": 0.18697, + "us-west-1": 0.16204 + }, + "c7i-flex.xlarge": { + "ap-south-1": 0.22588, + "ap-southeast-1": 0.25185, + "ca-central-1": 0.24184, + "eu-north-1": 0.23785, + "eu-south-2": 0.24782, + "eu-west-1": 0.23824, + "eu-west-2": 0.2578, + "eu-west-3": 0.2578, + "sa-east-1": 0.31765, + "us-west-1": 0.26777 + }, + "c7i-flex.2xlarge": { + "ap-south-1": 0.46415, + "ap-southeast-1": 0.5161, + "ca-central-1": 0.49607, + "eu-north-1": 0.48809, + "eu-south-2": 0.50804, + "eu-west-1": 0.48889, + "eu-west-2": 0.52799, + "eu-west-3": 0.52799, + "sa-east-1": 0.64769, + "us-west-1": 0.54794 + }, + "c7i-flex.4xlarge": { + "ap-south-1": 0.8033, + "ap-southeast-1": 0.9072, + "ca-central-1": 0.86714, + "eu-north-1": 0.85118, + "eu-south-2": 0.89108, + "eu-west-1": 0.85278, + "eu-west-2": 0.93098, + "eu-west-3": 0.93098, + "sa-east-1": 1.17038, + "us-west-1": 0.97088 + }, + "c7i-flex.8xlarge": { + "ap-south-1": 1.4816, + "ap-southeast-1": 1.68941, + "ca-central-1": 1.60928, + "eu-north-1": 1.57736, + "eu-south-2": 1.65716, + "eu-west-1": 1.58055, + "eu-west-2": 1.73696, + "eu-west-3": 1.73696, + "sa-east-1": 2.21576, + "us-west-1": 1.81676 + }, "cc2.8xlarge": { "ap-northeast-1": 2.449, "eu-west-1": 2.35, @@ -75431,14 +84928,14 @@ }, "d2.xlarge": { "af-south-1": 1.063, - "ap-east-1": 0.0, + "ap-east-1": 1.153, "ap-northeast-1": 0.944, "ap-northeast-2": 1.0284, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.97, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.859, "eu-central-1": 0.894, "eu-north-1": 0.798, "eu-south-1": 0.0, @@ -75447,52 +84944,52 @@ "eu-west-3": 0.872, "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 0.869, + "us-east-1": 0.0, "us-east-2": 0.869, - "us-gov-east-1": 0.0, + "us-gov-east-1": 1.011, "us-gov-west-1": 0.841, "us-west-1": 0.959, "us-west-2": 0.79 }, "d2.2xlarge": { - "af-south-1": 0.0, - "ap-east-1": 2.014, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "af-south-1": 2.025, + "ap-east-1": 2.205, + "ap-northeast-1": 1.967, + "ap-northeast-2": 1.9568, "ap-northeast-3": 1.788, "ap-south-1": 1.928, "ap-southeast-1": 1.84, - "ap-southeast-2": 0.0, - "ca-central-1": 1.618, + "ap-southeast-2": 1.84, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 1.496, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 1.57, - "eu-west-2": 1.798, + "eu-west-2": 0.0, "eu-west-3": 1.644, "me-south-1": 1.717, "sa-east-1": 0.0, "us-east-1": 1.48, "us-east-2": 0.0, "us-gov-east-1": 1.922, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.922, "us-west-1": 1.663, - "us-west-2": 0.0 + "us-west-2": 1.628 }, "d2.4xlarge": { "af-south-1": 3.95, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.824, "ap-northeast-2": 3.476, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.476, "ap-south-1": 0.0, - "ap-southeast-1": 3.58, - "ap-southeast-2": 3.938, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "ca-central-1": 3.136, - "eu-central-1": 3.604, + "eu-central-1": 3.276, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 3.04, "eu-west-2": 0.0, "eu-west-3": 3.188, "me-south-1": 3.657, @@ -75502,12 +84999,12 @@ "us-gov-east-1": 0.0, "us-gov-west-1": 3.325, "us-west-1": 3.225, - "us-west-2": 3.146 + "us-west-2": 0.0 }, "d2.8xlarge": { "af-south-1": 7.1, - "ap-east-1": 7.756, - "ap-northeast-1": 0.0, + "ap-east-1": 0.0, + "ap-northeast-1": 6.852, "ap-northeast-2": 6.852, "ap-northeast-3": 6.852, "ap-south-1": 0.0, @@ -75516,16 +85013,16 @@ "ca-central-1": 6.172, "eu-central-1": 6.452, "eu-north-1": 5.684, - "eu-south-1": 6.276, + "eu-south-1": 0.0, "eu-west-1": 5.98, "eu-west-2": 6.274, "eu-west-3": 6.276, - "me-south-1": 0.0, + "me-south-1": 6.568, "sa-east-1": 0.0, "us-east-1": 5.62, "us-east-2": 5.62, - "us-gov-east-1": 0.0, - "us-gov-west-1": 6.637, + "us-gov-east-1": 6.724, + "us-gov-west-1": 0.0, "us-west-1": 6.35, "us-west-2": 5.62 }, @@ -75536,6 +85033,7 @@ "ap-southeast-2": 0.682, "ca-central-1": 0.606, "eu-central-1": 0.714, + "eu-central-2": 0.78, "eu-west-1": 0.666, "eu-west-2": 0.696, "il-central-1": 0.696, @@ -75551,6 +85049,7 @@ "ap-southeast-2": 1.377, "ca-central-1": 1.225, "eu-central-1": 1.441, + "eu-central-2": 1.573, "eu-west-1": 1.344, "eu-west-2": 1.405, "il-central-1": 1.405, @@ -75566,6 +85065,7 @@ "ap-southeast-2": 2.629, "ca-central-1": 2.326, "eu-central-1": 2.757, + "eu-central-2": 3.02, "eu-west-1": 2.562, "eu-west-2": 2.684, "il-central-1": 2.684, @@ -75581,6 +85081,7 @@ "ap-southeast-2": 5.13308, "ca-central-1": 4.52612, "eu-central-1": 5.38948, + "eu-central-2": 5.91596, "eu-west-1": 4.99948, "eu-west-2": 5.24324, "il-central-1": 5.24324, @@ -75590,35 +85091,57 @@ "us-west-2": 4.12052 }, "d3en.xlarge": { + "ap-northeast-1": 0.819, + "ap-southeast-1": 0.715, + "eu-central-1": 0.749, "eu-west-1": 0.698, "us-east-1": 0.582, "us-west-2": 0.582 }, "d3en.2xlarge": { + "ap-northeast-1": 1.65, + "ap-southeast-1": 1.443, + "eu-central-1": 1.51, "eu-west-1": 1.408, "us-east-1": 1.176, "us-west-2": 1.176 }, "d3en.4xlarge": { + "ap-northeast-1": 3.174, + "ap-southeast-1": 2.761, + "eu-central-1": 2.896, "eu-west-1": 2.691, "us-east-1": 2.228, "us-west-2": 2.228 }, "d3en.6xlarge": { + "ap-northeast-1": 4.699, + "ap-southeast-1": 4.079, + "eu-central-1": 4.281, "eu-west-1": 3.973, "us-east-1": 3.279, "us-west-2": 3.279 }, "d3en.8xlarge": { + "ap-northeast-1": 6.2234, + "ap-southeast-1": 5.39668, + "eu-central-1": 5.66652, "eu-west-1": 5.25604, "us-east-1": 4.33076, "us-west-2": 4.33076 }, "d3en.12xlarge": { + "ap-northeast-1": 9.2726, + "ap-southeast-1": 8.03252, + "eu-central-1": 8.43728, "eu-west-1": 7.82156, "us-east-1": 6.43364, "us-west-2": 6.43364 }, + "dl2q.24xlarge": { + "eu-central-1": 12.8797, + "us-west-2": 9.9363 + }, "f1.2xlarge": { "eu-central-1": 2.0074, "eu-west-1": 1.915, @@ -75631,34 +85154,34 @@ "eu-central-1": 3.568, "eu-west-1": 4.093, "eu-west-2": 3.912, - "us-east-1": 3.4, + "us-east-1": 0.0, "us-gov-west-1": 4.06, "us-west-2": 3.73 }, "f1.16xlarge": { - "eu-west-1": 14.62, - "us-east-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 13.3, "us-gov-west-1": 15.94, "us-west-2": 13.3 }, "g2.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.998, "ap-northeast-2": 0.998, "ap-southeast-1": 1.1, - "ap-southeast-2": 1.088, - "eu-central-1": 0.959, - "eu-west-1": 0.872, + "ap-southeast-2": 0.998, + "eu-central-1": 0.872, + "eu-west-1": 0.802, "sa-east-1": 0.0, - "us-east-1": 0.815, + "us-east-1": 0.75, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.75 }, "g2.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 3.692, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.1, "ap-southeast-2": 3.692, - "eu-central-1": 3.188, + "eu-central-1": 0.0, "eu-west-1": 2.908, "sa-east-1": 0.0, "us-east-1": 2.7, @@ -75666,42 +85189,42 @@ "us-west-2": 2.7 }, "g3.4xlarge": { - "ap-northeast-1": 1.838, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 1.854, - "ca-central-1": 1.516, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 1.529, "us-east-1": 1.24, "us-east-2": 0.0, - "us-gov-west-1": 1.552, - "us-west-1": 1.634, + "us-gov-west-1": 1.42, + "us-west-1": 0.0, "us-west-2": 1.354 }, "g3.8xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.44, "ap-southeast-2": 3.608, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 2.932, + "eu-central-1": 3.235, "eu-west-1": 2.762, "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 2.74, "us-west-1": 3.168, - "us-west-2": 2.38 + "us-west-2": 0.0 }, "g3.16xlarge": { "ap-northeast-1": 6.42, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, + "ap-southeast-1": 6.78, "ap-southeast-2": 7.116, "ca-central-1": 0.0, - "eu-central-1": 5.8, + "eu-central-1": 0.0, "eu-west-1": 4.94, "eu-west-2": 0.0, "us-east-1": 0.0, @@ -75724,18 +85247,18 @@ }, "g4ad.xlarge": { "ap-northeast-1": 0.6182, - "ca-central-1": 0.52119, + "ca-central-1": 0.47893, "eu-central-1": 0.52957, "eu-west-1": 0.52119, "eu-west-2": 0.49901, "us-east-1": 0.47268, - "us-east-2": 0.47268, + "us-east-2": 0.43483, "us-west-2": 0.0 }, "g4ad.2xlarge": { "ap-northeast-1": 0.0, - "ca-central-1": 0.72921, - "eu-central-1": 0.86928, + "ca-central-1": 0.78963, + "eu-central-1": 0.0, "eu-west-1": 0.78963, "eu-west-2": 0.82122, "us-east-1": 0.66617, @@ -75745,29 +85268,29 @@ "g4ad.4xlarge": { "ap-northeast-1": 0.0, "ca-central-1": 0.0, - "eu-central-1": 1.209, + "eu-central-1": 1.3174, "eu-west-1": 1.093, - "eu-west-2": 1.2404, + "eu-west-2": 1.139, "us-east-1": 0.0, "us-east-2": 1.0787, - "us-west-2": 1.0787 + "us-west-2": 0.992 }, "g4ad.8xlarge": { - "ap-northeast-1": 0.0, - "ca-central-1": 0.0, + "ap-northeast-1": 2.465, + "ca-central-1": 2.061, "eu-central-1": 0.0, "eu-west-1": 2.2546, "eu-west-2": 2.3558, - "us-east-1": 2.0324, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 2.0324, "us-west-2": 2.0324 }, "g4ad.16xlarge": { "ap-northeast-1": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 3.997, - "eu-west-2": 4.181, + "eu-central-1": 4.461, + "eu-west-1": 4.3842, + "eu-west-2": 4.5866, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-2": 3.593 @@ -75776,16 +85299,16 @@ "af-south-1": 0.8, "ap-east-1": 0.0, "ap-northeast-1": 0.766, - "ap-northeast-2": 0.703, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.742, + "ap-northeast-3": 0.766, + "ap-south-1": 0.635, "ap-southeast-1": 0.836, "ap-southeast-2": 0.781, - "ca-central-1": 0.0, - "eu-central-1": 0.714, + "ca-central-1": 0.675, + "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 0.643, + "eu-west-1": 0.681, "eu-west-2": 0.712, "eu-west-3": 0.0, "me-south-1": 0.743, @@ -75793,109 +85316,109 @@ "us-east-1": 0.614, "us-east-2": 0.0, "us-gov-east-1": 0.719, - "us-gov-west-1": 0.719, + "us-gov-west-1": 0.0, "us-west-1": 0.73, - "us-west-2": 0.614, - "us-west-2-lax-1": 0.73 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.688 }, "g4dn.metal": { "af-south-1": 10.506, "ap-east-1": 12.173, "ap-northeast-1": 10.687, "ap-northeast-2": 9.749, - "ap-northeast-3": 10.687, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 11.073, - "ap-southeast-2": 10.299, + "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 8.849, - "eu-west-2": 0.0, - "eu-west-3": 9.273, - "me-south-1": 9.721, - "sa-east-1": 13.423, + "eu-west-2": 9.279, + "eu-west-3": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 9.987, - "us-west-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 9.514, "us-west-2": 7.949, "us-west-2-lax-1": 9.514 }, "g4dn.2xlarge": { - "af-south-1": 0.0, - "ap-east-1": 1.283, + "af-south-1": 1.123, + "ap-east-1": 1.353, "ap-northeast-1": 0.0, - "ap-northeast-2": 1.105, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.206, "ap-south-1": 0.0, - "ap-southeast-1": 1.177, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 1.01, - "eu-central-1": 1.126, + "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 0.963, + "eu-south-1": 1.063, + "eu-west-1": 0.0, "eu-west-2": 1.005, "eu-west-3": 1.004, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 1.486, "us-east-1": 0.877, "us-east-2": 0.877, "us-gov-east-1": 0.0, "us-gov-west-1": 1.13, "us-west-1": 1.088, - "us-west-2": 0.0, - "us-west-2-lax-1": 1.088 + "us-west-2": 0.922, + "us-west-2-lax-1": 1.027 }, "g4dn.4xlarge": { "af-south-1": 1.826, "ap-east-1": 0.0, "ap-northeast-1": 1.856, - "ap-northeast-2": 1.606, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.75, "ap-south-1": 1.45, - "ap-southeast-1": 1.911, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.785, - "ca-central-1": 1.542, - "eu-central-1": 1.63, - "eu-north-1": 0.0, - "eu-south-1": 1.626, + "ca-central-1": 1.462, + "eu-central-1": 0.0, + "eu-north-1": 1.402, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 1.534, "eu-west-3": 1.617, - "me-south-1": 1.602, + "me-south-1": 0.0, "sa-east-1": 2.304, "us-east-1": 1.401, "us-east-2": 1.401, "us-gov-east-1": 0.0, - "us-gov-west-1": 1.734, - "us-west-1": 1.667, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 1.57 }, "g4dn.8xlarge": { - "af-south-1": 3.2, + "af-south-1": 3.012, "ap-east-1": 3.476, - "ap-northeast-1": 3.063, - "ap-northeast-2": 2.802, + "ap-northeast-1": 0.0, + "ap-northeast-2": 2.962, "ap-northeast-3": 3.063, "ap-south-1": 0.0, "ap-southeast-1": 3.17, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 2.672, - "eu-west-1": 0.0, + "ca-central-1": 2.686, + "eu-central-1": 2.845, + "eu-north-1": 2.433, + "eu-south-1": 2.838, + "eu-west-1": 2.551, "eu-west-2": 0.0, "eu-west-3": 2.669, "me-south-1": 2.794, "sa-east-1": 0.0, "us-east-1": 2.432, "us-east-2": 2.301, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.032, "us-gov-west-1": 2.868, "us-west-1": 2.736, "us-west-2": 2.301, @@ -75903,80 +85426,80 @@ }, "g4dn.12xlarge": { "af-south-1": 5.653, - "ap-east-1": 0.0, + "ap-east-1": 6.149, "ap-northeast-1": 0.0, "ap-northeast-2": 4.937, - "ap-northeast-3": 5.749, - "ap-south-1": 0.0, - "ap-southeast-1": 5.927, + "ap-northeast-3": 5.406, + "ap-south-1": 4.431, + "ap-southeast-1": 5.599, "ap-southeast-2": 5.517, "ca-central-1": 4.729, "eu-central-1": 5.015, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 4.77, - "eu-west-2": 4.999, - "eu-west-3": 4.973, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "me-south-1": 5.235, - "sa-east-1": 6.774, + "sa-east-1": 0.0, "us-east-1": 4.037, - "us-east-2": 4.037, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 4.819, + "us-east-2": 0.0, + "us-gov-east-1": 5.352, + "us-gov-west-1": 5.056, + "us-west-1": 0.0, "us-west-2": 4.037, "us-west-2-lax-1": 4.819 }, "g4dn.16xlarge": { "af-south-1": 6.275, - "ap-east-1": 6.827, + "ap-east-1": 7.229, "ap-northeast-1": 6.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 5.203, + "ap-south-1": 0.0, "ap-southeast-1": 6.214, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.742, "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 5.548, - "eu-west-3": 0.0, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "eu-west-1": 5.293, + "eu-west-2": 0.0, + "eu-west-3": 5.213, + "me-south-1": 5.463, + "sa-east-1": 7.522, "us-east-1": 4.738, - "us-east-2": 4.738, - "us-gov-east-1": 5.94, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 5.697, "us-west-2": 0.0, - "us-west-2-lax-1": 5.697 + "us-west-2-lax-1": 5.347 }, "g5.xlarge": { "ap-northeast-1": 1.6612, "ap-northeast-2": 1.417, "ap-south-1": 1.2643, - "ap-southeast-2": 1.3643, + "ap-southeast-2": 1.4951, "ap-southeast-3": 1.4643, "ca-central-1": 1.285, - "eu-central-1": 0.0, - "eu-north-1": 1.1233, + "eu-central-1": 1.3143, + "eu-north-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 0.0, "me-central-1": 1.4137, "sa-east-1": 1.7663, "us-east-1": 0.0, - "us-east-2": 1.1629, - "us-west-2": 1.0623 + "us-east-2": 0.0, + "us-west-2": 0.0 }, "g5.2xlarge": { "ap-northeast-1": 2.05854, - "ap-northeast-2": 1.76433, + "ap-northeast-2": 1.6153, "ap-south-1": 1.7259, "ap-southeast-2": 1.70084, - "ap-southeast-3": 1.82132, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 1.79216, "eu-north-1": 1.41049, @@ -75984,43 +85507,43 @@ "eu-west-2": 0.0, "il-central-1": 1.54561, "me-central-1": 0.0, - "sa-east-1": 2.39117, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 1.337, "us-east-2": 0.0, "us-west-2": 0.0 }, "g5.4xlarge": { - "ap-northeast-1": 2.71581, + "ap-northeast-1": 2.48028, "ap-northeast-2": 2.12191, - "ap-south-1": 2.07509, + "ap-south-1": 2.2701, "ap-southeast-2": 2.23652, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 2.10851, "eu-central-1": 2.15581, "eu-north-1": 0.0, "eu-west-1": 1.93787, - "eu-west-2": 2.18648, - "il-central-1": 2.02852, + "eu-west-2": 0.0, + "il-central-1": 2.21887, "me-central-1": 0.0, - "sa-east-1": 3.16152, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.9114, - "us-west-2": 1.749, - "us-west-2-lax-1": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 2.35598 }, "g5.8xlarge": { "ap-northeast-1": 3.67533, "ap-northeast-2": 0.0, "ap-south-1": 0.0, - "ap-southeast-2": 3.30789, + "ap-southeast-2": 0.0, "ap-southeast-3": 3.89385, - "ca-central-1": 0.0, + "ca-central-1": 2.84311, "eu-central-1": 3.49234, "eu-north-1": 2.98108, "eu-west-1": 3.13098, - "eu-west-2": 3.23245, + "eu-west-2": 0.0, "il-central-1": 2.99434, - "me-central-1": 3.4281, + "me-central-1": 0.0, "sa-east-1": 4.70222, "us-east-1": 2.573, "us-east-2": 0.0, @@ -76030,11 +85553,11 @@ "g5.12xlarge": { "ap-northeast-1": 9.1737, "ap-northeast-2": 7.79686, - "ap-south-1": 6.93591, + "ap-south-1": 7.617, "ap-southeast-2": 7.49973, "ap-southeast-3": 8.8574, "ca-central-1": 6.42284, - "eu-central-1": 0.0, + "eu-central-1": 7.21782, "eu-north-1": 6.14093, "eu-west-1": 6.45667, "eu-west-2": 0.0, @@ -76042,7 +85565,7 @@ "me-central-1": 7.0825, "sa-east-1": 0.0, "us-east-1": 6.3642, - "us-east-2": 0.0, + "us-east-2": 6.3642, "us-west-2": 0.0 }, "g5.16xlarge": { @@ -76054,8 +85577,8 @@ "ca-central-1": 4.67294, "eu-central-1": 5.75924, "eu-north-1": 4.46937, - "eu-west-1": 4.69737, - "eu-west-2": 5.3244, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 4.92599, "me-central-1": 0.0, "sa-east-1": 7.78362, @@ -76065,43 +85588,43 @@ }, "g5.24xlarge": { "ap-northeast-1": 13.11735, - "ap-northeast-2": 0.0, - "ap-south-1": 0.0, - "ap-southeast-2": 10.71382, - "ap-southeast-3": 12.6632, + "ap-northeast-2": 11.14045, + "ap-south-1": 9.90428, + "ap-southeast-2": 11.7727, + "ap-southeast-3": 11.52336, "ca-central-1": 10.07185, - "eu-central-1": 10.30905, + "eu-central-1": 0.0, "eu-north-1": 9.6266, - "eu-west-1": 10.12528, - "eu-west-2": 11.49665, - "il-central-1": 10.6253, + "eu-west-1": 0.0, + "eu-west-2": 10.46286, + "il-central-1": 9.67072, "me-central-1": 10.11476, "sa-east-1": 13.96818, "us-east-1": 9.0834, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 9.0834, + "us-west-2": 9.0834 }, "g5.48xlarge": { "ap-northeast-1": 23.74746, "ap-northeast-2": 20.15309, "ap-south-1": 19.68355, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 22.92172, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 17.40064, - "eu-west-1": 18.30733, + "eu-west-1": 0.0, "eu-west-2": 20.80072, "il-central-1": 19.21645, "me-central-1": 20.10451, - "sa-east-1": 0.0, + "sa-east-1": 27.81136, "us-east-1": 16.413, - "us-east-2": 16.413, + "us-east-2": 0.0, "us-west-2": 16.413 }, "g5g.xlarge": { "ap-northeast-1": 0.6232, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.5729, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-south-2": 0.5555, @@ -76110,75 +85633,126 @@ }, "g5g.metal": { "ap-northeast-1": 3.8289, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.5002, "ap-southeast-1": 3.9645, "eu-central-1": 3.5576, "eu-south-2": 3.1872, - "us-east-1": 0.0, + "us-east-1": 2.869, "us-west-2": 0.0 }, "g5g.2xlarge": { "ap-northeast-1": 0.9243, "ap-northeast-2": 0.8089, - "ap-southeast-1": 0.9496, + "ap-southeast-1": 0.903, "eu-central-1": 0.8657, - "eu-south-2": 0.7858, - "us-east-1": 0.681, - "us-west-2": 0.681 + "eu-south-2": 0.0, + "us-east-1": 0.7144, + "us-west-2": 0.0 }, "g5g.4xlarge": { - "ap-northeast-1": 1.3153, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.1435, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-south-2": 1.1091, - "us-east-1": 0.0, - "us-west-2": 1.0027 + "eu-central-1": 1.2281, + "eu-south-2": 0.0, + "us-east-1": 0.953, + "us-west-2": 0.953 }, "g5g.8xlarge": { "ap-northeast-1": 1.9769, "ap-northeast-2": 0.0, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-1": 2.0448, + "eu-central-1": 1.8413, "eu-south-2": 1.7556, "us-east-1": 1.497, - "us-west-2": 1.5793 + "us-west-2": 0.0 }, "g5g.16xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 3.8289, "ap-northeast-2": 3.5002, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.9645, "eu-central-1": 3.5576, "eu-south-2": 0.0, - "us-east-1": 2.869, + "us-east-1": 0.0, + "us-west-2": 0.0 + }, + "g6.xlarge": { + "us-east-1": 0.8611, + "us-east-2": 0.0, + "us-west-2": 0.8611 + }, + "g6.2xlarge": { + "us-east-1": 1.20036, + "us-east-2": 0.0, + "us-west-2": 1.20036 + }, + "g6.4xlarge": { + "us-east-1": 1.4482, + "us-east-2": 1.58052, + "us-west-2": 0.0 + }, + "g6.8xlarge": { + "us-east-1": 0.0, + "us-east-2": 2.1394, + "us-west-2": 2.1394 + }, + "g6.12xlarge": { + "us-east-1": 5.18676, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.16xlarge": { + "us-east-1": 3.86148, + "us-east-2": 0.0, "us-west-2": 0.0 }, + "g6.24xlarge": { + "us-east-1": 6.8002, + "us-east-2": 0.0, + "us-west-2": 7.46772 + }, + "g6.48xlarge": { + "us-east-1": 13.4754, + "us-east-2": 0.0, + "us-west-2": 13.4754 + }, + "gr6.4xlarge": { + "us-east-1": 1.6642, + "us-east-2": 1.6642, + "us-west-2": 1.6642 + }, + "gr6.8xlarge": { + "us-east-1": 2.5714, + "us-east-2": 2.5714, + "us-west-2": 2.5714 + }, "h1.2xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.598, + "eu-west-1": 0.644, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 0.598 + "us-west-2": 0.568 }, "h1.4xlarge": { "eu-west-1": 0.0, - "us-east-1": 1.097, - "us-east-2": 1.036, + "us-east-1": 1.036, + "us-east-2": 1.097, "us-west-2": 0.0 }, "h1.8xlarge": { "eu-west-1": 0.0, "us-east-1": 1.972, - "us-east-2": 2.093, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 1.972 }, "h1.16xlarge": { "eu-west-1": 0.0, "us-east-1": 3.844, "us-east-2": 3.844, - "us-west-2": 0.0 + "us-west-2": 3.844 }, "hpc6a.48xlarge": { "ap-southeast-1": 3.4455, + "ap-southeast-2": 3.8859, "eu-north-1": 3.218, "us-east-2": 3.005, "us-gov-east-1": 3.592, @@ -76189,14 +85763,47 @@ "us-east-2": 5.825, "us-gov-west-1": 6.9794 }, + "hpc7a.12xlarge": { + "eu-north-1": 7.8502, + "eu-west-1": 7.8502, + "us-east-2": 7.325, + "us-gov-west-1": 8.7924 + }, + "hpc7a.24xlarge": { + "eu-north-1": 7.8502, + "eu-west-1": 7.8502, + "us-east-2": 7.325, + "us-gov-west-1": 8.7924 + }, + "hpc7a.48xlarge": { + "eu-north-1": 7.8502, + "eu-west-1": 7.8502, + "us-east-2": 7.325, + "us-gov-west-1": 8.7924 + }, + "hpc7a.96xlarge": { + "eu-north-1": 7.8502, + "eu-west-1": 7.8502, + "us-east-2": 7.325, + "us-gov-west-1": 8.7924 + }, "hpc7g.4xlarge": { - "us-east-1": 1.8082 + "ap-northeast-1": 2.2367, + "eu-west-1": 1.9309, + "us-east-1": 1.8082, + "us-gov-west-1": 2.1512 }, "hpc7g.8xlarge": { - "us-east-1": 1.8082 + "ap-northeast-1": 2.2367, + "eu-west-1": 1.9309, + "us-east-1": 1.8082, + "us-gov-west-1": 2.1512 }, "hpc7g.16xlarge": { - "us-east-1": 1.8082 + "ap-northeast-1": 2.2367, + "eu-west-1": 1.9309, + "us-east-1": 1.8082, + "us-gov-west-1": 2.1512 }, "hs1.8xlarge": { "ap-northeast-1": 5.5, @@ -76217,16 +85824,16 @@ "eu-west-1": 1.038, "sa-east-1": 0.0, "us-east-1": 1.038, - "us-east-2": 0.0, - "us-gov-west-1": 1.123, + "us-east-2": 0.953, + "us-gov-west-1": 1.235, "us-west-1": 1.132, - "us-west-2": 0.0 + "us-west-2": 0.953 }, "i2.2xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-south-1": 2.236, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.339, "ap-southeast-2": 0.0, "eu-central-1": 2.338, "eu-west-1": 0.0, @@ -76234,23 +85841,23 @@ "us-east-1": 1.976, "us-east-2": 1.976, "us-gov-west-1": 2.36, - "us-west-1": 2.164, - "us-west-2": 1.976 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "i2.4xlarge": { "ap-northeast-1": 4.102, - "ap-northeast-2": 4.102, + "ap-northeast-2": 4.5022, "ap-south-1": 3.967, "ap-southeast-1": 4.17, - "ap-southeast-2": 4.577, + "ap-southeast-2": 0.0, "eu-central-1": 4.566, "eu-west-1": 3.851, "sa-east-1": 0.0, "us-east-1": 3.51, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 4.226, - "us-west-2": 0.0 + "us-west-1": 3.851, + "us-west-2": 3.851 }, "i2.8xlarge": { "ap-northeast-1": 8.104, @@ -76261,10 +85868,10 @@ "eu-central-1": 8.202, "eu-west-1": 7.602, "sa-east-1": 0.0, - "us-east-1": 6.92, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 8.284, - "us-west-1": 7.602, + "us-west-1": 0.0, "us-west-2": 6.92 }, "i3.large": { @@ -76273,10 +85880,10 @@ "ap-northeast-1": 0.283, "ap-northeast-2": 0.283, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.277, "ap-south-2": 0.295, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.306, "ap-southeast-3": 0.306, "ap-southeast-4": 0.287, "ca-central-1": 0.289, @@ -76284,117 +85891,117 @@ "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.299, - "eu-south-2": 0.0, + "eu-south-2": 0.272, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.281, + "eu-west-3": 0.0, "il-central-1": 0.281, "me-central-1": 0.308, "me-south-1": 0.308, "sa-east-1": 0.349, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.307, - "us-gov-west-1": 0.307, - "us-west-1": 0.272, - "us-west-2": 0.0 + "us-east-2": 0.256, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.289, + "us-west-2": 0.272 }, "i3.xlarge": { - "af-south-1": 0.551, - "ap-east-1": 0.553, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.466, + "af-south-1": 0.0, + "ap-east-1": 0.512, + "ap-northeast-1": 0.466, + "ap-northeast-2": 0.503, "ap-northeast-3": 0.0, "ap-south-1": 0.489, "ap-south-2": 0.0, "ap-southeast-1": 0.474, - "ap-southeast-2": 0.511, + "ap-southeast-2": 0.474, "ap-southeast-3": 0.0, "ap-southeast-4": 0.511, - "ca-central-1": 0.0, + "ca-central-1": 0.478, "eu-central-1": 0.0, "eu-central-2": 0.509, "eu-north-1": 0.426, - "eu-south-1": 0.0, + "eu-south-1": 0.462, "eu-south-2": 0.478, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 0.498, + "eu-west-3": 0.462, "il-central-1": 0.0, "me-central-1": 0.478, "me-south-1": 0.516, "sa-east-1": 0.598, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.476, - "us-gov-west-1": 0.514, + "us-east-1": 0.412, + "us-east-2": 0.443, + "us-gov-east-1": 0.514, + "us-gov-west-1": 0.476, "us-west-1": 0.444, - "us-west-2": 0.412 + "us-west-2": 0.443 }, "i3.metal": { - "af-south-1": 6.66, + "af-south-1": 0.0, "ap-east-1": 6.692, - "ap-northeast-1": 5.956, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 5.764, "ap-southeast-1": 6.084, "ap-southeast-2": 0.0, "ca-central-1": 5.604, "eu-central-1": 0.0, - "eu-north-1": 5.316, + "eu-north-1": 0.0, "eu-south-1": 5.892, "eu-west-1": 5.604, - "eu-west-2": 0.0, + "eu-west-2": 5.892, "eu-west-3": 5.892, - "me-south-1": 0.0, + "me-south-1": 6.179, "sa-east-1": 0.0, "us-east-1": 5.092, - "us-east-2": 5.092, + "us-east-2": 0.0, "us-gov-east-1": 6.116, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 5.092 + "us-west-1": 5.604, + "us-west-2": 0.0 }, "i3.2xlarge": { - "af-south-1": 0.92, + "af-south-1": 0.0, "ap-east-1": 0.924, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.832, - "ap-northeast-3": 0.905, + "ap-northeast-1": 0.832, + "ap-northeast-2": 0.905, + "ap-northeast-3": 0.832, "ap-south-1": 0.808, "ap-south-2": 0.808, - "ap-southeast-1": 0.848, - "ap-southeast-2": 0.848, + "ap-southeast-1": 0.923, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.848, - "ca-central-1": 0.857, - "eu-central-1": 0.0, - "eu-central-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.844, + "eu-central-2": 1.0, "eu-north-1": 0.817, "eu-south-1": 0.896, "eu-south-2": 0.857, - "eu-west-1": 0.857, + "eu-west-1": 0.0, "eu-west-2": 0.896, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.822, "me-central-1": 0.0, - "me-south-1": 0.0, + "me-south-1": 0.857, "sa-east-1": 0.0, - "us-east-1": 0.724, + "us-east-1": 0.0, "us-east-2": 0.724, "us-gov-east-1": 0.927, "us-gov-west-1": 0.852, - "us-west-1": 0.0, + "us-west-1": 0.788, "us-west-2": 0.0 }, "i3.4xlarge": { "af-south-1": 0.0, "ap-east-1": 1.748, - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.71, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 1.658, + "ap-northeast-3": 1.71, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, @@ -76406,47 +86013,47 @@ "eu-north-1": 1.404, "eu-south-1": 1.693, "eu-south-2": 1.476, - "eu-west-1": 0.0, + "eu-west-1": 1.476, "eu-west-2": 0.0, "eu-west-3": 1.693, "il-central-1": 1.545, "me-central-1": 1.765, - "me-south-1": 1.614, + "me-south-1": 0.0, "sa-east-1": 2.092, "us-east-1": 0.0, "us-east-2": 1.348, - "us-gov-east-1": 1.754, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.754, - "us-west-1": 1.614, - "us-west-2": 1.473 + "us-west-1": 1.476, + "us-west-2": 1.348 }, "i3.8xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 3.396, "ap-northeast-1": 3.321, - "ap-northeast-2": 3.028, + "ap-northeast-2": 3.321, "ap-northeast-3": 3.028, "ap-south-1": 2.932, "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 3.391, - "ap-southeast-3": 0.0, + "ap-southeast-1": 3.092, + "ap-southeast-2": 3.092, + "ap-southeast-3": 3.092, "ap-southeast-4": 3.092, - "ca-central-1": 3.127, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 3.374, "eu-north-1": 2.969, "eu-south-1": 3.286, - "eu-south-2": 0.0, - "eu-west-1": 2.852, + "eu-south-2": 2.852, + "eu-west-1": 0.0, "eu-west-2": 2.996, "eu-west-3": 3.286, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 3.127, - "sa-east-1": 0.0, - "us-east-1": 2.596, - "us-east-2": 2.846, + "sa-east-1": 4.084, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 3.108, "us-west-1": 2.852, @@ -76458,23 +86065,23 @@ "ap-northeast-1": 5.956, "ap-northeast-2": 5.956, "ap-northeast-3": 0.0, - "ap-south-1": 5.764, + "ap-south-1": 0.0, "ap-south-2": 5.764, "ap-southeast-1": 6.084, "ap-southeast-2": 6.084, - "ap-southeast-3": 6.084, - "ap-southeast-4": 6.084, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 5.604, "eu-central-1": 0.0, "eu-central-2": 6.647, - "eu-north-1": 5.316, - "eu-south-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 5.892, "eu-south-2": 5.604, "eu-west-1": 0.0, "eu-west-2": 5.892, - "eu-west-3": 5.892, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 6.154, "me-south-1": 6.154, "sa-east-1": 8.068, "us-east-1": 5.092, @@ -76482,23 +86089,24 @@ "us-gov-east-1": 6.116, "us-gov-west-1": 0.0, "us-west-1": 5.604, - "us-west-2": 0.0 + "us-west-2": 5.092 }, "i3en.large": { "af-south-1": 0.373, "ap-east-1": 0.0, - "ap-northeast-1": 0.322, + "ap-northeast-1": 0.34, "ap-northeast-2": 0.322, "ap-northeast-3": 0.322, - "ap-south-1": 0.313, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 0.327, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.327, "ap-southeast-3": 0.345, "ap-southeast-4": 0.345, - "ca-central-1": 0.306, + "ca-central-1": 0.323, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0, + "eu-central-2": 0.353, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.306, @@ -76506,23 +86114,23 @@ "eu-west-2": 0.319, "eu-west-3": 0.319, "il-central-1": 0.336, - "me-central-1": 0.0, + "me-central-1": 0.349, "me-south-1": 0.33, - "sa-east-1": 0.0, + "sa-east-1": 0.416, "us-east-1": 0.297, "us-east-2": 0.282, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.347, + "us-gov-west-1": 0.329, "us-west-1": 0.0, "us-west-2": 0.282, "us-west-2-lax-1": 0.328 }, "i3en.xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.689, "ap-east-1": 0.653, "ap-northeast-1": 0.623, "ap-northeast-2": 0.623, - "ap-northeast-3": 0.623, + "ap-northeast-3": 0.588, "ap-south-1": 0.0, "ap-south-2": 0.604, "ap-southeast-1": 0.598, @@ -76530,8 +86138,9 @@ "ap-southeast-3": 0.0, "ap-southeast-4": 0.598, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.689, + "eu-central-2": 0.65, "eu-north-1": 0.561, "eu-south-1": 0.0, "eu-south-2": 0.0, @@ -76544,25 +86153,26 @@ "sa-east-1": 0.823, "us-east-1": 0.0, "us-east-2": 0.508, - "us-gov-east-1": 0.602, + "us-gov-east-1": 0.638, "us-gov-west-1": 0.638, "us-west-1": 0.556, - "us-west-2": 0.508, + "us-west-2": 0.0, "us-west-2-lax-1": 0.599 }, "i3en.metal": { "af-south-1": 0.0, - "ap-east-1": 14.444, + "ap-east-1": 0.0, "ap-northeast-1": 12.893, "ap-northeast-2": 12.893, - "ap-northeast-3": 12.893, - "ap-south-1": 12.461, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 12.461, "ap-southeast-1": 13.133, "ap-southeast-2": 13.133, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 12.125, + "ca-west-1": 12.125, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 11.501, @@ -76587,90 +86197,93 @@ "af-south-1": 1.313, "ap-east-1": 1.396, "ap-northeast-1": 1.258, - "ap-northeast-2": 1.189, - "ap-northeast-3": 0.0, - "ap-south-1": 1.153, + "ap-northeast-2": 0.0, + "ap-northeast-3": 1.189, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 1.28, + "ap-southeast-1": 1.209, "ap-southeast-2": 0.0, "ap-southeast-3": 1.209, "ap-southeast-4": 1.28, - "ca-central-1": 1.19, + "ca-central-1": 1.125, + "ca-west-1": 1.19, "eu-central-1": 1.205, "eu-central-2": 1.39, - "eu-north-1": 1.073, - "eu-south-1": 1.242, + "eu-north-1": 1.135, + "eu-south-1": 1.174, "eu-south-2": 1.19, - "eu-west-1": 0.0, - "eu-west-2": 1.177, + "eu-west-1": 1.19, + "eu-west-2": 0.0, "eu-west-3": 1.177, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 1.22, - "sa-east-1": 1.659, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 1.029, "us-gov-east-1": 0.0, "us-gov-west-1": 1.217, "us-west-1": 0.0, - "us-west-2": 0.0, - "us-west-2-lax-1": 1.21 + "us-west-2": 1.088, + "us-west-2-lax-1": 1.28 }, "i3en.3xlarge": { "af-south-1": 1.907, - "ap-east-1": 0.0, - "ap-northeast-1": 1.721, + "ap-east-1": 2.031, + "ap-northeast-1": 1.825, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 1.767, "ap-south-2": 0.0, - "ap-southeast-1": 1.857, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 1.857, - "ap-southeast-4": 1.857, + "ap-southeast-4": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 1.85, - "eu-central-2": 1.907, - "eu-north-1": 0.0, + "eu-central-2": 2.023, + "eu-north-1": 1.547, "eu-south-1": 1.698, "eu-south-2": 1.723, - "eu-west-1": 1.625, - "eu-west-2": 0.0, + "eu-west-1": 1.723, + "eu-west-2": 1.703, "eu-west-3": 1.703, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 1.882, "me-south-1": 1.768, - "sa-east-1": 2.285, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 1.569, + "us-east-2": 0.0, "us-gov-east-1": 1.763, "us-gov-west-1": 0.0, - "us-west-1": 1.723, - "us-west-2": 1.569, + "us-west-1": 1.625, + "us-west-2": 0.0, "us-west-2-lax-1": 1.752 }, "i3en.6xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.689, "ap-east-1": 3.705, - "ap-northeast-1": 3.525, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 3.409, + "ap-northeast-3": 3.523, + "ap-south-1": 3.209, "ap-south-2": 3.209, "ap-southeast-1": 3.589, "ap-southeast-2": 3.589, - "ap-southeast-3": 3.589, + "ap-southeast-3": 3.377, "ap-southeast-4": 3.589, "ca-central-1": 3.125, + "ca-west-1": 3.125, "eu-central-1": 3.365, "eu-central-2": 0.0, - "eu-north-1": 3.154, + "eu-north-1": 0.0, "eu-south-1": 3.271, "eu-south-2": 3.125, - "eu-west-1": 0.0, - "eu-west-2": 3.486, + "eu-west-1": 3.125, + "eu-west-2": 3.281, "eu-west-3": 3.281, - "il-central-1": 3.48, + "il-central-1": 0.0, "me-central-1": 3.64, "me-south-1": 0.0, "sa-east-1": 4.726, @@ -76679,35 +86292,36 @@ "us-gov-east-1": 3.401, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 2.837, + "us-west-2": 3.013, "us-west-2-lax-1": 0.0 }, "i3en.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 7.751, + "ap-east-1": 0.0, "ap-northeast-1": 6.924, "ap-northeast-2": 6.924, - "ap-northeast-3": 0.0, + "ap-northeast-3": 6.509, "ap-south-1": 0.0, - "ap-south-2": 6.694, - "ap-southeast-1": 7.053, + "ap-south-2": 6.293, + "ap-southeast-1": 6.629, "ap-southeast-2": 6.629, "ap-southeast-3": 7.053, "ap-southeast-4": 0.0, "ca-central-1": 6.125, + "ca-west-1": 6.125, "eu-central-1": 6.605, "eu-central-2": 0.0, - "eu-north-1": 5.813, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 6.515, "eu-west-1": 0.0, - "eu-west-2": 6.437, + "eu-west-2": 6.848, "eu-west-3": 6.437, - "il-central-1": 6.425, + "il-central-1": 6.835, "me-central-1": 7.154, - "me-south-1": 6.696, - "sa-east-1": 9.327, - "us-east-1": 5.549, + "me-south-1": 7.125, + "sa-east-1": 8.765, + "us-east-1": 0.0, "us-east-2": 5.901, "us-gov-east-1": 6.677, "us-gov-west-1": 6.677, @@ -76719,30 +86333,31 @@ "af-south-1": 14.381, "ap-east-1": 14.444, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 12.893, + "ap-northeast-3": 12.893, "ap-south-1": 12.461, "ap-south-2": 12.461, "ap-southeast-1": 0.0, "ap-southeast-2": 13.133, - "ap-southeast-3": 0.0, + "ap-southeast-3": 13.133, "ap-southeast-4": 13.133, "ca-central-1": 12.125, + "ca-west-1": 0.0, "eu-central-1": 13.085, - "eu-central-2": 14.381, + "eu-central-2": 0.0, "eu-north-1": 11.501, - "eu-south-1": 0.0, + "eu-south-1": 12.711, "eu-south-2": 12.125, "eu-west-1": 12.125, "eu-west-2": 12.749, "eu-west-3": 12.749, - "il-central-1": 12.725, + "il-central-1": 0.0, "me-central-1": 13.325, - "me-south-1": 13.267, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 10.973, "us-east-2": 0.0, - "us-gov-east-1": 13.229, + "us-gov-east-1": 0.0, "us-gov-west-1": 13.229, "us-west-1": 0.0, "us-west-2": 10.973, @@ -76752,288 +86367,396 @@ "us-gov-west-1": 6.141 }, "i4g.large": { - "ca-central-1": 0.0, - "eu-west-1": 0.0, + "ap-southeast-1": 0.0, + "ca-central-1": 0.24352, + "eu-west-1": 0.24352, "us-east-1": 0.21074, "us-east-2": 0.21074, "us-west-2": 0.21074 }, "i4g.xlarge": { - "ca-central-1": 0.43074, + "ap-southeast-1": 0.42656, + "ca-central-1": 0.0, "eu-west-1": 0.3967, "us-east-1": 0.39607, - "us-east-2": 0.39607, + "us-east-2": 0.36518, "us-west-2": 0.0 }, "i4g.2xlarge": { + "ap-southeast-1": 0.93957, "ca-central-1": 0.8058, "eu-west-1": 0.8058, - "us-east-1": 0.74276, - "us-east-2": 0.80454, + "us-east-1": 0.0, + "us-east-2": 0.74276, "us-west-2": 0.80454 }, "i4g.4xlarge": { + "ap-southeast-1": 1.75414, "ca-central-1": 1.48659, - "eu-west-1": 1.48659, + "eu-west-1": 0.0, "us-east-1": 1.48407, "us-east-2": 1.36052, "us-west-2": 1.36052 }, "i4g.8xlarge": { + "ap-southeast-1": 3.38329, "ca-central-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 2.84314, - "us-east-2": 2.84314, + "eu-west-1": 3.12051, + "us-east-1": 0.0, + "us-east-2": 2.59604, "us-west-2": 2.59604 }, "i4g.16xlarge": { + "ap-southeast-1": 6.04916, "ca-central-1": 0.0, "eu-west-1": 5.57137, "us-east-1": 0.0, "us-east-2": 5.06708, - "us-west-2": 0.0 + "us-west-2": 5.06708 }, "i4i.large": { "af-south-1": 0.0, - "ap-east-1": 0.306, - "ap-northeast-1": 0.278, + "ap-east-1": 0.283, + "ap-northeast-1": 0.258, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.27, + "ap-south-1": 0.251, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-4": 0.283, + "ap-southeast-3": 0.262, + "ap-southeast-4": 0.262, "ca-central-1": 0.246, + "ca-west-1": 0.264, "eu-central-1": 0.281, + "eu-central-2": 0.281, "eu-north-1": 0.236, "eu-south-1": 0.275, "eu-west-1": 0.0, "eu-west-2": 0.255, - "eu-west-3": 0.255, - "il-central-1": 0.0, - "me-south-1": 0.285, - "sa-east-1": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.275, + "me-central-1": 0.285, + "me-south-1": 0.0, + "sa-east-1": 0.33, "us-east-1": 0.245, "us-east-2": 0.245, "us-gov-east-1": 0.284, "us-gov-west-1": 0.284, "us-west-1": 0.246, - "us-west-2": 0.0 + "us-west-2": 0.228 }, "i4i.xlarge": { "af-south-1": 0.507, - "ap-east-1": 0.0, + "ap-east-1": 0.51, "ap-northeast-1": 0.499, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.459, + "ap-northeast-2": 0.459, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, + "ap-south-2": 0.485, "ap-southeast-1": 0.468, "ap-southeast-2": 0.468, - "ap-southeast-4": 0.468, + "ap-southeast-3": 0.468, + "ap-southeast-4": 0.509, "ca-central-1": 0.0, + "ca-west-1": 0.473, "eu-central-1": 0.0, - "eu-north-1": 0.451, + "eu-central-2": 0.0, + "eu-north-1": 0.415, "eu-south-1": 0.455, - "eu-west-1": 0.0, + "eu-west-1": 0.435, "eu-west-2": 0.494, "eu-west-3": 0.494, "il-central-1": 0.0, + "me-central-1": 0.472, "me-south-1": 0.514, "sa-east-1": 0.604, - "us-east-1": 0.4, + "us-east-1": 0.434, "us-east-2": 0.4, "us-gov-east-1": 0.511, - "us-gov-west-1": 0.47, - "us-west-1": 0.435, + "us-gov-west-1": 0.511, + "us-west-1": 0.473, "us-west-2": 0.434 }, "i4i.metal": { "af-south-1": 0.0, "ap-east-1": 14.627, - "ap-northeast-1": 13.008, - "ap-northeast-2": 13.008, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 13.008, "ap-south-1": 12.586, + "ap-south-2": 12.586, "ap-southeast-1": 13.29, "ap-southeast-2": 13.29, + "ap-southeast-3": 13.29, "ap-southeast-4": 0.0, "ca-central-1": 12.234, + "ca-west-1": 12.234, "eu-central-1": 13.219, + "eu-central-2": 14.529, "eu-north-1": 11.6, "eu-south-1": 12.867, "eu-west-1": 12.234, "eu-west-2": 12.867, "eu-west-3": 12.867, "il-central-1": 12.839, + "me-central-1": 13.431, "me-south-1": 13.431, "sa-east-1": 17.655, - "us-east-1": 0.0, + "us-east-1": 11.107, "us-east-2": 11.107, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 13.36, "us-west-1": 0.0, "us-west-2": 11.107 }, "i4i.2xlarge": { "af-south-1": 1.027, "ap-east-1": 1.122, - "ap-northeast-1": 0.93, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.011, - "ap-northeast-3": 1.011, - "ap-south-1": 0.0, + "ap-northeast-3": 0.93, + "ap-south-1": 0.904, + "ap-south-2": 0.982, "ap-southeast-1": 1.03, "ap-southeast-2": 1.03, - "ap-southeast-4": 1.03, + "ap-southeast-3": 1.03, + "ap-southeast-4": 0.948, "ca-central-1": 0.0, + "ca-west-1": 0.957, "eu-central-1": 1.025, + "eu-central-2": 0.0, "eu-north-1": 0.914, "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 1.001, - "il-central-1": 0.0, + "eu-west-2": 0.921, + "eu-west-3": 0.0, + "il-central-1": 0.92, + "me-central-1": 1.04, "me-south-1": 0.957, - "sa-east-1": 1.33, + "sa-east-1": 1.221, "us-east-1": 0.88, "us-east-2": 0.811, "us-gov-east-1": 0.952, "us-gov-west-1": 1.035, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.811 }, "i4i.4xlarge": { "af-south-1": 2.109, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.735, "ap-northeast-3": 1.735, "ap-south-1": 1.838, + "ap-south-2": 1.683, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ap-southeast-3": 1.771, "ap-southeast-4": 1.935, - "ca-central-1": 0.0, + "ca-central-1": 1.639, + "ca-west-1": 0.0, "eu-central-1": 1.925, - "eu-north-1": 1.559, - "eu-south-1": 1.877, + "eu-central-2": 2.106, + "eu-north-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 1.718, "eu-west-3": 1.877, - "il-central-1": 1.873, - "me-south-1": 1.788, + "il-central-1": 1.714, + "me-central-1": 1.788, + "me-south-1": 0.0, "sa-east-1": 0.0, - "us-east-1": 1.635, - "us-east-2": 1.498, - "us-gov-east-1": 1.945, + "us-east-1": 1.498, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 1.945, - "us-west-1": 0.0, + "us-west-1": 1.79, "us-west-2": 1.635 }, "i4i.8xlarge": { - "af-south-1": 3.733, - "ap-east-1": 3.751, + "af-south-1": 4.094, + "ap-east-1": 4.113, "ap-northeast-1": 3.668, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.346, "ap-northeast-3": 3.668, "ap-south-1": 0.0, + "ap-south-2": 3.552, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-4": 3.745, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 3.455, + "ca-west-1": 3.455, "eu-central-1": 0.0, + "eu-central-2": 3.726, "eu-north-1": 0.0, "eu-south-1": 3.311, "eu-west-1": 3.455, "eu-west-2": 3.311, "eu-west-3": 0.0, "il-central-1": 0.0, + "me-central-1": 3.784, "me-south-1": 3.451, - "sa-east-1": 4.507, - "us-east-1": 2.871, + "sa-east-1": 0.0, + "us-east-1": 3.145, "us-east-2": 2.871, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 3.152, "us-west-2": 2.871 }, + "i4i.12xlarge": { + "af-south-1": 6.078, + "ap-east-1": 5.563, + "ap-northeast-1": 4.956, + "ap-northeast-2": 0.0, + "ap-northeast-3": 4.956, + "ap-south-1": 4.798, + "ap-south-2": 5.265, + "ap-southeast-1": 5.062, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.062, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 5.035, + "eu-central-2": 5.526, + "eu-north-1": 4.859, + "eu-south-1": 4.903, + "eu-west-1": 5.12, + "eu-west-2": 4.903, + "eu-west-3": 5.381, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 6.699, + "us-east-1": 4.655, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 5.12, + "us-west-2": 0.0 + }, "i4i.16xlarge": { "af-south-1": 8.063, "ap-east-1": 7.376, "ap-northeast-1": 0.0, "ap-northeast-2": 7.211, - "ap-northeast-3": 7.211, + "ap-northeast-3": 6.567, "ap-south-1": 6.355, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ap-southeast-4": 6.707, + "ap-south-2": 6.355, + "ap-southeast-1": 6.707, + "ap-southeast-2": 6.707, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 6.785, - "eu-central-1": 6.672, + "ca-west-1": 6.785, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 6.436, - "eu-south-1": 7.133, - "eu-west-1": 6.179, + "eu-south-1": 6.496, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 7.133, "il-central-1": 0.0, + "me-central-1": 7.443, "me-south-1": 6.778, "sa-east-1": 0.0, "us-east-1": 6.165, "us-east-2": 0.0, - "us-gov-east-1": 6.743, + "us-gov-east-1": 7.404, "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 6.165 }, + "i4i.24xlarge": { + "af-south-1": 10.949, + "ap-east-1": 11.0018, + "ap-northeast-1": 0.0, + "ap-northeast-2": 10.75364, + "ap-northeast-3": 0.0, + "ap-south-1": 10.40516, + "ap-south-2": 10.40516, + "ap-southeast-1": 10.98596, + "ap-southeast-2": 10.98596, + "ap-southeast-3": 10.98596, + "ap-southeast-4": 9.9986, + "ca-central-1": 10.11476, + "ca-west-1": 10.11476, + "eu-central-1": 0.0, + "eu-central-2": 12.00817, + "eu-north-1": 9.59204, + "eu-south-1": 10.63748, + "eu-west-1": 10.11476, + "eu-west-2": 9.6818, + "eu-west-3": 9.6818, + "me-central-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 13.2722, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 11.04404, + "us-gov-west-1": 11.04404, + "us-west-1": 10.11476, + "us-west-2": 8.3618 + }, "i4i.32xlarge": { - "af-south-1": 0.0, + "af-south-1": 14.557, "ap-east-1": 14.6274, "ap-northeast-1": 13.0082, "ap-northeast-2": 0.0, - "ap-northeast-3": 13.0082, + "ap-northeast-3": 0.0, "ap-south-1": 12.5858, + "ap-south-2": 0.0, "ap-southeast-1": 13.2898, - "ap-southeast-2": 0.0, + "ap-southeast-2": 13.2898, + "ap-southeast-3": 13.2898, "ap-southeast-4": 13.2898, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 13.2194, + "eu-central-2": 14.52884, "eu-north-1": 0.0, "eu-south-1": 12.8674, - "eu-west-1": 0.0, + "eu-west-1": 12.2338, "eu-west-2": 12.8674, "eu-west-3": 12.8674, - "il-central-1": 0.0, - "me-south-1": 13.4306, + "il-central-1": 12.83924, + "me-central-1": 13.4306, + "me-south-1": 0.0, "sa-east-1": 17.6546, "us-east-1": 0.0, - "us-east-2": 11.1074, - "us-gov-east-1": 13.3602, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 12.2338, "us-west-2": 0.0 }, "im4gn.large": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.29615, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.29615, - "ca-central-1": 0.0, - "eu-central-1": 0.27318, + "ca-central-1": 0.27691, + "eu-central-1": 0.29486, "eu-west-1": 0.25685, "eu-west-2": 0.0, "eu-west-3": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.2382, "us-east-2": 0.2382, - "us-west-2": 0.25639 + "us-west-2": 0.0 }, "im4gn.xlarge": { "ap-northeast-1": 0.48306, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.53599, + "ap-southeast-2": 0.0, "ca-central-1": 0.4574, "eu-central-1": 0.49005, - "eu-west-1": 0.4574, - "eu-west-2": 0.5206, + "eu-west-1": 0.49751, + "eu-west-2": 0.47839, "eu-west-3": 0.0, "us-east-1": 0.45647, - "us-east-2": 0.42009, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 0.45647 }, "im4gn.2xlarge": { "ap-northeast-1": 0.0, @@ -77044,7 +86767,7 @@ "eu-west-1": 0.0, "eu-west-2": 1.0536, "eu-west-3": 0.0, - "us-east-1": 0.0, + "us-east-1": 0.92534, "us-east-2": 0.92534, "us-west-2": 0.0 }, @@ -77052,13 +86775,13 @@ "ap-northeast-1": 1.83202, "ap-southeast-1": 0.0, "ap-southeast-2": 1.86934, - "ca-central-1": 1.72942, - "eu-central-1": 2.03351, + "ca-central-1": 0.0, + "eu-central-1": 0.0, "eu-west-1": 1.72942, "eu-west-2": 0.0, "eu-west-3": 1.81337, "us-east-1": 1.58017, - "us-east-2": 0.0, + "us-east-2": 1.58017, "us-west-2": 1.72568 }, "im4gn.8xlarge": { @@ -77066,13 +86789,13 @@ "ap-southeast-1": 3.61367, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 3.59502, "eu-west-1": 3.65472, "eu-west-2": 3.50174, - "eu-west-3": 3.83941, - "us-east-1": 3.32637, + "eu-west-3": 3.50174, + "us-east-1": 0.0, "us-east-2": 3.32637, - "us-west-2": 3.32637 + "us-west-2": 0.0 }, "im4gn.16xlarge": { "ap-northeast-1": 0.0, @@ -77083,57 +86806,57 @@ "eu-west-1": 6.54266, "eu-west-2": 6.87847, "eu-west-3": 0.0, - "us-east-1": 5.94567, - "us-east-2": 5.94567, - "us-west-2": 0.0 + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 5.94567 }, "inf1.xlarge": { "ap-east-1": 0.0, "ap-northeast-1": 0.383, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.296, + "ap-south-1": 0.311, "ap-southeast-1": 0.383, "ap-southeast-2": 0.359, - "ca-central-1": 0.326, + "ca-central-1": 0.311, "eu-central-1": 0.0, - "eu-north-1": 0.313, - "eu-south-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 0.34, + "eu-north-1": 0.299, + "eu-south-1": 0.341, + "eu-west-1": 0.311, + "eu-west-2": 0.324, "eu-west-3": 0.339, - "me-south-1": 0.0, + "me-south-1": 0.354, "sa-east-1": 0.456, - "us-east-1": 0.0, + "us-east-1": 0.298, "us-east-2": 0.0, "us-gov-east-1": 0.344, "us-gov-west-1": 0.361, - "us-west-1": 0.33, + "us-west-1": 0.347, "us-west-2": 0.298 }, "inf1.2xlarge": { "ap-east-1": 0.683, "ap-northeast-1": 0.643, - "ap-northeast-2": 0.597, + "ap-northeast-2": 0.571, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.614, "ap-southeast-2": 0.0, "ca-central-1": 0.528, - "eu-central-1": 0.578, + "eu-central-1": 0.605, "eu-north-1": 0.0, "eu-south-1": 0.577, - "eu-west-1": 0.553, + "eu-west-1": 0.528, "eu-west-2": 0.549, - "eu-west-3": 0.573, + "eu-west-3": 0.548, "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.509, + "sa-east-1": 0.723, + "us-east-1": 0.487, "us-east-2": 0.487, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.609, + "us-gov-east-1": 0.581, + "us-gov-west-1": 0.581, "us-west-1": 0.56, - "us-west-2": 0.0 + "us-west-2": 0.487 }, "inf1.6xlarge": { "ap-east-1": 2.053, @@ -77142,21 +86865,21 @@ "ap-northeast-3": 0.0, "ap-south-1": 1.441, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.689, - "ca-central-1": 1.44, + "ap-southeast-2": 1.6, + "ca-central-1": 1.519, "eu-central-1": 1.6, "eu-north-1": 1.454, "eu-south-1": 1.507, "eu-west-1": 1.44, "eu-west-2": 1.59, - "eu-west-3": 1.587, + "eu-west-3": 0.0, "me-south-1": 0.0, "sa-east-1": 2.192, - "us-east-1": 1.376, + "us-east-1": 1.305, "us-east-2": 0.0, - "us-gov-east-1": 1.613, - "us-gov-west-1": 1.613, - "us-west-1": 1.543, + "us-gov-east-1": 1.703, + "us-gov-west-1": 1.703, + "us-west-1": 1.628, "us-west-2": 0.0 }, "inf1.24xlarge": { @@ -77165,7 +86888,7 @@ "ap-northeast-1": 6.884, "ap-northeast-2": 6.286, "ap-northeast-3": 0.0, - "ap-south-1": 5.388, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 6.381, "ca-central-1": 0.0, @@ -77174,18 +86897,19 @@ "eu-south-1": 5.655, "eu-west-1": 5.385, "eu-west-2": 5.986, - "eu-west-3": 5.642, + "eu-west-3": 0.0, "me-south-1": 5.911, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 5.13, "us-east-2": 4.846, "us-gov-east-1": 6.078, - "us-gov-west-1": 0.0, + "us-gov-west-1": 6.435, "us-west-1": 0.0, "us-west-2": 0.0 }, "is4gen.medium": { "ap-northeast-1": 0.22588, + "ap-south-1": 0.22005, "ap-southeast-1": 0.22906, "ap-southeast-2": 0.22906, "ca-central-1": 0.21568, @@ -77199,6 +86923,7 @@ }, "is4gen.large": { "ap-northeast-1": 0.39545, + "ap-south-1": 0.3838, "ap-southeast-1": 0.40183, "ap-southeast-2": 0.40183, "ca-central-1": 0.37505, @@ -77212,6 +86937,7 @@ }, "is4gen.xlarge": { "ap-northeast-1": 0.7346, + "ap-south-1": 0.7113, "ap-southeast-1": 0.74735, "ap-southeast-2": 0.74735, "ca-central-1": 0.6938, @@ -77225,6 +86951,7 @@ }, "is4gen.2xlarge": { "ap-northeast-1": 1.4816, + "ap-south-1": 1.435, "ap-southeast-1": 1.5071, "ap-southeast-2": 1.5071, "ca-central-1": 1.4, @@ -77238,6 +86965,7 @@ }, "is4gen.4xlarge": { "ap-northeast-1": 2.8382, + "ap-south-1": 2.745, "ap-southeast-1": 2.88921, "ap-southeast-2": 2.88921, "ca-central-1": 2.675, @@ -77251,6 +86979,7 @@ }, "is4gen.8xlarge": { "ap-northeast-1": 5.5514, + "ap-south-1": 5.365, "ap-southeast-1": 5.65342, "ap-southeast-2": 5.65342, "ca-central-1": 5.225, @@ -77343,11 +87072,11 @@ "ap-northeast-1": 0.216, "ap-northeast-2": 0.191, "ap-southeast-1": 0.208, - "ap-southeast-2": 0.212, - "eu-central-1": 0.197, + "ap-southeast-2": 0.0, + "eu-central-1": 0.179, "eu-west-1": 0.0, "sa-east-1": 0.195, - "us-east-1": 0.184, + "us-east-1": 0.167, "us-gov-west-1": 0.192, "us-west-1": 0.185, "us-west-2": 0.0 @@ -77355,26 +87084,26 @@ "m3.large": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.301685, - "ap-southeast-1": 0.296, - "ap-southeast-2": 0.0, - "eu-central-1": 0.258, + "ap-southeast-1": 0.316, + "ap-southeast-2": 0.286, + "eu-central-1": 0.284, "eu-west-1": 0.271, - "sa-east-1": 0.309, + "sa-east-1": 0.0, "us-east-1": 0.256, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.268, "us-west-1": 0.254, - "us-west-2": 0.256 + "us-west-2": 0.233 }, "m3.xlarge": { - "ap-northeast-1": 0.534, + "ap-northeast-1": 0.485, "ap-northeast-2": 0.502325, "ap-southeast-1": 0.0, "ap-southeast-2": 0.472, "eu-central-1": 0.415, "eu-west-1": 0.432, - "sa-east-1": 0.481, - "us-east-1": 0.0, - "us-gov-west-1": 0.0, + "sa-east-1": 0.519, + "us-east-1": 0.366, + "us-gov-west-1": 0.47, "us-west-1": 0.439, "us-west-2": 0.366 }, @@ -77388,12 +87117,12 @@ "sa-east-1": 0.0, "us-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.778, - "us-west-2": 0.0 + "us-west-1": 0.716, + "us-west-2": 0.695 }, "m4.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.223, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.2375, @@ -77401,58 +87130,58 @@ "ca-central-1": 0.0, "eu-central-1": 0.22, "eu-west-1": 0.0, - "eu-west-2": 0.2276, + "eu-west-2": 0.0, "sa-east-1": 0.2749, "us-east-1": 0.2, - "us-east-2": 0.21, + "us-east-2": 0.2, "us-gov-west-1": 0.0, - "us-west-1": 0.217, + "us-west-1": 0.2287, "us-west-2": 0.2 }, "m4.xlarge": { - "ap-northeast-1": 0.358, - "ap-northeast-2": 0.3706, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.346, "ap-northeast-3": 0.358, - "ap-south-1": 0.0, + "ap-south-1": 0.31, "ap-southeast-1": 0.375, "ap-southeast-2": 0.0, "ca-central-1": 0.3442, "eu-central-1": 0.364, "eu-west-1": 0.3442, "eu-west-2": 0.332, - "sa-east-1": 0.4498, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.3, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.334, "us-west-2": 0.32 }, "m4.2xlarge": { "ap-northeast-1": 0.6676, - "ap-northeast-2": 0.592, + "ap-northeast-2": 0.6412, "ap-northeast-3": 0.616, "ap-south-1": 0.0, "ap-southeast-1": 0.6, - "ap-southeast-2": 0.6, - "ca-central-1": 0.5884, + "ap-southeast-2": 0.0, + "ca-central-1": 0.544, "eu-central-1": 0.58, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 0.6104, "sa-east-1": 0.7996, - "us-east-1": 0.0, + "us-east-1": 0.54, "us-east-2": 0.5, - "us-gov-west-1": 0.6544, + "us-gov-west-1": 0.604, "us-west-1": 0.6148, "us-west-2": 0.5 }, "m4.4xlarge": { - "ap-northeast-1": 1.132, + "ap-northeast-1": 1.2352, "ap-northeast-2": 1.1824, "ap-northeast-3": 0.0, "ap-south-1": 0.94, "ap-southeast-1": 1.1, "ap-southeast-2": 1.1, - "ca-central-1": 1.0768, + "ca-central-1": 0.988, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, @@ -77460,11 +87189,11 @@ "us-east-1": 0.9, "us-east-2": 0.98, "us-gov-west-1": 0.0, - "us-west-1": 1.1296, - "us-west-2": 0.98 + "us-west-1": 0.0, + "us-west-2": 0.9 }, "m4.10xlarge": { - "ap-northeast-1": 2.68, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.56, "ap-south-1": 2.2, "ap-southeast-1": 2.6, @@ -77483,10 +87212,10 @@ "m4.16xlarge": { "ap-northeast-1": 4.228, "ap-northeast-2": 4.036, - "ap-northeast-3": 4.228, - "ap-south-1": 3.46, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 4.1, - "ap-southeast-2": 4.1, + "ap-southeast-2": 0.0, "ca-central-1": 3.652, "eu-central-1": 3.94, "eu-west-1": 3.652, @@ -77499,64 +87228,66 @@ "us-west-2": 3.3 }, "m5.large": { - "af-south-1": 0.191, + "af-south-1": 0.183, "ap-east-1": 0.188, "ap-northeast-1": 0.188, "ap-northeast-2": 0.181, - "ap-northeast-3": 0.188, + "ap-northeast-3": 0.18, "ap-south-1": 0.157, "ap-south-2": 0.0, "ap-southeast-1": 0.176, - "ap-southeast-2": 0.176, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.184, "ap-southeast-4": 0.176, - "ca-central-1": 0.17, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.178, "eu-central-2": 0.183, - "eu-north-1": 0.158, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.163, "eu-west-1": 0.0, - "eu-west-2": 0.167, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.175, "il-central-1": 0.169, "me-central-1": 0.0, - "me-south-1": 0.174, + "me-south-1": 0.0, "sa-east-1": 0.209, - "us-east-1": 0.158, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.158, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.185, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.172 }, "m5.xlarge": { "af-south-1": 0.31, - "ap-east-1": 0.32, - "ap-northeast-1": 0.319, - "ap-northeast-2": 0.292, + "ap-east-1": 0.336, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.319, - "ap-south-1": 0.258, + "ap-south-1": 0.27, "ap-south-2": 0.258, "ap-southeast-1": 0.296, "ap-southeast-2": 0.296, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.296, "ap-southeast-4": 0.296, "ca-central-1": 0.0, - "eu-central-1": 0.3, + "ca-west-1": 0.0, + "eu-central-1": 0.286, "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.294, + "eu-south-1": 0.0, "eu-south-2": 0.283, - "eu-west-1": 0.0, + "eu-west-1": 0.283, "eu-west-2": 0.278, "eu-west-3": 0.294, - "il-central-1": 0.0, + "il-central-1": 0.281, "me-central-1": 0.292, "me-south-1": 0.306, "sa-east-1": 0.38, - "us-east-1": 0.0, + "us-east-1": 0.248, "us-east-2": 0.0, "us-gov-east-1": 0.313, "us-gov-west-1": 0.313, @@ -77570,197 +87301,203 @@ "ap-northeast-1": 6.052, "ap-northeast-2": 5.764, "ap-northeast-3": 6.052, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-1": 4.948, + "ap-south-2": 4.973, "ap-southeast-1": 5.86, "ap-southeast-2": 5.86, "ap-southeast-3": 5.86, "ap-southeast-4": 5.885, "ca-central-1": 5.236, - "eu-central-1": 5.62, + "ca-west-1": 5.261, + "eu-central-1": 0.0, "eu-central-2": 6.197, "eu-north-1": 4.996, "eu-south-1": 5.476, "eu-south-2": 0.0, "eu-west-1": 5.236, - "eu-west-2": 0.0, - "eu-west-3": 5.476, + "eu-west-2": 5.428, + "eu-west-3": 0.0, "il-central-1": 5.518, "me-central-1": 5.775, - "me-south-1": 5.75, + "me-south-1": 0.0, "sa-east-1": 7.444, - "us-east-1": 0.0, - "us-east-2": 4.708, + "us-east-1": 4.708, + "us-east-2": 0.0, "us-gov-east-1": 5.908, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0, + "us-gov-west-1": 5.908, + "us-west-1": 5.476, + "us-west-2": 4.708, "us-west-2-lax-1": 5.63 }, "m5.2xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 0.661, "ap-northeast-1": 0.596, "ap-northeast-2": 0.6, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.626, "ap-south-1": 0.504, - "ap-south-2": 0.553, + "ap-south-2": 0.0, "ap-southeast-1": 0.58, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.58, "ap-southeast-3": 0.609, - "ap-southeast-4": 0.605, + "ap-southeast-4": 0.0, "ca-central-1": 0.554, - "eu-central-1": 0.591, + "ca-west-1": 0.0, + "eu-central-1": 0.56, "eu-central-2": 0.0, "eu-north-1": 0.535, - "eu-south-1": 0.575, - "eu-south-2": 0.553, - "eu-west-1": 0.528, - "eu-west-2": 0.0, + "eu-south-1": 0.548, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.574, "eu-west-3": 0.0, - "il-central-1": 0.619, + "il-central-1": 0.0, "me-central-1": 0.596, "me-south-1": 0.602, "sa-east-1": 0.746, - "us-east-1": 0.484, + "us-east-1": 0.507, "us-east-2": 0.0, "us-gov-east-1": 0.616, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.584, "us-west-1": 0.548, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.561 + "us-west-2": 0.484, + "us-west-2-lax-1": 0.0 }, "m5.4xlarge": { "af-south-1": 0.0, - "ap-east-1": 1.221, + "ap-east-1": 1.156, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 1.092, + "ap-northeast-2": 1.044, + "ap-northeast-3": 0.0, "ap-south-1": 0.908, "ap-south-2": 0.0, - "ap-southeast-1": 1.06, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.123, "ap-southeast-3": 1.06, "ap-southeast-4": 1.181, - "ca-central-1": 0.0, + "ca-central-1": 1.008, + "ca-west-1": 1.067, "eu-central-1": 0.0, "eu-central-2": 1.137, - "eu-north-1": 0.971, + "eu-north-1": 0.916, "eu-south-1": 0.996, "eu-south-2": 1.032, "eu-west-1": 0.956, - "eu-west-2": 0.988, + "eu-west-2": 0.0, "eu-west-3": 0.996, "il-central-1": 0.0, "me-central-1": 1.067, - "me-south-1": 0.0, + "me-south-1": 1.105, "sa-east-1": 1.393, "us-east-1": 0.0, "us-east-2": 0.868, - "us-gov-east-1": 0.0, - "us-gov-west-1": 1.068, + "us-gov-east-1": 1.131, + "us-gov-west-1": 1.131, "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.0 }, "m5.8xlarge": { - "af-south-1": 2.132, + "af-south-1": 2.254, "ap-east-1": 2.212, "ap-northeast-1": 2.216, - "ap-northeast-2": 2.1, - "ap-northeast-3": 0.0, + "ap-northeast-2": 1.988, + "ap-northeast-3": 2.203, "ap-south-1": 1.716, "ap-south-2": 1.838, - "ap-southeast-1": 2.138, - "ap-southeast-2": 0.0, + "ap-southeast-1": 2.02, + "ap-southeast-2": 2.147, "ap-southeast-3": 0.0, "ap-southeast-4": 2.045, - "ca-central-1": 1.915, + "ca-central-1": 0.0, + "ca-west-1": 2.008, "eu-central-1": 1.94, "eu-central-2": 0.0, "eu-north-1": 1.841, - "eu-south-1": 2.0, + "eu-south-1": 0.0, "eu-south-2": 1.94, "eu-west-1": 1.812, - "eu-west-2": 1.876, - "eu-west-3": 0.0, - "il-central-1": 1.923, + "eu-west-2": 0.0, + "eu-west-3": 1.892, + "il-central-1": 2.102, "me-central-1": 2.121, "me-south-1": 1.983, "sa-east-1": 0.0, "us-east-1": 1.636, - "us-east-2": 1.729, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.036, + "us-east-2": 1.636, + "us-gov-east-1": 2.163, + "us-gov-west-1": 2.163, "us-west-1": 1.892, - "us-west-2": 0.0, - "us-west-2-lax-1": 0.0 + "us-west-2": 1.729, + "us-west-2-lax-1": 1.943 }, "m5.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 3.463, + "ap-east-1": 0.0, "ap-northeast-1": 3.076, "ap-northeast-2": 0.0, "ap-northeast-3": 3.076, - "ap-south-1": 2.672, + "ap-south-1": 2.524, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 3.153, + "ap-southeast-3": 2.98, "ap-southeast-4": 3.293, "ca-central-1": 2.668, - "eu-central-1": 3.047, + "ca-west-1": 0.0, + "eu-central-1": 2.86, "eu-central-2": 3.343, - "eu-north-1": 0.0, + "eu-north-1": 2.712, "eu-south-1": 2.949, "eu-south-2": 2.693, "eu-west-1": 2.668, "eu-west-2": 2.942, "eu-west-3": 2.968, - "il-central-1": 3.091, + "il-central-1": 0.0, "me-central-1": 2.95, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "me-south-1": 2.925, + "sa-east-1": 3.772, "us-east-1": 2.404, "us-east-2": 2.404, "us-gov-east-1": 0.0, "us-gov-west-1": 3.004, "us-west-1": 2.974, - "us-west-2": 2.544, - "us-west-2-lax-1": 0.0 + "us-west-2": 2.404, + "us-west-2-lax-1": 3.032 }, "m5.16xlarge": { "af-south-1": 4.164, "ap-east-1": 0.0, - "ap-northeast-1": 4.068, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.1, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 3.357, + "ap-southeast-1": 4.177, "ap-southeast-2": 3.94, - "ap-southeast-3": 3.94, - "ap-southeast-4": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 4.349, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 4.173, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 3.364, + "eu-south-1": 3.899, "eu-south-2": 3.754, - "eu-west-1": 3.753, - "eu-west-2": 3.889, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 3.924, - "il-central-1": 3.72, + "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 3.866, "sa-east-1": 5.271, "us-east-1": 0.0, "us-east-2": 3.172, - "us-gov-east-1": 4.226, + "us-gov-east-1": 3.972, "us-gov-west-1": 3.972, - "us-west-1": 3.924, + "us-west-1": 3.684, "us-west-2": 3.359, - "us-west-2-lax-1": 3.786 + "us-west-2-lax-1": 4.01 }, "m5.24xlarge": { "af-south-1": 6.196, @@ -77768,32 +87505,33 @@ "ap-northeast-1": 6.052, "ap-northeast-2": 0.0, "ap-northeast-3": 6.052, - "ap-south-1": 4.948, + "ap-south-1": 0.0, "ap-south-2": 4.973, - "ap-southeast-1": 0.0, + "ap-southeast-1": 5.86, "ap-southeast-2": 5.86, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 5.885, "ca-central-1": 5.236, - "eu-central-1": 5.62, + "ca-west-1": 5.261, + "eu-central-1": 0.0, "eu-central-2": 6.197, "eu-north-1": 4.996, - "eu-south-1": 5.476, - "eu-south-2": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 5.261, "eu-west-1": 5.236, "eu-west-2": 0.0, "eu-west-3": 5.476, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 5.775, "me-south-1": 0.0, - "sa-east-1": 7.444, + "sa-east-1": 0.0, "us-east-1": 4.708, "us-east-2": 4.708, - "us-gov-east-1": 5.908, + "us-gov-east-1": 0.0, "us-gov-west-1": 5.908, "us-west-1": 5.476, "us-west-2": 4.708, - "us-west-2-lax-1": 5.63 + "us-west-2-lax-1": 0.0 }, "m5a.large": { "ap-northeast-1": 0.168, @@ -78100,34 +87838,35 @@ "us-west-2": 5.069 }, "m5d.large": { - "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.211, + "af-south-1": 0.215, + "ap-east-1": 0.221, + "ap-northeast-1": 0.211, + "ap-northeast-2": 0.204, + "ap-northeast-3": 0.202, "ap-south-1": 0.178, "ap-south-2": 0.186, - "ap-southeast-1": 0.206, - "ap-southeast-2": 0.198, - "ap-southeast-3": 0.206, + "ap-southeast-1": 0.197, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.197, "ap-southeast-4": 0.198, - "ca-central-1": 0.0, + "ca-central-1": 0.19, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.215, "eu-north-1": 0.176, - "eu-south-1": 0.188, + "eu-south-1": 0.196, "eu-south-2": 0.19, "eu-west-1": 0.19, "eu-west-2": 0.0, - "eu-west-3": 0.196, + "eu-west-3": 0.188, "il-central-1": 0.0, "me-central-1": 0.195, - "me-south-1": 0.195, - "sa-east-1": 0.247, + "me-south-1": 0.203, + "sa-east-1": 0.0, "us-east-1": 0.169, "us-east-2": 0.169, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.208, + "us-gov-west-1": 0.199, "us-west-1": 0.189, "us-west-2": 0.176 }, @@ -78135,56 +87874,58 @@ "af-south-1": 0.374, "ap-east-1": 0.385, "ap-northeast-1": 0.366, - "ap-northeast-2": 0.334, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.366, "ap-south-1": 0.3, "ap-south-2": 0.0, "ap-southeast-1": 0.338, "ap-southeast-2": 0.34, - "ap-southeast-3": 0.355, - "ap-southeast-4": 0.0, - "ca-central-1": 0.323, + "ap-southeast-3": 0.338, + "ap-southeast-4": 0.34, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.311, "eu-south-1": 0.336, - "eu-south-2": 0.308, + "eu-south-2": 0.0, "eu-west-1": 0.323, - "eu-west-2": 0.0, + "eu-west-2": 0.318, "eu-west-3": 0.32, "il-central-1": 0.0, - "me-central-1": 0.35, - "me-south-1": 0.334, - "sa-east-1": 0.0, - "us-east-1": 0.282, + "me-central-1": 0.0, + "me-south-1": 0.35, + "sa-east-1": 0.437, + "us-east-1": 0.296, "us-east-2": 0.296, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.359, + "us-gov-west-1": 0.359, "us-west-1": 0.322, - "us-west-2": 0.282 + "us-west-2": 0.296 }, "m5d.metal": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 7.54, "ap-northeast-1": 7.108, "ap-northeast-2": 6.772, "ap-northeast-3": 7.108, "ap-south-1": 5.956, - "ap-south-2": 5.981, - "ap-southeast-1": 6.868, - "ap-southeast-2": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 6.916, "ap-southeast-3": 6.868, "ap-southeast-4": 6.941, "ca-central-1": 6.148, + "ca-west-1": 0.0, "eu-central-1": 6.628, "eu-central-2": 7.306, - "eu-north-1": 5.86, + "eu-north-1": 0.0, "eu-south-1": 6.436, "eu-south-2": 6.173, "eu-west-1": 0.0, - "eu-west-2": 6.388, - "eu-west-3": 6.436, - "il-central-1": 6.475, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "il-central-1": 0.0, "me-central-1": 6.778, "me-south-1": 6.753, "sa-east-1": 0.0, @@ -78197,67 +87938,69 @@ }, "m5d.2xlarge": { "af-south-1": 0.7, - "ap-east-1": 0.0, + "ap-east-1": 0.758, "ap-northeast-1": 0.723, "ap-northeast-2": 0.656, "ap-northeast-3": 0.719, "ap-south-1": 0.588, - "ap-south-2": 0.642, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.668, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.664, "ap-southeast-4": 0.0, - "ca-central-1": 0.635, - "eu-central-1": 0.0, - "eu-central-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.659, + "eu-central-1": 0.681, + "eu-central-2": 0.723, "eu-north-1": 0.0, "eu-south-1": 0.66, - "eu-south-2": 0.659, - "eu-west-1": 0.0, + "eu-south-2": 0.629, + "eu-west-1": 0.638, "eu-west-2": 0.624, - "eu-west-3": 0.0, + "eu-west-3": 0.663, "il-central-1": 0.686, "me-central-1": 0.0, "me-south-1": 0.654, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.552, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.672, + "us-east-1": 0.552, + "us-east-2": 0.579, + "us-gov-east-1": 0.672, + "us-gov-west-1": 0.709, "us-west-1": 0.632, "us-west-2": 0.0 }, "m5d.4xlarge": { - "af-south-1": 0.0, - "ap-east-1": 1.34, + "af-south-1": 1.3, + "ap-east-1": 0.0, "ap-northeast-1": 1.268, "ap-northeast-2": 1.278, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 1.338, + "ap-south-1": 1.076, "ap-south-2": 1.101, - "ap-southeast-1": 0.0, + "ap-southeast-1": 1.228, "ap-southeast-2": 0.0, "ap-southeast-3": 1.228, - "ap-southeast-4": 1.329, + "ap-southeast-4": 1.261, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-west-1": 1.193, + "eu-central-1": 1.188, "eu-central-2": 0.0, - "eu-north-1": 1.124, + "eu-north-1": 1.06, "eu-south-1": 1.219, "eu-south-2": 0.0, - "eu-west-1": 1.176, - "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 1.148, + "eu-west-3": 1.156, "il-central-1": 1.247, - "me-central-1": 1.3, - "me-south-1": 1.209, + "me-central-1": 1.234, + "me-south-1": 1.283, "sa-east-1": 1.54, "us-east-1": 1.004, - "us-east-2": 0.0, + "us-east-2": 1.004, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 1.004 + "us-west-1": 1.164, + "us-west-2": 0.0 }, "m5d.8xlarge": { "af-south-1": 2.644, @@ -78268,20 +88011,21 @@ "ap-south-1": 2.052, "ap-south-2": 0.0, "ap-southeast-1": 2.356, - "ap-southeast-2": 0.0, - "ap-southeast-3": 2.356, - "ap-southeast-4": 0.0, + "ap-southeast-2": 2.372, + "ap-southeast-3": 2.491, + "ap-southeast-4": 2.533, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 2.276, - "eu-central-2": 2.662, + "eu-central-2": 2.519, "eu-north-1": 2.02, - "eu-south-1": 2.339, - "eu-south-2": 2.262, + "eu-south-1": 2.212, + "eu-south-2": 0.0, "eu-west-1": 2.251, - "eu-west-2": 2.196, + "eu-west-2": 2.336, "eu-west-3": 2.212, - "il-central-1": 2.369, - "me-central-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 2.476, "me-south-1": 0.0, "sa-east-1": 2.98, "us-east-1": 1.908, @@ -78296,27 +88040,28 @@ "ap-east-1": 3.82, "ap-northeast-1": 0.0, "ap-northeast-2": 3.634, - "ap-northeast-3": 0.0, + "ap-northeast-3": 3.814, "ap-south-1": 3.028, "ap-south-2": 3.229, - "ap-southeast-1": 0.0, + "ap-southeast-1": 3.484, "ap-southeast-2": 3.508, "ap-southeast-3": 3.687, - "ap-southeast-4": 3.737, - "ca-central-1": 3.308, + "ap-southeast-4": 3.533, + "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 3.931, - "eu-north-1": 2.98, + "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-south-2": 3.149, - "eu-west-1": 3.124, - "eu-west-2": 3.453, - "eu-west-3": 3.48, - "il-central-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "il-central-1": 3.491, "me-central-1": 3.451, - "me-south-1": 0.0, + "me-south-1": 3.426, "sa-east-1": 0.0, - "us-east-1": 2.812, + "us-east-1": 0.0, "us-east-2": 2.812, "us-gov-east-1": 3.757, "us-gov-west-1": 3.757, @@ -78328,26 +88073,27 @@ "ap-east-1": 5.06, "ap-northeast-1": 4.772, "ap-northeast-2": 4.548, - "ap-northeast-3": 4.772, + "ap-northeast-3": 5.052, "ap-south-1": 4.004, - "ap-south-2": 4.263, + "ap-south-2": 4.029, "ap-southeast-1": 4.612, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 4.132, + "ca-west-1": 0.0, "eu-central-1": 4.452, "eu-central-2": 4.912, "eu-north-1": 3.94, "eu-south-1": 4.577, "eu-south-2": 4.157, - "eu-west-1": 0.0, - "eu-west-2": 4.292, + "eu-west-1": 4.132, + "eu-west-2": 4.569, "eu-west-3": 4.324, "il-central-1": 0.0, - "me-central-1": 4.826, - "me-south-1": 0.0, - "sa-east-1": 5.86, + "me-central-1": 0.0, + "me-south-1": 4.826, + "sa-east-1": 0.0, "us-east-1": 3.716, "us-east-2": 3.716, "us-gov-east-1": 4.676, @@ -78357,29 +88103,30 @@ }, "m5d.24xlarge": { "af-south-1": 7.3, - "ap-east-1": 7.54, - "ap-northeast-1": 7.108, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 7.108, "ap-south-1": 5.956, "ap-south-2": 0.0, "ap-southeast-1": 6.868, "ap-southeast-2": 6.916, - "ap-southeast-3": 6.868, - "ap-southeast-4": 0.0, + "ap-southeast-3": 0.0, + "ap-southeast-4": 6.941, "ca-central-1": 6.148, + "ca-west-1": 6.173, "eu-central-1": 6.628, "eu-central-2": 7.306, - "eu-north-1": 0.0, + "eu-north-1": 5.86, "eu-south-1": 0.0, - "eu-south-2": 6.173, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 6.388, "eu-west-3": 6.436, "il-central-1": 6.475, "me-central-1": 0.0, "me-south-1": 6.753, - "sa-east-1": 0.0, + "sa-east-1": 8.74, "us-east-1": 5.524, "us-east-2": 0.0, "us-gov-east-1": 6.964, @@ -78388,14 +88135,14 @@ "us-west-2": 5.524 }, "m5dn.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.231, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.238, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5dn.xlarge": { @@ -78406,15 +88153,15 @@ "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.398, - "us-gov-west-1": 0.419, + "us-gov-west-1": 0.398, "us-west-2": 0.0 }, "m5dn.metal": { "ap-northeast-1": 8.525, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-1": 8.141, + "eu-central-1": 7.901, "eu-west-1": 7.421, - "us-east-1": 6.653, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 8.333, "us-gov-west-1": 8.333, @@ -78427,18 +88174,18 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.809, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5dn.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.609, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 1.575, + "us-gov-east-1": 1.493, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, @@ -78460,19 +88207,19 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 4.475, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5dn.16xlarge": { - "ap-northeast-1": 5.725, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 5.925, - "us-gov-west-1": 5.925, + "us-gov-west-1": 5.597, "us-west-2": 0.0 }, "m5dn.24xlarge": { @@ -78487,14 +88234,14 @@ "us-west-2": 0.0 }, "m5n.large": { - "ap-northeast-1": 0.218, + "ap-northeast-1": 0.209, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.214, + "us-gov-west-1": 0.205, "us-west-2": 0.0 }, "m5n.xlarge": { @@ -78504,15 +88251,15 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.372, + "us-gov-east-1": 0.354, "us-gov-west-1": 0.372, "us-west-2": 0.0 }, "m5n.metal": { - "ap-northeast-1": 7.469, + "ap-northeast-1": 0.0, "ap-southeast-1": 7.133, "eu-central-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 5.837, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 7.277, @@ -78525,40 +88272,40 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.757, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.721, + "us-gov-west-1": 0.757, "us-west-2": 0.0 }, "m5n.4xlarge": { - "ap-northeast-1": 1.349, + "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.389, - "us-gov-west-1": 1.389, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5n.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.72, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.509, + "us-gov-east-1": 2.509, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5n.12xlarge": { - "ap-northeast-1": 3.797, + "ap-northeast-1": 4.017, "ap-southeast-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 3.916, + "us-gov-east-1": 0.0, "us-gov-west-1": 3.916, "us-west-2": 0.0 }, @@ -78569,8 +88316,8 @@ "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 4.893, - "us-gov-west-1": 4.893, + "us-gov-east-1": 0.0, + "us-gov-west-1": 5.179, "us-west-2": 0.0 }, "m5n.24xlarge": { @@ -78581,114 +88328,116 @@ "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 7.277, - "us-gov-west-1": 7.277, + "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "m5zn.large": { - "ap-northeast-1": 0.291, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.2588, - "sa-east-1": 0.3195, - "us-east-1": 0.238, + "sa-east-1": 0.0, + "us-east-1": 0.2215, "us-east-2": 0.2215, - "us-west-1": 0.249, + "us-west-1": 0.0, "us-west-2": 0.238 }, "m5zn.xlarge": { "ap-northeast-1": 0.5257, "ap-northeast-2": 0.0, "ap-southeast-1": 0.4693, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.5106, "eu-central-1": 0.0, "eu-west-1": 0.4613, - "sa-east-1": 0.5828, - "us-east-1": 0.4197, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.3866, "us-west-1": 0.4417, "us-west-2": 0.0 }, "m5zn.metal": { "ap-northeast-1": 0.0, - "ap-northeast-2": 5.4842, + "ap-northeast-2": 0.0, "ap-southeast-1": 5.5766, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.081, "eu-central-1": 5.3485, "eu-west-1": 0.0, - "sa-east-1": 6.4428, - "us-east-1": 4.0891, + "sa-east-1": 0.0, + "us-east-1": 4.4855, "us-east-2": 4.4855, "us-west-1": 4.7498, - "us-west-2": 0.0 + "us-west-2": 4.0891 }, "m5zn.2xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 1.0182, + "ap-northeast-1": 0.9784, + "ap-northeast-2": 0.937, "ap-southeast-1": 1.0336, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 0.8614, + "eu-central-1": 0.9956, + "eu-west-1": 0.0, "sa-east-1": 1.2833, "us-east-1": 0.0, "us-east-2": 0.8517, "us-west-1": 0.0, - "us-west-2": 0.7857 + "us-west-2": 0.0 }, "m5zn.3xlarge": { - "ap-northeast-1": 1.4051, + "ap-northeast-1": 1.5331, "ap-northeast-2": 1.4648, - "ap-southeast-1": 1.4879, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.4879, "eu-central-1": 0.0, - "eu-west-1": 1.2296, - "sa-east-1": 1.8624, + "eu-west-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 1.2151, "us-west-1": 0.0, - "us-west-2": 1.2151 + "us-west-2": 1.116 }, "m5zn.6xlarge": { - "ap-northeast-1": 2.9412, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 2.7368, + "eu-central-1": 2.4993, "eu-west-1": 2.3342, - "sa-east-1": 0.0, - "us-east-1": 2.107, + "sa-east-1": 3.2839, + "us-east-1": 2.3052, "us-east-2": 0.0, "us-west-1": 0.0, - "us-west-2": 2.3052 + "us-west-2": 2.107 }, "m5zn.12xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 5.4842, "ap-southeast-1": 5.081, - "ap-southeast-2": 0.0, + "ap-southeast-2": 5.081, "eu-central-1": 0.0, "eu-west-1": 0.0, - "sa-east-1": 6.4428, + "sa-east-1": 0.0, "us-east-1": 4.4855, - "us-east-2": 0.0, + "us-east-2": 4.4855, "us-west-1": 0.0, "us-west-2": 4.0891 }, "m6a.large": { - "ap-northeast-1": 0.1679, - "ap-south-1": 0.11741, - "ap-south-2": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.11741, "ap-southeast-1": 0.1751, - "ap-southeast-2": 0.1643, - "eu-central-1": 0.17015, - "eu-west-1": 0.16223, + "ap-southeast-2": 0.1751, + "ca-central-1": 0.0, + "eu-central-1": 0.1598, + "eu-south-1": 0.0, + "eu-west-1": 0.1526, "eu-west-2": 0.16619, - "sa-east-1": 0.194, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.15134, "us-west-1": 0.0, - "us-west-2": 0.1427 + "us-west-2": 0.15134 }, "m6a.xlarge": { "ap-northeast-1": 0.30182, @@ -78696,43 +88445,49 @@ "ap-south-2": 0.0, "ap-southeast-1": 0.2939, "ap-southeast-2": 0.2723, - "eu-central-1": 0.284, + "ca-central-1": 0.2489, + "eu-central-1": 0.0, + "eu-south-1": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.2561, - "sa-east-1": 0.35924, - "us-east-1": 0.24638, + "eu-west-2": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.2291, "us-east-2": 0.0, "us-west-1": 0.27806, - "us-west-2": 0.24638 + "us-west-2": 0.2291 }, "m6a.metal": { - "ap-northeast-1": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-northeast-1": 10.8386, + "ap-south-1": 5.4578, + "ap-south-2": 5.4578, "ap-southeast-1": 0.0, "ap-southeast-2": 10.493, + "ca-central-1": 9.3698, "eu-central-1": 10.061, + "eu-south-1": 9.8018, "eu-west-1": 0.0, "eu-west-2": 9.7154, - "sa-east-1": 0.0, + "sa-east-1": 13.3442, "us-east-1": 8.4194, "us-east-2": 8.4194, - "us-west-1": 0.0, + "us-west-1": 9.8018, "us-west-2": 8.4194 }, "m6a.2xlarge": { - "ap-northeast-1": 0.61604, - "ap-south-1": 0.3472, + "ap-northeast-1": 0.0, + "ap-south-1": 0.36942, "ap-south-2": 0.3472, "ap-southeast-1": 0.6002, "ap-southeast-2": 0.6002, - "eu-central-1": 0.539, + "ca-central-1": 0.0, + "eu-central-1": 0.5804, + "eu-south-1": 0.0, "eu-west-1": 0.5102, "eu-west-2": 0.0, "sa-east-1": 0.6758, "us-east-1": 0.50516, "us-east-2": 0.0, - "us-west-1": 0.56852, + "us-west-1": 0.5282, "us-west-2": 0.50516 }, "m6a.4xlarge": { @@ -78741,29 +88496,33 @@ "ap-south-2": 0.5694, "ap-southeast-1": 0.989, "ap-southeast-2": 0.0, - "eu-central-1": 0.953, - "eu-west-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-south-1": 0.9314, + "eu-west-1": 0.97244, "eu-west-2": 0.0, - "sa-east-1": 1.33676, + "sa-east-1": 1.2266, "us-east-1": 0.88532, "us-east-2": 0.8162, "us-west-1": 1.01204, - "us-west-2": 0.0 + "us-west-2": 0.8162 }, "m6a.8xlarge": { - "ap-northeast-1": 1.9106, + "ap-northeast-1": 0.0, "ap-south-1": 1.10268, "ap-south-2": 0.0, "ap-southeast-1": 2.0258, "ap-southeast-2": 2.0258, - "eu-central-1": 1.9466, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "ca-central-1": 1.6658, + "eu-central-1": 1.781, + "eu-south-1": 1.7378, + "eu-west-1": 1.81988, + "eu-west-2": 1.88324, "sa-east-1": 2.3282, "us-east-1": 1.5074, "us-east-2": 0.0, "us-west-1": 1.89908, - "us-west-2": 1.64564 + "us-west-2": 1.5074 }, "m6a.12xlarge": { "ap-northeast-1": 3.07124, @@ -78771,28 +88530,32 @@ "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 2.4362, "eu-central-1": 2.609, - "eu-west-1": 0.0, - "eu-west-2": 2.5226, + "eu-south-1": 0.0, + "eu-west-1": 2.66732, + "eu-west-2": 0.0, "sa-east-1": 3.76028, - "us-east-1": 2.40596, + "us-east-1": 0.0, "us-east-2": 2.40596, "us-west-1": 2.5442, "us-west-2": 0.0 }, "m6a.16xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-northeast-1": 4.05332, + "ap-south-1": 1.9026, + "ap-south-2": 1.9026, "ap-southeast-1": 3.9266, - "ap-southeast-2": 3.9266, + "ap-southeast-2": 0.0, + "ca-central-1": 3.2066, "eu-central-1": 3.7682, + "eu-south-1": 3.3506, "eu-west-1": 3.2066, "eu-west-2": 3.3218, "sa-east-1": 0.0, - "us-east-1": 2.8898, + "us-east-1": 0.0, "us-east-2": 2.8898, - "us-west-1": 3.3506, + "us-west-1": 3.67316, "us-west-2": 0.0 }, "m6a.24xlarge": { @@ -78801,37 +88564,43 @@ "ap-south-2": 2.7914, "ap-southeast-1": 5.309, "ap-southeast-2": 5.309, + "ca-central-1": 5.20964, "eu-central-1": 5.5898, - "eu-west-1": 4.7474, + "eu-south-1": 0.0, + "eu-west-1": 0.0, "eu-west-2": 0.0, "sa-east-1": 6.7346, - "us-east-1": 4.68692, + "us-east-1": 4.2722, "us-east-2": 4.68692, "us-west-1": 0.0, - "us-west-2": 4.2722 + "us-west-2": 0.0 }, "m6a.32xlarge": { - "ap-northeast-1": 7.2674, + "ap-northeast-1": 7.98164, "ap-south-1": 0.0, - "ap-south-2": 4.03572, + "ap-south-2": 3.6802, "ap-southeast-1": 7.7282, "ap-southeast-2": 7.7282, + "ca-central-1": 6.2882, "eu-central-1": 7.4114, - "eu-west-1": 6.2882, - "eu-west-2": 7.15796, + "eu-south-1": 6.5762, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "sa-east-1": 8.9378, "us-east-1": 6.20756, "us-east-2": 5.6546, - "us-west-1": 7.22132, + "us-west-1": 6.5762, "us-west-2": 0.0 }, "m6a.48xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 10.8386, "ap-south-1": 0.0, - "ap-south-2": 5.4578, + "ap-south-2": 0.0, "ap-southeast-1": 10.493, - "ap-southeast-2": 0.0, + "ap-southeast-2": 10.493, + "ca-central-1": 9.3698, "eu-central-1": 10.061, + "eu-south-1": 9.8018, "eu-west-1": 0.0, "eu-west-2": 9.7154, "sa-east-1": 0.0, @@ -78841,36 +88610,38 @@ "us-west-2": 8.4194 }, "m6g.medium": { - "af-south-1": 0.1101, - "ap-east-1": 0.084, + "af-south-1": 0.0, + "ap-east-1": 0.0871, "ap-northeast-1": 0.0835, "ap-northeast-2": 0.078, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1059, "ap-south-1": 0.0578, "ap-south-2": 0.0816, "ap-southeast-1": 0.0819, "ap-southeast-2": 0.079, "ap-southeast-3": 0.1043, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.1072, "ca-central-1": 0.0764, - "eu-central-1": 0.0797, - "eu-central-2": 0.1099, - "eu-north-1": 0.0745, - "eu-south-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.077, + "eu-central-2": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0758, "eu-south-2": 0.1018, "eu-west-1": 0.074, - "eu-west-2": 0.0781, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.0787, "il-central-1": 0.1015, - "me-central-1": 0.1036, + "me-central-1": 0.1064, "me-south-1": 0.0808, - "sa-east-1": 0.0922, - "us-east-1": 0.0695, - "us-east-2": 0.0718, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0695, "us-gov-east-1": 0.0794, - "us-gov-west-1": 0.0, - "us-west-1": 0.0785, - "us-west-2": 0.0 + "us-gov-west-1": 0.0794, + "us-west-1": 0.0, + "us-west-2": 0.0718, + "us-west-2-lax-1": 0.1053 }, "m6g.large": { "af-south-1": 0.1579, @@ -78878,165 +88649,175 @@ "ap-northeast-1": 0.1613, "ap-northeast-2": 0.156, "ap-northeast-3": 0.0, - "ap-south-1": 0.1099, + "ap-south-1": 0.1069, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.1523, "ap-southeast-3": 0.0, "ap-southeast-4": 0.1581, - "ca-central-1": 0.1419, - "eu-central-1": 0.1483, + "ca-central-1": 0.147, + "ca-west-1": 0.0, + "eu-central-1": 0.1538, "eu-central-2": 0.0, "eu-north-1": 0.1432, "eu-south-1": 0.0, "eu-south-2": 0.1474, - "eu-west-1": 0.1474, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.1451, "eu-west-3": 0.1517, "il-central-1": 0.0, - "me-central-1": 0.0, + "me-central-1": 0.1509, "me-south-1": 0.1503, "sa-east-1": 0.186, "us-east-1": 0.1333, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 0.1379, + "us-gov-east-1": 0.1531, "us-gov-west-1": 0.1531, "us-west-1": 0.1513, - "us-west-2": 0.1379 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.1487 }, "m6g.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.2809, + "ap-east-1": 0.2683, "ap-northeast-1": 0.2663, "ap-northeast-2": 0.2557, "ap-northeast-3": 0.2547, "ap-south-1": 0.1636, - "ap-south-2": 0.1636, - "ap-southeast-1": 0.2483, + "ap-south-2": 0.0, + "ap-southeast-1": 0.2598, "ap-southeast-2": 0.2483, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.2483, "ap-southeast-4": 0.2598, "ca-central-1": 0.2275, - "eu-central-1": 0.2403, + "ca-west-1": 0.2275, + "eu-central-1": 0.2513, "eu-central-2": 0.2587, "eu-north-1": 0.2203, "eu-south-1": 0.0, "eu-south-2": 0.2283, "eu-west-1": 0.2283, - "eu-west-2": 0.2446, - "eu-west-3": 0.2363, + "eu-west-2": 0.2339, + "eu-west-3": 0.2471, "il-central-1": 0.2476, "me-central-1": 0.2455, - "me-south-1": 0.2557, - "sa-east-1": 0.3158, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.2195, "us-east-2": 0.0, "us-gov-east-1": 0.2499, "us-gov-west-1": 0.2615, "us-west-1": 0.0, - "us-west-2": 0.2195 + "us-west-2": 0.2195, + "us-west-2-lax-1": 0.2411 }, "m6g.metal": { - "af-south-1": 0.0, + "af-south-1": 3.3762, "ap-east-1": 3.517, "ap-northeast-1": 3.293, "ap-northeast-2": 3.133, "ap-northeast-3": 3.4899, - "ap-south-1": 0.0, + "ap-south-1": 1.7442, "ap-south-2": 1.8414, "ap-southeast-1": 0.0, "ap-southeast-2": 3.3813, - "ap-southeast-3": 3.3813, + "ap-southeast-3": 3.197, "ap-southeast-4": 3.3813, "ca-central-1": 2.8642, - "eu-central-1": 3.245, + "ca-west-1": 0.0, + "eu-central-1": 3.069, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 2.9058, "eu-south-1": 2.9922, "eu-south-2": 0.0, "eu-west-1": 2.877, - "eu-west-2": 2.9666, + "eu-west-2": 3.1371, "eu-west-3": 3.1778, "il-central-1": 3.186, - "me-central-1": 3.3317, + "me-central-1": 3.1522, "me-south-1": 3.133, "sa-east-1": 4.0418, - "us-east-1": 0.0, - "us-east-2": 2.589, - "us-gov-east-1": 0.0, + "us-east-1": 2.7362, + "us-east-2": 0.0, + "us-gov-east-1": 3.2226, "us-gov-west-1": 3.4085, "us-west-1": 0.0, - "us-west-2": 2.589 + "us-west-2": 0.0, + "us-west-2-lax-1": 3.0818 }, "m6g.2xlarge": { "af-south-1": 0.5314, - "ap-east-1": 0.0, + "ap-east-1": 0.5742, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.5456, - "ap-south-1": 0.3395, - "ap-south-2": 0.3274, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.532, + "ap-southeast-2": 0.532, "ap-southeast-3": 0.532, "ap-southeast-4": 0.0, - "ca-central-1": 0.4879, + "ca-central-1": 0.4674, + "ca-west-1": 0.0, "eu-central-1": 0.493, - "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-central-2": 0.5541, + "eu-north-1": 0.4726, "eu-south-1": 0.4834, - "eu-south-2": 0.4894, - "eu-west-1": 0.469, - "eu-west-2": 0.5015, - "eu-west-3": 0.485, - "il-central-1": 0.5076, - "me-central-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.5066, + "il-central-1": 0.4862, + "me-central-1": 0.5258, "me-south-1": 0.501, - "sa-east-1": 0.644, + "sa-east-1": 0.6146, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.4514, "us-gov-east-1": 0.5122, "us-gov-west-1": 0.5354, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 0.0 }, "m6g.4xlarge": { "af-south-1": 0.0, "ap-east-1": 0.973, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.965, "ap-northeast-2": 0.0, "ap-northeast-3": 0.9662, "ap-south-1": 0.5541, - "ap-south-2": 0.5298, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.893, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.9391, "ap-southeast-4": 0.0, "ca-central-1": 0.8098, + "ca-west-1": 0.0, "eu-central-1": 0.861, "eu-central-2": 0.9832, "eu-north-1": 0.0, - "eu-south-1": 0.8847, + "eu-south-1": 0.8418, "eu-south-2": 0.813, - "eu-west-1": 0.813, - "eu-west-2": 0.878, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.8902, - "me-central-1": 0.9267, + "me-central-1": 0.8818, "me-south-1": 0.877, "sa-east-1": 0.0, - "us-east-1": 0.7778, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.8994, - "us-gov-west-1": 0.9459, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.8994, "us-west-1": 0.8848, - "us-west-2": 0.741 + "us-west-2": 0.741, + "us-west-2-lax-1": 0.8642 }, "m6g.8xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, - "ap-northeast-1": 1.709, - "ap-northeast-2": 1.629, + "af-south-1": 1.8481, + "ap-east-1": 1.9218, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.8074, "ap-south-1": 0.9346, "ap-south-2": 0.0, @@ -79045,336 +88826,416 @@ "ap-southeast-3": 1.661, "ap-southeast-4": 1.661, "ca-central-1": 1.5768, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 1.8414, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 1.6444, - "eu-south-2": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 1.501, "eu-west-1": 1.5826, "eu-west-2": 1.5458, "eu-west-3": 0.0, "il-central-1": 1.5698, - "me-central-1": 1.7284, + "me-central-1": 1.6386, "me-south-1": 1.629, "sa-east-1": 2.0834, - "us-east-1": 1.4306, + "us-east-1": 0.0, "us-east-2": 1.357, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 1.6446, - "us-west-2": 1.4306 + "us-west-2": 1.4306, + "us-west-2-lax-1": 1.6917 }, "m6g.12xlarge": { - "af-south-1": 2.5634, - "ap-east-1": 2.8202, + "af-south-1": 2.7097, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 2.5058, "ap-south-1": 1.4123, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 2.429, "ap-southeast-3": 2.5672, "ap-southeast-4": 2.429, "ca-central-1": 2.1794, + "ca-west-1": 2.1794, "eu-central-1": 2.465, - "eu-central-2": 2.5538, - "eu-north-1": 0.0, + "eu-central-2": 2.6995, + "eu-north-1": 2.093, "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-south-2": 2.189, + "eu-west-1": 2.3114, "eu-west-2": 0.0, "eu-west-3": 2.285, - "il-central-1": 2.2922, - "me-central-1": 2.3954, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "il-central-1": 2.4207, + "me-central-1": 2.53, + "me-south-1": 2.381, + "sa-east-1": 3.2389, "us-east-1": 1.973, - "us-east-2": 2.0834, + "us-east-2": 1.973, "us-gov-east-1": 2.4482, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 1.973 + "us-gov-west-1": 2.4482, + "us-west-1": 2.2754, + "us-west-2": 1.973, + "us-west-2-lax-1": 2.3426 }, "m6g.16xlarge": { - "af-south-1": 3.3762, - "ap-east-1": 0.0, - "ap-northeast-1": 3.485, + "af-south-1": 3.5713, + "ap-east-1": 3.7186, + "ap-northeast-1": 0.0, "ap-northeast-2": 3.133, "ap-northeast-3": 3.4899, - "ap-south-1": 1.8414, + "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 3.197, - "ap-southeast-2": 3.197, - "ap-southeast-3": 3.3813, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ap-southeast-4": 3.197, - "ca-central-1": 0.0, + "ca-central-1": 2.8642, + "ca-west-1": 2.8642, "eu-central-1": 3.245, "eu-central-2": 0.0, - "eu-north-1": 0.0, + "eu-north-1": 2.9058, "eu-south-1": 3.1637, "eu-south-2": 3.0402, - "eu-west-1": 2.877, - "eu-west-2": 2.9666, - "eu-west-3": 3.005, + "eu-west-1": 3.0402, + "eu-west-2": 0.0, + "eu-west-3": 3.1778, "il-central-1": 0.0, - "me-central-1": 0.0, - "me-south-1": 3.133, - "sa-east-1": 4.0418, - "us-east-1": 2.589, + "me-central-1": 3.3317, + "me-south-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 2.7362, "us-east-2": 2.589, - "us-gov-east-1": 3.4085, - "us-gov-west-1": 3.2226, + "us-gov-east-1": 3.2226, + "us-gov-west-1": 3.4085, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 3.2584 }, "m6gd.medium": { "af-south-1": 0.0, - "ap-northeast-1": 0.0, + "ap-east-1": 0.1183, + "ap-northeast-1": 0.0895, "ap-northeast-2": 0.0, "ap-northeast-3": 0.1147, "ap-south-1": 0.0, - "ap-south-2": 0.0883, + "ap-south-2": 0.0865, "ap-southeast-1": 0.0875, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.0914, "ap-southeast-3": 0.1162, - "ap-southeast-4": 0.1133, + "ap-southeast-4": 0.1167, + "ca-central-1": 0.1097, + "ca-west-1": 0.1097, "eu-central-1": 0.0887, "eu-central-2": 0.1163, - "eu-north-1": 0.1072, - "eu-south-2": 0.0, + "eu-north-1": 0.1043, + "eu-south-1": 0.0, + "eu-south-2": 0.1097, "eu-west-1": 0.0814, "eu-west-2": 0.0865, - "eu-west-3": 0.0, + "eu-west-3": 0.1123, "il-central-1": 0.1124, - "me-central-1": 0.115, + "me-central-1": 0.1117, + "me-south-1": 0.0, + "sa-east-1": 0.1283, "us-east-1": 0.0762, "us-east-2": 0.0789, - "us-west-1": 0.0872, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 0.084, "us-west-2": 0.0762 }, "m6gd.large": { - "af-south-1": 0.1835, + "af-south-1": 0.0, + "ap-east-1": 0.1803, "ap-northeast-1": 0.1733, - "ap-northeast-2": 0.1741, + "ap-northeast-2": 0.1675, "ap-northeast-3": 0.1801, "ap-south-1": 0.1203, "ap-south-2": 0.1203, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.1693, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.1703, - "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 0.0, + "ca-central-1": 0.1571, + "ca-west-1": 0.1631, + "eu-central-1": 0.1718, + "eu-central-2": 0.1762, + "eu-north-1": 0.1581, + "eu-south-1": 0.0, "eu-south-2": 0.1631, "eu-west-1": 0.1631, - "eu-west-2": 0.0, + "eu-west-2": 0.1674, "eu-west-3": 0.1682, "il-central-1": 0.0, "me-central-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.1521, - "us-west-1": 0.0, - "us-west-2": 0.1521 + "me-south-1": 0.1738, + "sa-east-1": 0.2086, + "us-east-1": 0.1521, + "us-east-2": 0.0, + "us-gov-east-1": 0.1707, + "us-gov-west-1": 0.0, + "us-west-1": 0.1687, + "us-west-2": 0.0 }, "m6gd.xlarge": { - "af-south-1": 0.0, - "ap-northeast-1": 0.3043, - "ap-northeast-2": 0.2787, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.1843, - "ap-southeast-1": 0.2959, - "ap-southeast-2": 0.2979, - "ap-southeast-3": 0.2823, + "af-south-1": 0.3107, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.3039, + "ap-south-1": 0.1771, + "ap-south-2": 0.0, + "ap-southeast-1": 0.2823, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.2959, "ap-southeast-4": 0.0, + "ca-central-1": 0.27, + "ca-west-1": 0.27, "eu-central-1": 0.0, "eu-central-2": 0.2961, "eu-north-1": 0.0, - "eu-south-2": 0.2579, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.27, + "eu-west-1": 0.2579, + "eu-west-2": 0.2659, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.2807, "me-central-1": 0.2912, - "us-east-1": 0.0, - "us-east-2": 0.2371, + "me-south-1": 0.0, + "sa-east-1": 0.3443, + "us-east-1": 0.2479, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.2851, "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.metal": { "af-south-1": 3.965, + "ap-east-1": 0.0, "ap-northeast-1": 3.869, - "ap-northeast-2": 3.6834, + "ap-northeast-2": 3.8947, "ap-northeast-3": 3.8626, "ap-south-1": 0.0, "ap-south-2": 2.0578, "ap-southeast-1": 0.0, "ap-southeast-2": 3.773, "ap-southeast-3": 3.741, - "ap-southeast-4": 0.0, - "eu-central-1": 3.613, - "eu-central-2": 3.9618, + "ap-southeast-4": 3.773, + "ca-central-1": 3.3506, + "ca-west-1": 3.3506, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 3.197, - "eu-south-2": 3.3506, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-south-1": 3.5042, + "eu-south-2": 0.0, + "eu-west-1": 3.3506, + "eu-west-2": 3.4786, "eu-west-3": 3.707, - "il-central-1": 3.7151, - "me-central-1": 3.6706, + "il-central-1": 3.5119, + "me-central-1": 0.0, + "me-south-1": 3.886, + "sa-east-1": 4.733, "us-east-1": 0.0, "us-east-2": 3.0178, + "us-gov-east-1": 3.7858, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "m6gd.2xlarge": { "af-south-1": 0.6338, + "ap-east-1": 0.621, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.5962, "ap-northeast-3": 0.5922, - "ap-south-1": 0.0, + "ap-south-1": 0.3666, "ap-south-2": 0.3666, "ap-southeast-1": 0.577, "ap-southeast-2": 0.6082, - "ap-southeast-3": 0.577, + "ap-southeast-3": 0.6042, "ap-southeast-4": 0.0, + "ca-central-1": 0.5524, + "ca-west-1": 0.5524, "eu-central-1": 0.561, - "eu-central-2": 0.0, + "eu-central-2": 0.6046, "eu-north-1": 0.5322, + "eu-south-1": 0.5727, "eu-south-2": 0.5524, "eu-west-1": 0.5282, "eu-west-2": 0.5442, "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.5682, + "me-south-1": 0.5685, + "sa-east-1": 0.701, "us-east-1": 0.4866, "us-east-2": 0.0, + "us-gov-east-1": 0.5826, + "us-gov-west-1": 0.0, "us-west-1": 0.549, - "us-west-2": 0.5083 + "us-west-2": 0.0 }, "m6gd.4xlarge": { - "af-south-1": 1.085, - "ap-northeast-1": 1.061, - "ap-northeast-2": 1.0146, + "af-south-1": 1.1426, + "ap-east-1": 1.1765, + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.0674, "ap-northeast-3": 1.0594, "ap-south-1": 0.6082, "ap-south-2": 0.6372, "ap-southeast-1": 1.0834, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-3": 1.029, "ap-southeast-4": 1.0914, + "ca-central-1": 0.0, + "ca-west-1": 0.9798, "eu-central-1": 0.0, "eu-central-2": 1.1414, - "eu-north-1": 0.893, - "eu-south-2": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.9798, + "eu-west-1": 0.9314, "eu-west-2": 1.0137, - "eu-west-3": 1.0205, + "eu-west-3": 0.9698, "il-central-1": 0.0, - "me-central-1": 0.0, - "us-east-1": 0.8482, + "me-central-1": 1.0646, + "me-south-1": 1.0653, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.8482, + "us-gov-east-1": 1.0402, + "us-gov-west-1": 0.0, "us-west-1": 0.973, "us-west-2": 0.8482 }, "m6gd.8xlarge": { - "af-south-1": 2.045, + "af-south-1": 2.1602, + "ap-east-1": 0.0, "ap-northeast-1": 1.997, "ap-northeast-2": 1.9042, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.1059, "ap-south-1": 1.1494, "ap-south-2": 1.0914, "ap-southeast-1": 0.0, "ap-southeast-2": 2.0578, "ap-southeast-3": 2.0418, "ap-southeast-4": 1.949, - "eu-central-1": 1.869, + "ca-central-1": 1.7378, + "ca-west-1": 1.8346, + "eu-central-1": 0.0, "eu-central-2": 2.1578, - "eu-north-1": 0.0, + "eu-north-1": 1.7538, + "eu-south-1": 1.8146, "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, - "eu-west-3": 1.8146, + "eu-west-3": 0.0, "il-central-1": 1.92, "me-central-1": 1.8978, - "us-east-1": 0.0, + "me-south-1": 1.8991, + "sa-east-1": 2.562, + "us-east-1": 1.5714, "us-east-2": 1.5714, - "us-west-1": 0.0, - "us-west-2": 1.6582 + "us-gov-east-1": 2.0652, + "us-gov-west-1": 1.9554, + "us-west-1": 1.9234, + "us-west-2": 1.5714 }, "m6gd.12xlarge": { - "af-south-1": 3.1778, - "ap-northeast-1": 2.933, + "af-south-1": 0.0, + "ap-east-1": 3.2796, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.9523, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.9282, "ap-south-1": 1.5746, - "ap-south-2": 0.0, + "ap-south-2": 1.5746, "ap-southeast-1": 0.0, "ap-southeast-2": 3.0242, - "ap-southeast-3": 0.0, - "ap-southeast-4": 3.0242, + "ap-southeast-3": 2.837, + "ap-southeast-4": 0.0, + "ca-central-1": 2.5442, + "ca-west-1": 2.6894, "eu-central-1": 2.897, "eu-central-2": 3.1742, "eu-north-1": 2.5682, - "eu-south-2": 2.6894, + "eu-south-1": 0.0, + "eu-south-2": 2.5442, "eu-west-1": 2.5442, "eu-west-2": 2.6402, "eu-west-3": 2.6594, - "il-central-1": 0.0, + "il-central-1": 2.6652, "me-central-1": 2.9438, - "us-east-1": 0.0, + "me-south-1": 0.0, + "sa-east-1": 3.7804, + "us-east-1": 2.2946, "us-east-2": 2.4248, + "us-gov-east-1": 3.0353, + "us-gov-west-1": 3.0353, "us-west-1": 0.0, - "us-west-2": 2.4248 + "us-west-2": 0.0 }, "m6gd.16xlarge": { "af-south-1": 3.965, + "ap-east-1": 4.093, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.8947, "ap-northeast-3": 3.8626, "ap-south-1": 0.0, "ap-south-2": 2.0578, "ap-southeast-1": 0.0, "ap-southeast-2": 3.773, "ap-southeast-3": 3.741, - "ap-southeast-4": 3.773, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 3.3506, "eu-central-1": 3.613, "eu-central-2": 3.9618, "eu-north-1": 0.0, - "eu-south-2": 3.3506, + "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 3.3506, - "eu-west-2": 0.0, + "eu-west-2": 3.4786, "eu-west-3": 3.707, - "il-central-1": 3.7151, - "me-central-1": 3.6706, + "il-central-1": 3.5119, + "me-central-1": 0.0, + "me-south-1": 3.886, + "sa-east-1": 4.733, "us-east-1": 3.0178, - "us-east-2": 0.0, + "us-east-2": 3.0178, + "us-gov-east-1": 3.7858, + "us-gov-west-1": 0.0, "us-west-1": 3.517, "us-west-2": 0.0 }, "m6i.large": { - "af-south-1": 0.1833, - "ap-east-1": 0.1883, + "af-south-1": 0.0, + "ap-east-1": 0.2015, "ap-northeast-1": 0.1803, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.1803, - "ap-south-1": 0.1573, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.1763, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, + "ca-west-1": 0.1633, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.1685, - "eu-south-1": 0.1795, + "eu-south-1": 0.1683, "eu-west-1": 0.174, - "eu-west-2": 0.0, + "eu-west-2": 0.1673, "eu-west-3": 0.1795, "il-central-1": 0.17989, "me-central-1": 0.0, "me-south-1": 0.1883, - "sa-east-1": 0.2246, + "sa-east-1": 0.2093, "us-east-1": 0.1523, "us-east-2": 0.1523, "us-gov-east-1": 0.0, @@ -79384,76 +89245,82 @@ }, "m6i.xlarge": { "af-south-1": 0.3357, - "ap-east-1": 0.3203, + "ap-east-1": 0.3467, "ap-northeast-1": 0.3043, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.2923, "ap-northeast-3": 0.3291, - "ap-south-1": 0.2785, - "ap-south-2": 0.2583, + "ap-south-1": 0.0, + "ap-south-2": 0.2785, "ap-southeast-1": 0.3203, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.2963, + "ap-southeast-3": 0.3203, "ca-central-1": 0.2703, + "ca-west-1": 0.2703, "eu-central-1": 0.2863, - "eu-north-1": 0.2807, - "eu-south-1": 0.0, + "eu-central-2": 0.3346, + "eu-north-1": 0.2603, + "eu-south-1": 0.2803, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.2803, "il-central-1": 0.30347, "me-central-1": 0.0, "me-south-1": 0.3203, - "sa-east-1": 0.3623, - "us-east-1": 0.0, + "sa-east-1": 0.3929, + "us-east-1": 0.2483, "us-east-2": 0.2483, "us-gov-east-1": 0.2983, - "us-gov-west-1": 0.2983, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.0 }, "m6i.metal": { - "af-south-1": 8.253, + "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 8.061, - "ap-northeast-2": 7.677, - "ap-northeast-3": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 8.061, "ap-south-1": 6.589, "ap-south-2": 6.589, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 7.805, + "ap-southeast-2": 7.805, "ap-southeast-3": 0.0, "ca-central-1": 0.0, + "ca-west-1": 6.973, "eu-central-1": 7.485, + "eu-central-2": 8.221, "eu-north-1": 6.653, "eu-south-1": 7.293, - "eu-west-1": 6.973, + "eu-west-1": 0.0, "eu-west-2": 7.229, "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 7.6578, - "me-south-1": 8.573, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 6.269, "us-gov-east-1": 7.869, "us-gov-west-1": 7.869, "us-west-1": 7.293, - "us-west-2": 0.0 + "us-west-2": 6.269 }, "m6i.2xlarge": { - "af-south-1": 0.0, - "ap-east-1": 0.0, + "af-south-1": 0.6838, + "ap-east-1": 0.653, "ap-northeast-1": 0.621, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.6442, "ap-northeast-3": 0.6706, "ap-south-1": 0.529, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.653, "ap-southeast-3": 0.605, "ca-central-1": 0.0, + "ca-west-1": 0.5958, "eu-central-1": 0.0, - "eu-north-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.533, "eu-south-1": 0.6178, "eu-west-1": 0.553, "eu-west-2": 0.0, @@ -79461,8 +89328,8 @@ "il-central-1": 0.5744, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 0.7982, - "us-east-1": 0.509, + "sa-east-1": 0.0, + "us-east-1": 0.5474, "us-east-2": 0.5474, "us-gov-east-1": 0.0, "us-gov-west-1": 0.6574, @@ -79472,22 +89339,24 @@ "m6i.4xlarge": { "af-south-1": 1.2426, "ap-east-1": 1.181, - "ap-northeast-1": 1.2162, + "ap-northeast-1": 1.117, "ap-northeast-2": 1.069, "ap-northeast-3": 1.2162, - "ap-south-1": 0.933, + "ap-south-1": 0.0, "ap-south-2": 0.933, "ap-southeast-1": 1.085, - "ap-southeast-2": 1.085, + "ap-southeast-2": 1.181, "ap-southeast-3": 1.181, "ca-central-1": 0.0, - "eu-central-1": 1.045, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 1.0666, + "ca-west-1": 1.0666, + "eu-central-1": 0.0, + "eu-central-2": 1.137, + "eu-north-1": 1.0226, + "eu-south-1": 1.1106, + "eu-west-1": 0.0, "eu-west-2": 1.1018, - "eu-west-3": 1.021, - "il-central-1": 1.11368, + "eu-west-3": 1.1106, + "il-central-1": 1.0238, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, @@ -79496,84 +89365,90 @@ "us-gov-east-1": 1.093, "us-gov-west-1": 0.0, "us-west-1": 1.021, - "us-west-2": 0.0 + "us-west-2": 0.9698 }, "m6i.8xlarge": { "af-south-1": 0.0, "ap-east-1": 2.237, "ap-northeast-1": 2.109, - "ap-northeast-2": 2.2018, + "ap-northeast-2": 2.013, "ap-northeast-3": 2.109, "ap-south-1": 1.9026, - "ap-south-2": 1.9026, + "ap-south-2": 1.741, "ap-southeast-1": 2.237, - "ap-southeast-2": 2.045, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.045, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, + "eu-central-2": 2.149, "eu-north-1": 1.757, "eu-south-1": 2.0962, "eu-west-1": 2.0082, "eu-west-2": 2.0786, - "eu-west-3": 0.0, + "eu-west-3": 2.0962, "il-central-1": 0.0, "me-central-1": 2.0082, "me-south-1": 0.0, - "sa-east-1": 2.8178, + "sa-east-1": 2.573, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 2.2546, - "us-gov-west-1": 2.2546, + "us-east-2": 1.8146, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 2.0962, "us-west-2": 1.661 }, "m6i.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 3.173, "ap-east-1": 3.6098, - "ap-northeast-1": 3.3986, - "ap-northeast-2": 2.957, + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.2402, "ap-northeast-3": 3.3986, - "ap-south-1": 2.7914, - "ap-south-2": 2.7914, - "ap-southeast-1": 3.293, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.005, - "ap-southeast-3": 3.005, + "ap-southeast-3": 3.293, "ca-central-1": 2.693, - "eu-central-1": 2.885, + "ca-west-1": 2.9498, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 2.8178, "eu-south-1": 0.0, - "eu-west-1": 2.9498, + "eu-west-1": 0.0, "eu-west-2": 3.0554, "eu-west-3": 2.813, - "il-central-1": 3.09104, + "il-central-1": 2.8214, "me-central-1": 0.0, - "me-south-1": 3.293, + "me-south-1": 3.6098, "sa-east-1": 3.797, - "us-east-1": 2.429, + "us-east-1": 2.6594, "us-east-2": 2.429, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 3.0818, - "us-west-2": 2.6594 + "us-gov-west-1": 3.3194, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m6i.16xlarge": { "af-south-1": 4.5954, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 4.4898, + "ap-northeast-2": 3.901, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 3.965, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.965, "ap-southeast-3": 3.965, - "ca-central-1": 3.8914, + "ca-central-1": 0.0, + "ca-west-1": 3.8914, "eu-central-1": 0.0, - "eu-north-1": 3.389, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 3.709, "eu-west-1": 3.8914, - "eu-west-2": 4.0322, - "eu-west-3": 4.0674, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 3.8914, "me-south-1": 0.0, @@ -79581,44 +89456,46 @@ "us-east-1": 3.5042, "us-east-2": 0.0, "us-gov-east-1": 3.997, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-gov-west-1": 3.997, + "us-west-1": 4.0674, + "us-west-2": 3.197 }, "m6i.24xlarge": { "af-south-1": 6.8306, - "ap-east-1": 6.461, + "ap-east-1": 0.0, "ap-northeast-1": 6.077, - "ap-northeast-2": 6.3554, + "ap-northeast-2": 5.789, "ap-northeast-3": 0.0, "ap-south-1": 4.973, - "ap-south-2": 4.973, + "ap-south-2": 0.0, "ap-southeast-1": 6.461, "ap-southeast-2": 6.461, "ap-southeast-3": 0.0, "ca-central-1": 5.7746, - "eu-central-1": 0.0, + "ca-west-1": 5.261, + "eu-central-1": 5.645, + "eu-central-2": 6.8042, "eu-north-1": 5.5106, "eu-south-1": 6.0386, - "eu-west-1": 5.7746, - "eu-west-2": 5.9858, - "eu-west-3": 0.0, - "il-central-1": 5.5178, - "me-central-1": 6.33956, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 6.0386, + "il-central-1": 6.05708, + "me-central-1": 0.0, "me-south-1": 6.461, - "sa-east-1": 0.0, + "sa-east-1": 7.469, "us-east-1": 4.733, - "us-east-2": 5.1938, - "us-gov-east-1": 6.5138, + "us-east-2": 4.733, + "us-gov-east-1": 5.933, "us-gov-west-1": 0.0, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 5.501, + "us-west-2": 4.733 }, "m6i.32xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 8.061, - "ap-northeast-2": 0.0, + "ap-northeast-2": 7.677, "ap-northeast-3": 0.0, "ap-south-1": 6.589, "ap-south-2": 6.589, @@ -79626,8 +89503,10 @@ "ap-southeast-2": 0.0, "ap-southeast-3": 7.805, "ca-central-1": 0.0, + "ca-west-1": 0.0, "eu-central-1": 7.485, - "eu-north-1": 6.653, + "eu-central-2": 8.221, + "eu-north-1": 0.0, "eu-south-1": 7.293, "eu-west-1": 6.973, "eu-west-2": 7.229, @@ -79635,9 +89514,9 @@ "il-central-1": 7.3154, "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 9.917, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 6.269, "us-gov-east-1": 7.869, "us-gov-west-1": 7.869, "us-west-1": 0.0, @@ -79645,10 +89524,18 @@ }, "m6id.large": { "ap-northeast-1": 0.2096, - "ap-southeast-2": 0.2054, + "ap-northeast-2": 0.0, + "ap-south-1": 0.19721, + "ap-southeast-1": 0.21916, + "ap-southeast-2": 0.0, + "ca-central-1": 0.1886, + "ca-west-1": 0.0, "eu-central-1": 0.1991, + "eu-central-2": 0.0, "eu-west-1": 0.0, - "il-central-1": 0.20911, + "eu-west-2": 0.0, + "il-central-1": 0.19522, + "sa-east-1": 0.2642, "us-east-1": 0.0, "us-east-2": 0.17495, "us-gov-west-1": 0.22152, @@ -79656,10 +89543,18 @@ }, "m6id.xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.3545, + "ap-northeast-2": 0.37739, + "ap-south-1": 0.0, + "ap-southeast-1": 0.38201, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "ca-west-1": 0.3209, "eu-central-1": 0.37046, + "eu-central-2": 0.37046, "eu-west-1": 0.0, + "eu-west-2": 0.35891, "il-central-1": 0.36192, + "sa-east-1": 0.4721, "us-east-1": 0.2936, "us-east-2": 0.2936, "us-gov-west-1": 0.0, @@ -79667,10 +89562,18 @@ }, "m6id.metal": { "ap-northeast-1": 9.9362, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 9.6002, "ap-southeast-2": 9.6674, + "ca-central-1": 8.5922, + "ca-west-1": 0.0, "eu-central-1": 9.2642, + "eu-central-2": 10.17812, "eu-west-1": 8.5922, - "il-central-1": 9.01588, + "eu-west-2": 8.9282, + "il-central-1": 0.0, + "sa-east-1": 12.221, "us-east-1": 0.0, "us-east-2": 7.7186, "us-gov-west-1": 9.7378, @@ -79678,32 +89581,56 @@ }, "m6id.2xlarge": { "ap-northeast-1": 0.7382, + "ap-northeast-2": 0.76718, + "ap-south-1": 0.68864, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.70712, + "ca-west-1": 0.70712, "eu-central-1": 0.6962, + "eu-central-2": 0.75332, "eu-west-1": 0.6542, - "il-central-1": 0.68068, + "eu-west-2": 0.0, + "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.7258, - "us-west-2": 0.64706 + "us-west-2": 0.5996 }, "m6id.4xlarge": { "ap-northeast-1": 1.3514, - "ap-southeast-2": 1.3178, + "ap-northeast-2": 1.40936, + "ap-south-1": 1.25228, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 1.28924, + "ca-west-1": 1.1834, "eu-central-1": 1.2674, - "eu-west-1": 1.1834, + "eu-central-2": 1.5073, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "il-central-1": 1.3475, + "sa-east-1": 1.637, "us-east-1": 0.0, "us-east-2": 1.16912, - "us-gov-west-1": 0.0, - "us-west-2": 1.0742 + "us-gov-west-1": 1.3266, + "us-west-2": 1.16912 }, "m6id.8xlarge": { - "ap-northeast-1": 2.82308, + "ap-northeast-1": 2.5778, + "ap-northeast-2": 2.69372, + "ap-south-1": 2.1746, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.5106, - "eu-central-1": 2.63828, + "ca-central-1": 2.45348, + "ca-west-1": 2.2418, + "eu-central-1": 2.4098, + "eu-central-2": 2.63828, "eu-west-1": 2.2418, - "il-central-1": 2.56999, + "eu-west-2": 2.3258, + "il-central-1": 2.34772, + "sa-east-1": 3.149, "us-east-1": 2.21324, "us-east-2": 2.0234, "us-gov-west-1": 0.0, @@ -79711,494 +89638,1182 @@ }, "m6id.12xlarge": { "ap-northeast-1": 3.8042, + "ap-northeast-2": 3.6278, + "ap-south-1": 3.1994, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.06124, + "ca-central-1": 0.0, + "ca-west-1": 3.3002, "eu-central-1": 0.0, + "eu-central-2": 4.27191, "eu-west-1": 0.0, - "il-central-1": 3.45908, - "us-east-1": 3.25736, + "eu-west-2": 3.4262, + "il-central-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 2.9726, "us-east-2": 2.9726, - "us-gov-west-1": 4.09028, - "us-west-2": 3.25736 + "us-gov-west-1": 0.0, + "us-west-2": 2.9726 }, "m6id.16xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-2": 5.37332, + "ap-northeast-2": 5.26244, + "ap-south-1": 4.63412, + "ap-southeast-1": 4.8626, + "ap-southeast-2": 0.0, + "ca-central-1": 4.3586, + "ca-west-1": 4.78196, "eu-central-1": 4.6946, + "eu-central-2": 0.0, "eu-west-1": 4.3586, - "il-central-1": 4.57044, + "eu-west-2": 4.96676, + "il-central-1": 5.01498, + "sa-east-1": 6.7778, "us-east-1": 3.9218, "us-east-2": 4.30148, "us-gov-west-1": 4.9314, - "us-west-2": 4.30148 + "us-west-2": 3.9218 }, "m6id.24xlarge": { "ap-northeast-1": 7.4834, + "ap-northeast-2": 7.83116, + "ap-south-1": 6.2738, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 6.4754, + "ca-west-1": 7.11044, "eu-central-1": 7.66484, - "eu-west-1": 0.0, - "il-central-1": 6.79316, - "us-east-1": 0.0, + "eu-central-2": 8.41882, + "eu-west-1": 6.4754, + "eu-west-2": 0.0, + "il-central-1": 0.0, + "sa-east-1": 10.1042, + "us-east-1": 6.38972, "us-east-2": 6.38972, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 6.38972 }, "m6id.32xlarge": { "ap-northeast-1": 9.9362, + "ap-northeast-2": 9.4658, + "ap-south-1": 8.3234, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 8.5922, + "ca-west-1": 8.5922, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-west-1": 8.5922, + "eu-west-2": 8.9282, "il-central-1": 0.0, - "us-east-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 7.7186, "us-east-2": 7.7186, - "us-gov-west-1": 0.0, + "us-gov-west-1": 9.7378, "us-west-2": 7.7186 }, "m6idn.large": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.25169, - "eu-central-1": 0.24584, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.25754, + "eu-central-1": 0.26479, + "eu-north-1": 0.2389, + "eu-south-2": 0.0, "eu-west-1": 0.25192, "us-east-1": 0.0, "us-east-2": 0.23133, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.25637, + "us-west-1": 0.23974, "us-west-2": 0.23133 }, "m6idn.xlarge": { - "ap-northeast-1": 0.50675, - "ap-southeast-1": 0.0, - "eu-central-1": 0.43538, - "eu-west-1": 0.44755, + "ap-northeast-1": 0.4658, + "ap-southeast-1": 0.44708, + "ap-southeast-2": 0.45878, + "eu-central-1": 0.47329, + "eu-north-1": 0.3883, + "eu-south-2": 0.40466, + "eu-west-1": 0.0, "us-east-1": 0.37454, "us-east-2": 0.40636, "us-gov-west-1": 0.45644, + "us-west-1": 0.0, "us-west-2": 0.40636 }, "m6idn.metal": { "ap-northeast-1": 13.229, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 12.25556, + "eu-north-1": 10.749, + "eu-south-2": 11.27252, "eu-west-1": 0.0, "us-east-1": 10.30868, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 12.92948, + "us-west-1": 0.0, "us-west-2": 10.30868 }, "m6idn.2xlarge": { "ap-northeast-1": 1.0259, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.98472, + "ap-southeast-2": 0.0, "eu-central-1": 0.95898, - "eu-west-1": 0.83636, + "eu-north-1": 0.8554, + "eu-south-2": 0.89139, + "eu-west-1": 0.0, "us-east-1": 0.76148, "us-east-2": 0.82513, - "us-gov-west-1": 1.00531, + "us-gov-west-1": 0.92528, + "us-west-1": 0.85876, "us-west-2": 0.76148 }, "m6idn.4xlarge": { "ap-northeast-1": 1.9268, "ap-southeast-1": 1.84443, - "eu-central-1": 0.0, + "ap-southeast-2": 1.73492, + "eu-central-1": 1.79295, + "eu-north-1": 1.453, + "eu-south-2": 1.65778, "eu-west-1": 1.68999, - "us-east-1": 1.39796, + "us-east-1": 1.52526, "us-east-2": 1.39796, "us-gov-west-1": 1.88562, + "us-west-1": 1.73927, "us-west-2": 1.52526 }, "m6idn.8xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 3.25124, - "eu-central-1": 3.15764, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.91188, "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 2.92551, - "us-gov-west-1": 0.0, - "us-west-2": 2.92551 + "us-east-2": 0.0, + "us-gov-west-1": 3.64623, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m6idn.12xlarge": { "ap-northeast-1": 5.5304, "ap-southeast-1": 4.81436, - "eu-central-1": 5.12886, + "ap-southeast-2": 5.43774, + "eu-central-1": 0.0, + "eu-north-1": 4.109, + "eu-south-2": 4.30532, "eu-west-1": 4.81998, "us-east-1": 4.32577, - "us-east-2": 0.0, - "us-gov-west-1": 5.40685, - "us-west-2": 0.0 + "us-east-2": 4.32577, + "us-gov-west-1": 0.0, + "us-west-1": 4.96782, + "us-west-2": 4.32577 }, "m6idn.16xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 7.00273, + "ap-southeast-2": 7.20865, "eu-central-1": 0.0, + "eu-north-1": 5.437, + "eu-south-2": 0.0, "eu-west-1": 5.81588, "us-east-1": 5.72602, - "us-east-2": 5.21684, + "us-east-2": 0.0, "us-gov-west-1": 6.52724, + "us-west-1": 0.0, "us-west-2": 5.21684 }, "m6idn.24xlarge": { "ap-northeast-1": 9.953, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, - "eu-west-1": 8.66132, + "ap-southeast-2": 9.78452, + "eu-central-1": 10.13271, + "eu-north-1": 8.093, + "eu-south-2": 0.0, + "eu-west-1": 9.51495, "us-east-1": 7.76276, "us-east-2": 8.52654, "us-gov-west-1": 10.6887, - "us-west-2": 8.52654 + "us-west-1": 9.81063, + "us-west-2": 7.76276 }, "m6idn.32xlarge": { "ap-northeast-1": 13.229, - "ap-southeast-1": 0.0, + "ap-southeast-1": 12.62996, + "ap-southeast-2": 0.0, "eu-central-1": 12.25556, + "eu-north-1": 10.749, + "eu-south-2": 11.27252, "eu-west-1": 11.50676, "us-east-1": 0.0, "us-east-2": 10.30868, "us-gov-west-1": 0.0, + "us-west-1": 11.86516, "us-west-2": 10.30868 }, "m6in.large": { "ap-northeast-1": 0.23531, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.24935, "eu-central-1": 0.23777, - "eu-west-1": 0.21191, + "eu-north-1": 0.2191, + "eu-south-2": 0.21148, + "eu-west-1": 0.22747, "us-east-1": 0.20945, "us-east-2": 0.20945, - "us-gov-west-1": 0.24806, - "us-west-2": 0.20945 + "us-gov-west-1": 0.23063, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "m6in.xlarge": { "ap-northeast-1": 0.41432, "ap-southeast-1": 0.4321, - "eu-central-1": 0.38624, + "ap-southeast-2": 0.4424, + "eu-central-1": 0.0, + "eu-north-1": 0.3523, + "eu-south-2": 0.3977, "eu-west-1": 0.36752, - "us-east-1": 0.36261, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.43983, - "us-west-2": 0.33476 + "us-gov-west-1": 0.40496, + "us-west-1": 0.38118, + "us-west-2": 0.36261 }, "m6in.metal": { "ap-northeast-1": 0.0, "ap-southeast-1": 11.05748, - "eu-central-1": 0.0, + "ap-southeast-2": 11.357, + "eu-central-1": 10.68308, + "eu-north-1": 9.597, + "eu-south-2": 10.05652, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 10.52116, + "us-west-2": 9.03572 }, "m6in.2xlarge": { "ap-northeast-1": 0.84104, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.80828, + "ap-southeast-2": 0.827, "eu-central-1": 0.0, - "eu-west-1": 0.80968, + "eu-north-1": 0.717, + "eu-south-2": 0.74572, + "eu-west-1": 0.0, "us-east-1": 0.73761, "us-east-2": 0.73761, "us-gov-west-1": 0.82232, + "us-west-1": 0.83974, "us-west-2": 0.0 }, "m6in.4xlarge": { - "ap-northeast-1": 1.70029, + "ap-northeast-1": 1.55708, "ap-southeast-1": 0.0, - "eu-central-1": 1.57674, + "ap-southeast-2": 1.6694, + "eu-central-1": 1.44476, + "eu-north-1": 1.309, + "eu-south-2": 1.49058, "eu-west-1": 0.0, - "us-east-1": 1.35022, - "us-east-2": 1.35022, + "us-east-1": 1.23884, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 1.35022 }, "m6in.8xlarge": { - "ap-northeast-1": 3.27558, + "ap-northeast-1": 0.0, "ap-southeast-1": 2.85812, + "ap-southeast-2": 0.0, "eu-central-1": 2.76452, + "eu-north-1": 2.7298, + "eu-south-2": 2.60788, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 2.91428, + "us-west-1": 2.98394, "us-west-2": 0.0 }, "m6in.12xlarge": { "ap-northeast-1": 4.42124, "ap-southeast-1": 0.0, + "ap-southeast-2": 4.337, "eu-central-1": 0.0, + "eu-north-1": 4.0322, + "eu-south-2": 3.84932, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 3.46652, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 3.46652 + "us-west-1": 4.41342, + "us-west-2": 0.0 }, "m6in.16xlarge": { "ap-northeast-1": 6.42615, "ap-southeast-1": 6.13786, + "ap-southeast-2": 5.741, "eu-central-1": 5.40404, + "eu-north-1": 5.3346, + "eu-south-2": 0.0, "eu-west-1": 5.60247, "us-east-1": 5.0259, - "us-east-2": 0.0, - "us-gov-west-1": 5.70356, + "us-east-2": 5.0259, + "us-gov-west-1": 0.0, + "us-west-1": 5.84289, "us-west-2": 0.0 }, "m6in.24xlarge": { "ap-northeast-1": 9.57673, "ap-southeast-1": 9.1443, + "ap-southeast-2": 9.3914, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 7.229, + "eu-south-2": 7.57364, + "eu-west-1": 7.59428, "us-east-1": 7.47634, "us-east-2": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 7.92212, "us-west-2": 7.47634 }, "m6in.32xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, + "ap-southeast-2": 11.357, "eu-central-1": 10.68308, + "eu-north-1": 9.597, + "eu-south-2": 10.05652, "eu-west-1": 10.08404, "us-east-1": 9.03572, - "us-east-2": 9.03572, + "us-east-2": 0.0, "us-gov-west-1": 11.28212, + "us-west-1": 10.52116, "us-west-2": 9.03572 }, + "m7a.medium": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.11788, + "eu-south-2": 0.0, + "eu-west-1": 0.12736, + "us-east-1": 0.11426, + "us-east-2": 0.11426, + "us-west-2": 0.0 + }, + "m7a.large": { + "ap-northeast-1": 0.20603, + "eu-central-1": 0.19516, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.18381, + "us-east-2": 0.0, + "us-west-2": 0.18381 + }, + "m7a.xlarge": { + "ap-northeast-1": 0.35576, + "eu-central-1": 0.0, + "eu-north-1": 0.30262, + "eu-south-2": 0.3147, + "eu-west-1": 0.0, + "us-east-1": 0.31132, + "us-east-2": 0.28814, + "us-west-2": 0.31132 + }, + "m7a.metal-48xl": { + "ap-northeast-1": 14.49908, + "eu-central-1": 13.45556, + "eu-north-1": 0.0, + "eu-south-2": 12.5282, + "eu-west-1": 12.5282, + "us-east-1": 11.25332, + "us-east-2": 11.25332, + "us-west-2": 0.0 + }, + "m7a.2xlarge": { + "ap-northeast-1": 0.72392, + "eu-central-1": 0.0, + "eu-north-1": 0.61764, + "eu-south-2": 0.6418, + "eu-west-1": 0.69348, + "us-east-1": 0.0, + "us-east-2": 0.58868, + "us-west-2": 0.0 + }, + "m7a.4xlarge": { + "ap-northeast-1": 1.44262, + "eu-central-1": 1.34697, + "eu-north-1": 0.0, + "eu-south-2": 1.1586, + "eu-west-1": 1.26196, + "us-east-1": 1.05236, + "us-east-2": 1.05236, + "us-west-2": 1.05236 + }, + "m7a.8xlarge": { + "ap-northeast-1": 2.52068, + "eu-central-1": 2.56894, + "eu-north-1": 2.09556, + "eu-south-2": 0.0, + "eu-west-1": 2.39892, + "us-east-1": 1.97972, + "us-east-2": 1.97972, + "us-west-2": 2.16519 + }, + "m7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 3.2258, + "eu-west-1": 3.2258, + "us-east-1": 0.0, + "us-east-2": 2.90708, + "us-west-2": 3.18529 + }, + "m7a.16xlarge": { + "ap-northeast-1": 4.91636, + "eu-central-1": 4.56852, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 4.67284, + "us-east-1": 4.20538, + "us-east-2": 4.20538, + "us-west-2": 0.0 + }, + "m7a.24xlarge": { + "ap-northeast-1": 7.31204, + "eu-central-1": 7.45681, + "eu-north-1": 6.62785, + "eu-south-2": 6.3266, + "eu-west-1": 6.94676, + "us-east-1": 5.68916, + "us-east-2": 6.24558, + "us-west-2": 0.0 + }, + "m7a.32xlarge": { + "ap-northeast-1": 9.70772, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 8.3938, + "us-east-1": 0.0, + "us-east-2": 8.28577, + "us-west-2": 7.54388 + }, + "m7a.48xlarge": { + "ap-northeast-1": 14.49908, + "eu-central-1": 0.0, + "eu-north-1": 11.94836, + "eu-south-2": 12.5282, + "eu-west-1": 0.0, + "us-east-1": 11.25332, + "us-east-2": 11.25332, + "us-west-2": 11.25332 + }, "m7g.medium": { "ap-northeast-1": 0.109, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0873, + "ap-south-2": 0.0, + "ap-southeast-1": 0.1073, "ap-southeast-2": 0.1073, + "ca-central-1": 0.1018, "eu-central-1": 0.1052, - "eu-west-1": 0.1018, + "eu-north-1": 0.0, + "eu-south-2": 0.1046, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.1069, + "me-south-1": 0.1159, + "sa-east-1": 0.1252, "us-east-1": 0.0971, "us-east-2": 0.0997, + "us-west-1": 0.0, "us-west-2": 0.0997 }, "m7g.large": { "ap-northeast-1": 0.0, - "ap-southeast-2": 0.1583, + "ap-northeast-2": 0.1628, + "ap-south-1": 0.1183, + "ap-south-2": 0.1183, + "ap-southeast-1": 0.1647, + "ap-southeast-2": 0.1647, + "ca-central-1": 0.153, "eu-central-1": 0.0, - "eu-west-1": 0.1473, + "eu-north-1": 0.1485, + "eu-south-2": 0.1529, + "eu-west-1": 0.0, + "eu-west-2": 0.1507, + "eu-west-3": 0.1575, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.143, "us-east-2": 0.1379, + "us-west-1": 0.1575, "us-west-2": 0.0 }, "m7g.xlarge": { "ap-northeast-1": 0.2671, + "ap-northeast-2": 0.2569, + "ap-south-1": 0.1729, + "ap-south-2": 0.0, + "ap-southeast-1": 0.2732, "ap-southeast-2": 0.2732, + "ca-central-1": 0.2382, "eu-central-1": 0.2641, + "eu-north-1": 0.2297, + "eu-south-2": 0.2495, "eu-west-1": 0.2497, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.3164, "us-east-1": 0.0, - "us-east-2": 0.2298, + "us-east-2": 0.2195, + "us-west-1": 0.2587, "us-west-2": 0.0 }, "m7g.metal": { - "ap-northeast-1": 3.4978, + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.3346, + "ap-south-1": 1.9912, + "ap-south-2": 0.0, + "ap-southeast-1": 3.389, "ap-southeast-2": 3.389, + "ca-central-1": 3.0357, "eu-central-1": 0.0, + "eu-north-1": 2.8994, + "eu-south-2": 0.0, "eu-west-1": 3.0354, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "me-south-1": 3.7154, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 2.7362, + "us-west-1": 3.1714, "us-west-2": 2.7362 }, "m7g.2xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.5262, + "ap-south-1": 0.373, + "ap-south-2": 0.3583, + "ap-southeast-1": 0.533, "ap-southeast-2": 0.533, + "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.4888, + "eu-north-1": 0.4718, + "eu-south-2": 0.5115, + "eu-west-1": 0.5117, + "eu-west-2": 0.5024, + "eu-west-3": 0.5297, + "me-south-1": 0.0, + "sa-east-1": 0.6759, "us-east-1": 0.4514, "us-east-2": 0.0, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 0.472 }, "m7g.4xlarge": { "ap-northeast-1": 1.0214, + "ap-northeast-2": 0.9774, + "ap-south-1": 0.5916, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.941, + "ca-central-1": 0.8527, "eu-central-1": 0.9564, - "eu-west-1": 0.8984, - "us-east-1": 0.7778, + "eu-north-1": 0.8186, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.9344, + "me-south-1": 0.0, + "sa-east-1": 1.2268, + "us-east-1": 0.8189, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.7778 }, "m7g.8xlarge": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.1168, + "ap-south-2": 1.1169, + "ap-southeast-1": 1.757, "ap-southeast-2": 1.8598, - "eu-central-1": 1.7877, + "ca-central-1": 1.6718, + "eu-central-1": 0.0, + "eu-north-1": 1.5996, + "eu-south-2": 1.5794, "eu-west-1": 1.5802, + "eu-west-2": 1.6348, + "eu-west-3": 1.7439, + "me-south-1": 0.0, + "sa-east-1": 2.3286, "us-east-1": 0.0, "us-east-2": 1.5129, + "us-west-1": 1.7439, "us-west-2": 0.0 }, "m7g.12xlarge": { - "ap-northeast-1": 2.8142, + "ap-northeast-1": 2.6546, + "ap-northeast-2": 2.6821, + "ap-south-1": 1.5247, + "ap-south-2": 1.5247, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.7272, + "ca-central-1": 0.0, "eu-central-1": 2.6191, + "eu-north-1": 2.3369, + "eu-south-2": 2.4439, "eu-west-1": 2.4453, + "eu-west-2": 2.3896, + "eu-west-3": 0.0, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 2.0834, + "us-west-1": 2.4098, "us-west-2": 0.0 }, "m7g.16xlarge": { "ap-northeast-1": 3.4978, - "ap-southeast-2": 3.389, + "ap-northeast-2": 3.3346, + "ap-south-1": 1.9912, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 3.0357, "eu-central-1": 3.2533, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 3.0354, + "eu-west-2": 0.0, + "eu-west-3": 3.1714, + "me-south-1": 3.7154, + "sa-east-1": 0.0, "us-east-1": 2.7362, - "us-east-2": 2.7362, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-1": 3.1714, + "us-west-2": 2.7362 }, "m7gd.medium": { + "ap-northeast-1": 0.1253, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1229, + "ap-southeast-2": 0.1274, + "eu-central-1": 0.1206, + "eu-north-1": 0.0, + "eu-south-2": 0.1158, "eu-west-1": 0.1158, + "eu-west-3": 0.1187, + "sa-east-1": 0.1463, "us-east-1": 0.1129, - "us-east-2": 0.1097, + "us-east-2": 0.0, + "us-west-1": 0.1191, "us-west-2": 0.1097 }, "m7gd.large": { + "ap-northeast-1": 0.2025, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1895, + "ap-southeast-2": 0.0, + "eu-central-1": 0.1925, + "eu-north-1": 0.1765, + "eu-south-2": 0.1754, "eu-west-1": 0.1754, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.1631, "us-east-2": 0.0, - "us-west-2": 0.1695 + "us-west-1": 0.1895, + "us-west-2": 0.1631 }, "m7gd.xlarge": { - "eu-west-1": 0.2944, - "us-east-1": 0.0, + "ap-northeast-1": 0.3322, + "ap-south-1": 0.1983, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.3408, + "eu-central-1": 0.3133, + "eu-north-1": 0.2831, + "eu-south-2": 0.3087, + "eu-west-1": 0.0, + "eu-west-3": 0.3058, + "sa-east-1": 0.3965, + "us-east-1": 0.2699, "us-east-2": 0.2827, + "us-west-1": 0.3077, "us-west-2": 0.2699 }, + "m7gd.metal": { + "ap-northeast-1": 4.54, + "ap-south-1": 2.397, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.4191, + "eu-central-1": 4.2376, + "eu-north-1": 3.7538, + "eu-south-2": 0.0, + "eu-west-1": 3.9352, + "eu-west-3": 4.1167, + "sa-east-1": 5.5682, + "us-east-1": 3.5421, + "us-east-2": 3.5421, + "us-west-1": 4.1469, + "us-west-2": 3.5421 + }, "m7gd.2xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.71, + "ap-south-1": 0.409, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.694, + "eu-central-1": 0.0, + "eu-north-1": 0.5786, + "eu-south-2": 0.0, + "eu-west-1": 0.6013, + "eu-west-3": 0.624, + "sa-east-1": 0.8054, "us-east-1": 0.5521, "us-east-2": 0.5778, + "us-west-1": 0.0, "us-west-2": 0.5778 }, "m7gd.4xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.0, + "ap-south-1": 0.693, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.2629, + "eu-central-1": 1.1532, + "eu-north-1": 1.0866, + "eu-south-2": 0.0, + "eu-west-1": 1.0776, + "eu-west-3": 1.1229, + "sa-east-1": 0.0, "us-east-1": 1.0305, - "us-east-2": 1.0305, - "us-west-2": 0.9793 + "us-east-2": 0.9793, + "us-west-1": 1.1305, + "us-west-2": 0.0 }, "m7gd.8xlarge": { + "ap-northeast-1": 2.465, + "ap-south-1": 1.261, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 2.1813, + "eu-north-1": 1.9394, + "eu-south-2": 2.0301, "eu-west-1": 2.0301, + "eu-west-3": 2.2406, + "sa-east-1": 2.8466, "us-east-1": 1.8336, "us-east-2": 1.9361, + "us-west-1": 0.0, "us-west-2": 1.8336 }, "m7gd.12xlarge": { - "eu-west-1": 2.9827, + "ap-northeast-1": 3.635, + "ap-south-1": 1.829, + "ap-southeast-1": 3.5148, + "ap-southeast-2": 3.5388, + "eu-central-1": 0.0, + "eu-north-1": 2.8466, + "eu-south-2": 2.9827, + "eu-west-1": 3.1541, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 2.6878, "us-east-2": 0.0, + "us-west-1": 3.1414, "us-west-2": 2.8416 }, "m7gd.16xlarge": { - "eu-west-1": 0.0, + "ap-northeast-1": 4.54, + "ap-south-1": 2.397, + "ap-southeast-1": 4.3888, + "ap-southeast-2": 4.4191, + "eu-central-1": 4.2376, + "eu-north-1": 3.7538, + "eu-south-2": 3.9352, + "eu-west-1": 0.0, + "eu-west-3": 4.1167, + "sa-east-1": 5.5682, "us-east-1": 3.5421, - "us-east-2": 3.5421, - "us-west-2": 3.5421 + "us-east-2": 0.0, + "us-west-1": 4.1469, + "us-west-2": 0.0 }, "m7i.large": { - "eu-west-1": 0.0, + "ap-northeast-1": 0.1865, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1949, + "ap-southeast-2": 0.1823, + "ca-central-1": 0.16865, + "eu-central-1": 0.18913, + "eu-north-1": 0.17411, + "eu-south-2": 0.16865, + "eu-west-1": 0.0, + "eu-west-2": 0.17285, + "eu-west-3": 0.1739, + "sa-east-1": 0.23302, "us-east-1": 0.16718, - "us-east-2": 0.1571, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.19606, + "us-west-1": 0.1739, "us-west-2": 0.0 }, "m7i.xlarge": { + "ap-northeast-1": 0.3167, + "ap-northeast-2": 0.32888, + "ap-south-1": 0.28961, + "ap-southeast-1": 0.3083, + "ap-southeast-2": 0.3083, + "ca-central-1": 0.30347, + "eu-central-1": 0.2978, + "eu-north-1": 0.0, + "eu-south-2": 0.281, "eu-west-1": 0.30347, + "eu-west-2": 0.2894, + "eu-west-3": 0.2915, + "sa-east-1": 0.3776, "us-east-1": 0.2579, - "us-east-2": 0.2579, + "us-east-2": 0.0, + "us-gov-east-1": 0.3104, + "us-gov-west-1": 0.3104, + "us-west-1": 0.2915, "us-west-2": 0.27806 }, + "m7i.metal-24xl": { + "ap-northeast-1": 6.3746, + "ap-northeast-2": 6.66692, + "ap-south-1": 5.2154, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 6.05708, + "eu-central-1": 5.921, + "eu-north-1": 5.2658, + "eu-south-2": 5.5178, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 5.7698, + "sa-east-1": 8.60732, + "us-east-1": 5.44724, + "us-east-2": 5.44724, + "us-gov-east-1": 0.0, + "us-gov-west-1": 6.2234, + "us-west-1": 5.7698, + "us-west-2": 4.9634 + }, + "m7i.metal-48xl": { + "ap-northeast-1": 12.6242, + "ap-northeast-2": 12.0194, + "ap-south-1": 10.3058, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 11.717, + "eu-north-1": 0.0, + "eu-south-2": 10.9106, + "eu-west-1": 0.0, + "eu-west-2": 11.3138, + "eu-west-3": 11.4146, + "sa-east-1": 15.5474, + "us-east-1": 0.0, + "us-east-2": 9.8018, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, + "us-west-1": 11.4146, + "us-west-2": 9.8018 + }, "m7i.2xlarge": { - "eu-west-1": 0.5744, - "us-east-1": 0.56852, + "ap-northeast-1": 0.6458, + "ap-northeast-2": 0.6206, + "ap-south-1": 0.5492, + "ap-southeast-1": 0.629, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.61934, + "eu-west-2": 0.0, + "eu-west-3": 0.64244, + "sa-east-1": 0.83186, + "us-east-1": 0.5282, "us-east-2": 0.0, - "us-west-2": 0.5282 + "us-gov-east-1": 0.68402, + "us-gov-west-1": 0.68402, + "us-west-1": 0.64244, + "us-west-2": 0.0 }, "m7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.05824, + "ap-southeast-1": 1.133, + "ap-southeast-2": 1.133, + "ca-central-1": 0.0, + "eu-central-1": 1.1876, + "eu-north-1": 0.9818, + "eu-south-2": 0.0, "eu-west-1": 1.0238, + "eu-west-2": 1.0574, + "eu-west-3": 1.0658, + "sa-east-1": 1.53872, "us-east-1": 0.0, - "us-east-2": 0.9314, + "us-east-2": 1.01204, + "us-gov-east-1": 0.0, + "us-gov-west-1": 1.24304, + "us-west-1": 1.0658, "us-west-2": 1.01204 }, "m7i.8xlarge": { + "ap-northeast-1": 2.2082, + "ap-northeast-2": 2.30564, + "ap-south-1": 1.99148, + "ap-southeast-1": 2.3426, + "ap-southeast-2": 2.141, + "ca-central-1": 1.9226, + "eu-central-1": 2.057, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 1.9226, + "eu-west-2": 1.9898, + "eu-west-3": 2.19476, + "sa-east-1": 2.95244, "us-east-1": 1.89908, "us-east-2": 1.89908, + "us-gov-east-1": 2.36108, + "us-gov-west-1": 2.1578, + "us-west-1": 0.0, "us-west-2": 0.0 }, "m7i.12xlarge": { - "eu-west-1": 3.09104, + "ap-northeast-1": 3.56228, + "ap-northeast-2": 0.0, + "ap-south-1": 2.6702, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.4514, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 2.95244, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 3.22964, + "sa-east-1": 0.0, "us-east-1": 2.78612, "us-east-2": 2.5442, + "us-gov-east-1": 3.1742, + "us-gov-west-1": 0.0, + "us-west-1": 3.22964, "us-west-2": 2.78612 }, "m7i.16xlarge": { + "ap-northeast-1": 4.70804, + "ap-northeast-2": 0.0, + "ap-south-1": 3.85796, + "ap-southeast-1": 4.5602, + "ap-southeast-2": 4.5602, + "ca-central-1": 3.7202, + "eu-central-1": 3.989, + "eu-north-1": 0.0, + "eu-south-2": 3.7202, "eu-west-1": 0.0, + "eu-west-2": 3.8546, + "eu-west-3": 4.26452, + "sa-east-1": 0.0, "us-east-1": 3.3506, "us-east-2": 3.67316, - "us-west-2": 0.0 + "us-gov-east-1": 4.59716, + "us-gov-west-1": 4.59716, + "us-west-1": 3.8882, + "us-west-2": 3.3506 }, "m7i.24xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 5.72444, + "ap-southeast-1": 6.173, + "ap-southeast-2": 6.7778, + "ca-central-1": 6.05708, + "eu-central-1": 5.921, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 5.5178, + "eu-west-2": 5.7194, + "eu-west-3": 6.33428, + "sa-east-1": 8.60732, "us-east-1": 4.9634, - "us-east-2": 5.44724, + "us-east-2": 4.9634, + "us-gov-east-1": 6.2234, + "us-gov-west-1": 6.83324, + "us-west-1": 0.0, "us-west-2": 5.44724 }, "m7i.48xlarge": { + "ap-northeast-1": 12.6242, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 12.221, + "ap-southeast-2": 12.221, + "ca-central-1": 10.9106, + "eu-central-1": 11.717, + "eu-north-1": 10.4066, + "eu-south-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 11.3138, + "eu-west-3": 11.4146, + "sa-east-1": 15.5474, "us-east-1": 9.8018, "us-east-2": 9.8018, + "us-gov-east-1": 12.3218, + "us-gov-west-1": 12.3218, + "us-west-1": 11.4146, "us-west-2": 9.8018 }, "m7i-flex.large": { + "ap-northeast-1": 0.17999, + "ap-northeast-2": 0.17401, + "ap-south-1": 0.15705, + "ap-southeast-1": 0.176, + "ap-southeast-2": 0.176, + "ca-central-1": 0.16303, + "eu-central-1": 0.17101, + "eu-north-1": 0.15805, + "eu-south-2": 0.16303, "eu-west-1": 0.16303, + "eu-west-2": 0.16702, + "eu-west-3": 0.16802, + "sa-east-1": 0.20892, "us-east-1": 0.15206, "us-east-2": 0.15206, + "us-gov-east-1": 0.177, + "us-gov-west-1": 0.177, + "us-west-1": 0.16802, "us-west-2": 0.15206 }, "m7i-flex.xlarge": { + "ap-northeast-1": 0.30368, + "ap-northeast-2": 0.29172, + "ap-south-1": 0.2578, + "ap-southeast-1": 0.2957, + "ap-southeast-2": 0.2957, + "ca-central-1": 0.26976, + "eu-central-1": 0.28572, + "eu-north-1": 0.2598, + "eu-south-2": 0.26976, "eu-west-1": 0.26976, + "eu-west-2": 0.27774, + "eu-west-3": 0.27974, + "sa-east-1": 0.36154, "us-east-1": 0.24782, "us-east-2": 0.24782, + "us-gov-east-1": 0.2977, + "us-gov-west-1": 0.2977, + "us-west-1": 0.27974, "us-west-2": 0.24782 }, "m7i-flex.2xlarge": { + "ap-northeast-1": 0.61976, + "ap-northeast-2": 0.59584, + "ap-south-1": 0.528, + "ap-southeast-1": 0.6038, + "ap-southeast-2": 0.6038, + "ca-central-1": 0.55192, + "eu-central-1": 0.58384, + "eu-north-1": 0.532, + "eu-south-2": 0.55192, "eu-west-1": 0.55192, + "eu-west-2": 0.56788, + "eu-west-3": 0.57188, + "sa-east-1": 0.73548, "us-east-1": 0.50804, "us-east-2": 0.50804, + "us-gov-east-1": 0.6078, + "us-gov-west-1": 0.6078, + "us-west-1": 0.57188, "us-west-2": 0.50804 }, "m7i-flex.4xlarge": { + "ap-northeast-1": 1.11452, + "ap-northeast-2": 1.06668, + "ap-south-1": 0.931, + "ap-southeast-1": 1.0826, + "ap-southeast-2": 1.0826, + "ca-central-1": 0.97884, + "eu-central-1": 1.04268, + "eu-north-1": 0.939, + "eu-south-2": 0.97884, "eu-west-1": 0.97884, + "eu-west-2": 1.01076, + "eu-west-3": 1.01876, + "sa-east-1": 1.34596, "us-east-1": 0.89108, "us-east-2": 0.89108, + "us-gov-east-1": 1.0906, + "us-gov-west-1": 1.0906, + "us-west-1": 1.01876, "us-west-2": 0.89108 }, "m7i-flex.8xlarge": { + "ap-northeast-1": 2.10404, + "ap-northeast-2": 2.00836, + "ap-south-1": 1.737, + "ap-southeast-1": 2.0402, + "ap-southeast-2": 2.0402, + "ca-central-1": 1.83268, + "eu-central-1": 1.96036, + "eu-north-1": 1.753, + "eu-south-2": 1.83268, "eu-west-1": 1.83268, + "eu-west-2": 1.89652, + "eu-west-3": 1.91252, + "sa-east-1": 2.56692, "us-east-1": 1.65716, "us-east-2": 1.65716, + "us-gov-east-1": 2.0562, + "us-gov-west-1": 2.0562, + "us-west-1": 1.91252, "us-west-2": 1.65716 }, "p2.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 1.565, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 1.818, - "ap-southeast-2": 1.642, - "eu-central-1": 1.559, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-southeast-2": 1.796, + "eu-central-1": 0.0, + "eu-west-1": 1.169, + "us-east-1": 1.0, "us-east-2": 0.0, "us-gov-west-1": 1.288, "us-west-2": 1.09 }, "p2.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 13.67, "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 13.844, - "ap-southeast-2": 13.67, + "ap-southeast-2": 0.0, "eu-central-1": 11.769, "eu-west-1": 8.654, - "us-east-1": 7.3, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 7.3 }, "p2.16xlarge": { "ap-northeast-1": 24.772, - "ap-northeast-2": 23.54, + "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 27.588, "ap-southeast-2": 24.772, - "eu-central-1": 21.316, + "eu-central-1": 0.0, "eu-west-1": 15.652, "us-east-1": 14.5, "us-east-2": 0.0, @@ -80206,30 +90821,30 @@ "us-west-2": 14.5 }, "p3.2xlarge": { - "ap-northeast-1": 4.294, - "ap-northeast-2": 4.616, + "ap-northeast-1": 4.574, + "ap-northeast-2": 0.0, "ap-southeast-1": 4.334, "ap-southeast-2": 4.616, "ca-central-1": 3.685, - "eu-central-1": 3.923, + "eu-central-1": 0.0, "eu-west-1": 3.405, "eu-west-2": 3.922, "us-east-1": 3.359, "us-east-2": 0.0, - "us-gov-west-1": 3.772, + "us-gov-west-1": 0.0, "us-west-2": 3.16 }, "p3.8xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 17.995, + "ap-northeast-2": 17.036, "ap-southeast-1": 18.166, "ap-southeast-2": 0.0, "ca-central-1": 13.564, - "eu-central-1": 15.392, - "eu-west-1": 13.32, + "eu-central-1": 16.386, + "eu-west-1": 0.0, "eu-west-2": 0.0, - "us-east-1": 13.136, - "us-east-2": 0.0, + "us-east-1": 12.34, + "us-east-2": 12.34, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, @@ -80238,45 +90853,54 @@ "ap-northeast-2": 33.972, "ap-southeast-1": 33.972, "ap-southeast-2": 33.972, - "ca-central-1": 0.0, - "eu-central-1": 30.684, - "eu-west-1": 0.0, - "eu-west-2": 28.812, - "us-east-1": 0.0, + "ca-central-1": 27.028, + "eu-central-1": 0.0, + "eu-west-1": 26.54, + "eu-west-2": 0.0, + "us-east-1": 24.58, "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 24.58 + "us-west-2": 0.0 }, "p3dn.24xlarge": { "ap-northeast-1": 0.0, "eu-west-1": 0.0, - "us-east-1": 31.337, + "us-east-1": 0.0, "us-gov-east-1": 37.579, - "us-gov-west-1": 37.579, + "us-gov-west-1": 0.0, "us-west-2": 31.337 }, "p4d.24xlarge": { - "ap-northeast-1": 49.539365, - "ap-northeast-2": 0.0, - "eu-central-1": 45.164225, - "eu-west-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 32.8976, + "ap-northeast-1": 45.04715, + "ap-northeast-2": 50.052328, + "ap-southeast-1": 39.4521, + "ca-central-1": 41.584, + "eu-central-1": 41.06975, + "eu-west-1": 0.0, + "sa-east-1": 53.195, + "us-east-1": 0.125, + "us-east-2": 0.125, "us-gov-west-1": 39.455, - "us-west-2": 32.8976 + "us-west-2": 0.125 }, "p4de.24xlarge": { - "il-central-1": 58.529192, + "ap-southeast-1": 0.0, + "il-central-1": 53.21972, "us-east-1": 45.187325, "us-west-2": 0.0 }, "p5.48xlarge": { - "us-east-1": 98.445, - "us-west-2": 98.445 + "ap-southeast-2": 127.941, + "ca-central-1": 113.193, + "eu-north-1": 105.3274, + "sa-east-1": 165.3026, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-west-2": 0.125 }, "r3.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.32, "ap-south-1": 0.319, "ap-southeast-1": 0.3, "ap-southeast-2": 0.3, @@ -80286,27 +90910,27 @@ "us-east-1": 0.0, "us-east-2": 0.266, "us-gov-west-1": 0.3, - "us-west-1": 0.285, + "us-west-1": 0.0, "us-west-2": 0.0 }, "r3.xlarge": { "ap-northeast-1": 0.539, - "ap-northeast-2": 0.539, - "ap-south-1": 0.479, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.539, - "ap-southeast-2": 0.499, + "ap-southeast-2": 0.0, "eu-central-1": 0.5, "eu-west-1": 0.508, - "sa-east-1": 0.0, - "us-east-1": 0.433, - "us-east-2": 0.0, + "sa-east-1": 0.87, + "us-east-1": 0.0, + "us-east-2": 0.433, "us-gov-west-1": 0.499, "us-west-1": 0.471, "us-west-2": 0.0 }, "r3.2xlarge": { "ap-northeast-1": 0.898, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.898, "ap-south-1": 0.858, "ap-southeast-1": 0.898, "ap-southeast-2": 0.0, @@ -80314,47 +90938,47 @@ "eu-west-1": 0.915, "sa-east-1": 1.639, "us-east-1": 0.765, - "us-east-2": 0.765, + "us-east-2": 0.832, "us-gov-west-1": 0.898, "us-west-1": 0.915, "us-west-2": 0.0 }, "r3.4xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 1.778, + "ap-northeast-1": 1.696, + "ap-northeast-2": 1.856, + "ap-south-1": 1.616, "ap-southeast-1": 1.696, "ap-southeast-2": 1.696, - "eu-central-1": 1.7, + "eu-central-1": 1.869, "eu-west-1": 1.582, - "sa-east-1": 2.899, + "sa-east-1": 0.0, "us-east-1": 1.43, "us-east-2": 1.43, "us-gov-west-1": 1.866, - "us-west-1": 1.73, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 1.43 }, "r3.8xlarge": { "ap-northeast-1": 3.292, "ap-northeast-2": 3.292, "ap-south-1": 0.0, "ap-southeast-1": 3.292, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.292, "eu-central-1": 0.0, - "eu-west-1": 3.064, - "sa-east-1": 0.0, + "eu-west-1": 0.0, + "sa-east-1": 5.697, "us-east-1": 2.76, "us-east-2": 2.76, "us-gov-west-1": 3.292, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 2.76 }, "r4.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.276, - "ap-northeast-3": 0.26, + "ap-northeast-2": 0.26, + "ap-northeast-3": 0.0, "ap-south-1": 0.2507, - "ap-southeast-1": 0.0, + "ap-southeast-1": 0.276, "ap-southeast-2": 0.0, "ca-central-1": 0.246, "eu-central-1": 0.276, @@ -80364,84 +90988,84 @@ "sa-east-1": 0.408, "us-east-1": 0.0, "us-east-2": 0.233, - "us-gov-west-1": 0.2596, - "us-west-1": 0.2482, - "us-west-2": 0.246 + "us-gov-west-1": 0.276, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "r4.xlarge": { "ap-northeast-1": 0.452, "ap-northeast-2": 0.452, "ap-northeast-3": 0.452, "ap-south-1": 0.4014, - "ap-southeast-1": 0.452, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.42, + "ap-southeast-2": 0.4192, "ca-central-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.3964, - "eu-west-2": 0.0, - "eu-west-3": 0.0, - "sa-east-1": 0.0, + "eu-west-1": 0.426, + "eu-west-2": 0.443, + "eu-west-3": 0.412, + "sa-east-1": 0.716, "us-east-1": 0.366, "us-east-2": 0.366, "us-gov-west-1": 0.451, - "us-west-1": 0.426, + "us-west-1": 0.0, "us-west-2": 0.393 }, "r4.2xlarge": { - "ap-northeast-1": 0.74, - "ap-northeast-2": 0.804, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.804, - "ap-south-1": 0.0, + "ap-south-1": 0.648, "ap-southeast-1": 0.804, - "ap-southeast-2": 0.802, - "ca-central-1": 0.0, + "ap-southeast-2": 0.7384, + "ca-central-1": 0.684, "eu-central-1": 0.7402, "eu-west-1": 0.6928, "eu-west-2": 0.786, - "eu-west-3": 0.0, + "eu-west-3": 0.724, "sa-east-1": 1.332, - "us-east-1": 0.632, + "us-east-1": 0.685, "us-east-2": 0.632, - "us-gov-west-1": 0.802, + "us-gov-west-1": 0.0, "us-west-1": 0.0, "us-west-2": 0.685 }, "r4.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.38, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 1.196, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 1.385, "eu-central-1": 1.3804, "eu-west-1": 1.2856, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 1.348, "sa-east-1": 0.0, "us-east-1": 1.164, "us-east-2": 0.0, "us-gov-west-1": 1.504, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 1.27 }, "r4.8xlarge": { "ap-northeast-1": 2.66, - "ap-northeast-2": 2.66, - "ap-northeast-3": 0.0, + "ap-northeast-2": 2.916, + "ap-northeast-3": 2.66, "ap-south-1": 2.292, - "ap-southeast-1": 2.916, + "ap-southeast-1": 2.66, "ap-southeast-2": 0.0, "ca-central-1": 2.67, "eu-central-1": 0.0, "eu-west-1": 2.4712, "eu-west-2": 2.596, - "eu-west-3": 0.0, + "eu-west-3": 2.596, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 2.4712, + "us-east-2": 2.441, + "us-gov-west-1": 2.6536, + "us-west-1": 2.708, "us-west-2": 2.441 }, "r4.16xlarge": { @@ -80450,91 +91074,93 @@ "ap-northeast-3": 0.0, "ap-south-1": 4.484, "ap-southeast-1": 5.22, - "ap-southeast-2": 5.207, + "ap-southeast-2": 0.0, "ca-central-1": 4.772, - "eu-central-1": 0.0, + "eu-central-1": 5.222, "eu-west-1": 4.8424, "eu-west-2": 5.092, - "eu-west-3": 0.0, + "eu-west-3": 5.092, "sa-east-1": 9.06, "us-east-1": 4.356, "us-east-2": 4.356, "us-gov-west-1": 5.2072, - "us-west-1": 0.0, - "us-west-2": 4.356 + "us-west-1": 4.8424, + "us-west-2": 0.0 }, "r5.large": { - "af-south-1": 0.234, + "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.208, "ap-northeast-2": 0.217, - "ap-northeast-3": 0.208, + "ap-northeast-3": 0.0, "ap-south-1": 0.186, - "ap-south-2": 0.194, + "ap-south-2": 0.186, "ap-southeast-1": 0.217, "ap-southeast-2": 0.207, - "ap-southeast-3": 0.208, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.216, "ca-central-1": 0.0, - "eu-central-1": 0.208, + "ca-west-1": 0.0, + "eu-central-1": 0.217, "eu-central-2": 0.0, - "eu-north-1": 0.198, + "eu-north-1": 0.19, "eu-south-1": 0.213, - "eu-south-2": 0.206, + "eu-south-2": 0.197, "eu-west-1": 0.197, "eu-west-2": 0.0, - "eu-west-3": 0.0, - "il-central-1": 0.213, + "eu-west-3": 0.204, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.211, + "me-south-1": 0.221, "sa-east-1": 0.0, - "us-east-1": 0.182, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.182, "us-gov-east-1": 0.216, "us-gov-west-1": 0.216, "us-west-1": 0.205, "us-west-2": 0.182, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.208 }, "r5.xlarge": { - "af-south-1": 0.392, + "af-south-1": 0.0, "ap-east-1": 0.41, "ap-northeast-1": 0.0, "ap-northeast-2": 0.379, "ap-northeast-3": 0.379, "ap-south-1": 0.316, "ap-south-2": 0.332, - "ap-southeast-1": 0.36, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.376, "ap-southeast-3": 0.36, "ap-southeast-4": 0.0, "ca-central-1": 0.349, - "eu-central-1": 0.379, + "ca-west-1": 0.332, + "eu-central-1": 0.0, "eu-central-2": 0.0, - "eu-north-1": 0.324, - "eu-south-1": 0.37, + "eu-north-1": 0.0, + "eu-south-1": 0.352, "eu-south-2": 0.355, "eu-west-1": 0.0, "eu-west-2": 0.352, - "eu-west-3": 0.37, + "eu-west-3": 0.0, "il-central-1": 0.352, - "me-central-1": 0.385, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.458, "us-east-1": 0.0, "us-east-2": 0.323, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.358, + "us-gov-east-1": 0.358, + "us-gov-west-1": 0.376, "us-west-1": 0.336, "us-west-2": 0.0, "us-west-2-lax-1": 0.359 }, "r5.metal": { "af-south-1": 8.189, - "ap-east-1": 0.0, + "ap-east-1": 8.141, "ap-northeast-1": 7.421, "ap-northeast-2": 7.421, - "ap-northeast-3": 0.0, + "ap-northeast-3": 7.421, "ap-south-1": 6.365, "ap-south-2": 6.365, "ap-southeast-1": 7.421, @@ -80542,10 +91168,11 @@ "ap-southeast-3": 7.421, "ap-southeast-4": 7.373, "ca-central-1": 6.749, + "ca-west-1": 6.749, "eu-central-1": 7.421, "eu-central-2": 8.151, - "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-north-1": 6.557, + "eu-south-1": 7.229, "eu-south-2": 6.893, "eu-west-1": 0.0, "eu-west-2": 0.0, @@ -80556,39 +91183,40 @@ "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 6.173, - "us-gov-east-1": 0.0, + "us-gov-east-1": 7.373, "us-gov-west-1": 0.0, "us-west-1": 6.845, - "us-west-2": 0.0, + "us-west-2": 6.173, "us-west-2-lax-1": 7.383 }, "r5.2xlarge": { - "af-south-1": 0.837, + "af-south-1": 0.797, "ap-east-1": 0.833, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.733, "ap-northeast-2": 0.769, "ap-northeast-3": 0.0, - "ap-south-1": 0.676, + "ap-south-1": 0.0, "ap-south-2": 0.645, - "ap-southeast-1": 0.769, - "ap-southeast-2": 0.729, - "ap-southeast-3": 0.769, + "ap-southeast-1": 0.733, + "ap-southeast-2": 0.765, + "ap-southeast-3": 0.733, "ap-southeast-4": 0.765, "ca-central-1": 0.71, + "ca-west-1": 0.71, "eu-central-1": 0.733, "eu-central-2": 0.834, "eu-north-1": 0.693, "eu-south-1": 0.717, - "eu-south-2": 0.689, + "eu-south-2": 0.723, "eu-west-1": 0.689, "eu-west-2": 0.753, - "eu-west-3": 0.753, + "eu-west-3": 0.0, "il-central-1": 0.0, "me-central-1": 0.745, "me-south-1": 0.783, "sa-east-1": 0.977, "us-east-1": 0.659, - "us-east-2": 0.629, + "us-east-2": 0.659, "us-gov-east-1": 0.765, "us-gov-west-1": 0.729, "us-west-1": 0.685, @@ -80601,31 +91229,32 @@ "ap-northeast-1": 1.341, "ap-northeast-2": 1.341, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 1.227, "ap-south-2": 1.227, "ap-southeast-1": 1.341, "ap-southeast-2": 1.333, - "ap-southeast-3": 1.414, + "ap-southeast-3": 0.0, "ap-southeast-4": 1.333, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 1.463, + "ca-central-1": 1.229, + "ca-west-1": 1.229, + "eu-central-1": 1.414, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 1.38, + "eu-south-1": 1.309, "eu-south-2": 0.0, - "eu-west-1": 1.321, + "eu-west-1": 1.253, "eu-west-2": 1.38, - "eu-west-3": 1.38, + "eu-west-3": 1.309, "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 1.829, - "us-east-1": 1.193, + "me-south-1": 1.44, + "sa-east-1": 1.733, + "us-east-1": 0.0, "us-east-2": 1.133, "us-gov-east-1": 0.0, "us-gov-west-1": 1.405, "us-west-1": 1.312, - "us-west-2": 0.0, + "us-west-2": 1.193, "us-west-2-lax-1": 1.335 }, "r5.8xlarge": { @@ -80633,32 +91262,33 @@ "ap-east-1": 2.797, "ap-northeast-1": 2.557, "ap-northeast-2": 0.0, - "ap-northeast-3": 2.557, + "ap-northeast-3": 0.0, "ap-south-1": 2.329, - "ap-south-2": 2.205, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.686, "ca-central-1": 0.0, + "ca-west-1": 2.465, "eu-central-1": 2.557, - "eu-central-2": 0.0, + "eu-central-2": 2.8, "eu-north-1": 0.0, "eu-south-1": 2.635, "eu-south-2": 2.516, "eu-west-1": 2.381, "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 2.494, + "il-central-1": 2.636, "me-central-1": 2.607, "me-south-1": 2.755, "sa-east-1": 3.534, - "us-east-1": 0.0, + "us-east-1": 2.141, "us-east-2": 2.262, - "us-gov-east-1": 2.686, - "us-gov-west-1": 2.541, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 2.365, - "us-west-2": 2.141, + "us-west-2": 0.0, "us-west-2-lax-1": 2.544 }, "r5.12xlarge": { @@ -80666,69 +91296,71 @@ "ap-east-1": 4.133, "ap-northeast-1": 0.0, "ap-northeast-2": 3.992, - "ap-northeast-3": 3.773, + "ap-northeast-3": 3.992, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 3.245, "ap-southeast-1": 3.773, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.966, "ap-southeast-3": 0.0, "ap-southeast-4": 3.749, "ca-central-1": 3.437, + "ca-west-1": 3.437, "eu-central-1": 3.992, "eu-central-2": 4.138, "eu-north-1": 3.341, "eu-south-1": 0.0, - "eu-south-2": 3.509, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 3.677, "il-central-1": 3.891, - "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 5.238, + "me-central-1": 4.071, + "me-south-1": 3.847, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, - "us-west-1": 3.485, + "us-east-2": 3.149, + "us-gov-east-1": 3.966, + "us-gov-west-1": 3.966, + "us-west-1": 3.687, "us-west-2": 3.33, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 3.972 }, "r5.16xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.989, "ap-northeast-3": 4.989, "ap-south-1": 4.285, - "ap-south-2": 4.285, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 4.957, "ap-southeast-3": 4.989, - "ap-southeast-4": 4.957, - "ca-central-1": 4.541, - "eu-central-1": 0.0, + "ap-southeast-4": 5.247, + "ca-central-1": 0.0, + "ca-west-1": 4.806, + "eu-central-1": 4.989, "eu-central-2": 5.475, - "eu-north-1": 4.67, + "eu-north-1": 4.413, "eu-south-1": 0.0, "eu-south-2": 4.637, "eu-west-1": 4.637, - "eu-west-2": 5.145, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 5.145, "il-central-1": 0.0, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 4.157, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 5.247, "us-gov-west-1": 5.247, "us-west-1": 4.874, - "us-west-2": 4.399, + "us-west-2": 0.0, "us-west-2-lax-1": 4.963 }, "r5.24xlarge": { - "af-south-1": 0.0, + "af-south-1": 8.189, "ap-east-1": 8.141, "ap-northeast-1": 7.421, "ap-northeast-2": 7.421, @@ -80736,15 +91368,16 @@ "ap-south-1": 6.365, "ap-south-2": 6.365, "ap-southeast-1": 7.421, - "ap-southeast-2": 0.0, + "ap-southeast-2": 7.373, "ap-southeast-3": 7.421, "ap-southeast-4": 0.0, "ca-central-1": 6.749, + "ca-west-1": 6.749, "eu-central-1": 7.421, - "eu-central-2": 0.0, + "eu-central-2": 8.151, "eu-north-1": 6.557, "eu-south-1": 7.229, - "eu-south-2": 0.0, + "eu-south-2": 6.893, "eu-west-1": 6.893, "eu-west-2": 7.229, "eu-west-3": 7.229, @@ -80752,7 +91385,7 @@ "me-central-1": 7.57, "me-south-1": 7.57, "sa-east-1": 0.0, - "us-east-1": 6.173, + "us-east-1": 0.0, "us-east-2": 6.173, "us-gov-east-1": 7.373, "us-gov-west-1": 7.373, @@ -81066,18 +91699,18 @@ }, "r5b.large": { "ap-northeast-1": 0.2554, - "ap-northeast-2": 0.2343, - "ap-southeast-1": 0.2521, + "ap-northeast-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 0.2193, "eu-central-1": 0.2521, - "eu-north-1": 0.0, + "eu-north-1": 0.230034, "eu-south-1": 0.2488, "eu-west-1": 0.2233, "eu-west-2": 0.2313, - "sa-east-1": 0.2933, - "us-east-1": 0.2202, - "us-east-2": 0.2053, + "sa-east-1": 0.317, + "us-east-1": 0.2053, + "us-east-2": 0.2202, "us-west-2": 0.2202 }, "r5b.xlarge": { @@ -81085,59 +91718,59 @@ "ap-northeast-2": 0.4479, "ap-southeast-1": 0.4479, "ap-southeast-2": 0.4545, - "ca-central-1": 0.4149, - "eu-central-1": 0.4123, + "ca-central-1": 0.3823, + "eu-central-1": 0.0, "eu-north-1": 0.403768, - "eu-south-1": 0.4063, + "eu-south-1": 0.4413, "eu-west-1": 0.4237, - "eu-west-2": 0.0, - "sa-east-1": 0.5303, + "eu-west-2": 0.4063, + "sa-east-1": 0.5777, "us-east-1": 0.3841, "us-east-2": 0.3841, "us-west-2": 0.3841 }, "r5b.metal": { - "ap-northeast-1": 9.6818, + "ap-northeast-1": 8.813, "ap-northeast-2": 8.669, "ap-southeast-1": 8.669, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 8.669, - "eu-north-1": 7.70612, + "eu-north-1": 0.0, "eu-south-1": 8.525, "eu-west-1": 0.0, - "eu-west-2": 9.365, - "sa-east-1": 12.6386, + "eu-west-2": 0.0, + "sa-east-1": 0.0, "us-east-1": 7.277, "us-east-2": 7.277, - "us-west-2": 0.0 + "us-west-2": 7.277 }, "r5b.2xlarge": { "ap-northeast-1": 0.849, "ap-northeast-2": 0.9082, "ap-southeast-1": 0.9082, "ap-southeast-2": 0.849, - "ca-central-1": 0.777, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.9082, "eu-north-1": 0.819936, "eu-south-1": 0.825, - "eu-west-1": 0.0, + "eu-west-1": 0.8598, "eu-west-2": 0.825, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.7806, + "sa-east-1": 1.1678, + "us-east-1": 0.7806, + "us-east-2": 0.0, "us-west-2": 0.721 }, "r5b.4xlarge": { - "ap-northeast-1": 1.573, - "ap-northeast-2": 1.6914, + "ap-northeast-1": 1.7178, + "ap-northeast-2": 0.0, "ap-southeast-1": 1.6914, "ap-southeast-2": 1.7178, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 1.549, "eu-north-1": 0.0, "eu-south-1": 0.0, - "eu-west-1": 1.461, + "eu-west-1": 1.5946, "eu-west-2": 1.665, "sa-east-1": 2.2106, "us-east-1": 0.0, @@ -81145,14 +91778,14 @@ "us-west-2": 1.317 }, "r5b.8xlarge": { - "ap-northeast-1": 3.3106, - "ap-northeast-2": 0.0, - "ap-southeast-1": 2.973, + "ap-northeast-1": 0.0, + "ap-northeast-2": 3.2578, + "ap-southeast-1": 3.2578, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 2.65204, - "eu-south-1": 0.0, + "eu-south-1": 2.925, "eu-west-1": 2.797, "eu-west-2": 3.205, "sa-east-1": 0.0, @@ -81161,194 +91794,194 @@ "us-west-2": 2.7474 }, "r5b.12xlarge": { - "ap-northeast-1": 4.469, + "ap-northeast-1": 4.9034, "ap-northeast-2": 4.397, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.397, "ap-southeast-2": 4.9034, - "ca-central-1": 4.037, - "eu-central-1": 4.8242, + "ca-central-1": 0.0, + "eu-central-1": 0.0, "eu-north-1": 3.91556, "eu-south-1": 0.0, "eu-west-1": 4.133, "eu-west-2": 4.745, "sa-east-1": 0.0, "us-east-1": 3.701, - "us-east-2": 4.0586, + "us-east-2": 3.701, "us-west-2": 0.0 }, "r5b.16xlarge": { "ap-northeast-1": 5.917, "ap-northeast-2": 5.821, - "ap-southeast-1": 0.0, + "ap-southeast-1": 5.821, "ap-southeast-2": 0.0, "ca-central-1": 0.0, - "eu-central-1": 6.3906, + "eu-central-1": 0.0, "eu-north-1": 5.684488, "eu-south-1": 0.0, "eu-west-1": 6.0034, "eu-west-2": 5.725, "sa-east-1": 8.4674, - "us-east-1": 5.3698, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-2": 5.3698 + "us-west-2": 4.893 }, "r5b.24xlarge": { - "ap-northeast-1": 9.6818, - "ap-northeast-2": 0.0, + "ap-northeast-1": 8.813, + "ap-northeast-2": 9.5234, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "ca-central-1": 8.7314, + "ca-central-1": 0.0, "eu-central-1": 8.669, "eu-north-1": 7.70612, - "eu-south-1": 0.0, + "eu-south-1": 9.365, "eu-west-1": 8.141, "eu-west-2": 9.365, - "sa-east-1": 12.6386, + "sa-east-1": 0.0, "us-east-1": 7.9922, - "us-east-2": 0.0, - "us-west-2": 7.277 + "us-east-2": 7.9922, + "us-west-2": 0.0 }, "r5d.large": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 0.242, "ap-northeast-1": 0.0, "ap-northeast-2": 0.24, "ap-northeast-3": 0.241, "ap-south-1": 0.216, - "ap-south-2": 0.207, + "ap-south-2": 0.0, "ap-southeast-1": 0.241, "ap-southeast-2": 0.23, "ap-southeast-3": 0.241, "ap-southeast-4": 0.23, "ca-central-1": 0.224, "eu-central-1": 0.24, - "eu-central-2": 0.247, - "eu-north-1": 0.217, + "eu-central-2": 0.258, + "eu-north-1": 0.208, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.225, - "eu-west-3": 0.225, - "il-central-1": 0.234, - "me-central-1": 0.0, + "eu-west-2": 0.235, + "eu-west-3": 0.0, + "il-central-1": 0.0, + "me-central-1": 0.243, "me-south-1": 0.232, - "sa-east-1": 0.284, - "us-east-1": 0.209, + "sa-east-1": 0.298, + "us-east-1": 0.2, "us-east-2": 0.0, - "us-gov-east-1": 0.24, - "us-gov-west-1": 0.24, - "us-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.229, + "us-west-1": 0.218, "us-west-2": 0.0, - "us-west-2-lax-1": 0.0 + "us-west-2-lax-1": 0.229 }, "r5d.xlarge": { "af-south-1": 0.459, "ap-east-1": 0.406, - "ap-northeast-1": 0.425, + "ap-northeast-1": 0.404, "ap-northeast-2": 0.423, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.425, "ap-south-1": 0.0, "ap-south-2": 0.376, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.404, + "ap-southeast-2": 0.425, "ap-southeast-3": 0.404, "ap-southeast-4": 0.404, "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 0.46, + "eu-central-1": 0.402, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.392, "eu-south-2": 0.376, "eu-west-1": 0.396, - "eu-west-2": 0.0, - "eu-west-3": 0.394, - "il-central-1": 0.0, - "me-central-1": 0.429, + "eu-west-2": 0.394, + "eu-west-3": 0.0, + "il-central-1": 0.392, + "me-central-1": 0.0, "me-south-1": 0.429, "sa-east-1": 0.512, "us-east-1": 0.362, "us-east-2": 0.344, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.402, + "us-gov-west-1": 0.423, "us-west-1": 0.38, - "us-west-2": 0.362, + "us-west-2": 0.344, "us-west-2-lax-1": 0.402 }, "r5d.metal": { - "af-south-1": 0.0, + "af-south-1": 9.245, "ap-east-1": 8.525, "ap-northeast-1": 8.477, - "ap-northeast-2": 0.0, + "ap-northeast-2": 8.429, "ap-northeast-3": 0.0, "ap-south-1": 7.373, "ap-south-2": 7.373, "ap-southeast-1": 0.0, - "ap-southeast-2": 8.477, - "ap-southeast-3": 8.477, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 7.709, "eu-central-1": 0.0, - "eu-central-2": 0.0, - "eu-north-1": 7.421, + "eu-central-2": 9.259, + "eu-north-1": 0.0, "eu-south-1": 8.189, "eu-south-2": 7.805, "eu-west-1": 7.805, "eu-west-2": 8.237, "eu-west-3": 8.237, - "il-central-1": 0.0, + "il-central-1": 8.189, "me-central-1": 0.0, "me-south-1": 8.573, - "sa-east-1": 11.069, + "sa-east-1": 0.0, "us-east-1": 7.037, - "us-east-2": 7.037, + "us-east-2": 0.0, "us-gov-east-1": 8.429, "us-gov-west-1": 0.0, - "us-west-1": 7.901, - "us-west-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 7.037, "us-west-2-lax-1": 8.419 }, "r5d.2xlarge": { "af-south-1": 0.885, "ap-east-1": 0.0, "ap-northeast-1": 0.821, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.858, + "ap-northeast-3": 0.821, + "ap-south-1": 0.765, "ap-south-2": 0.765, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.863, + "ap-southeast-1": 0.863, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.821, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.863, "ca-central-1": 0.0, - "eu-central-1": 0.859, - "eu-central-2": 0.932, + "eu-central-1": 0.0, + "eu-central-2": 0.886, "eu-north-1": 0.733, "eu-south-1": 0.0, "eu-south-2": 0.803, - "eu-west-1": 0.803, + "eu-west-1": 0.765, "eu-west-2": 0.801, - "eu-west-3": 0.842, - "il-central-1": 0.837, - "me-central-1": 0.0, + "eu-west-3": 0.801, + "il-central-1": 0.797, + "me-central-1": 0.871, "me-south-1": 0.829, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.736, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.859, - "us-west-1": 0.812, - "us-west-2": 0.0, + "us-west-1": 0.773, + "us-west-2": 0.736, "us-west-2-lax-1": 0.0 }, "r5d.4xlarge": { "af-south-1": 1.645, "ap-east-1": 1.609, "ap-northeast-1": 1.601, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-2": 1.509, + "ap-northeast-3": 1.601, "ap-south-1": 1.333, - "ap-south-2": 1.405, - "ap-southeast-1": 1.601, + "ap-south-2": 1.333, + "ap-southeast-1": 1.517, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ap-southeast-4": 1.601, @@ -81356,9 +91989,9 @@ "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 1.414, - "eu-south-1": 1.55, + "eu-south-1": 1.469, "eu-south-2": 1.482, - "eu-west-1": 1.405, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "il-central-1": 0.0, @@ -81366,11 +91999,11 @@ "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 1.346, - "us-east-2": 1.277, + "us-east-2": 1.346, "us-gov-east-1": 1.592, "us-gov-west-1": 1.509, "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-2": 1.277, "us-west-2-lax-1": 1.507 }, "r5d.8xlarge": { @@ -81382,9 +92015,9 @@ "ap-south-1": 2.541, "ap-south-2": 2.541, "ap-southeast-1": 2.909, - "ap-southeast-2": 3.076, - "ap-southeast-3": 3.076, - "ap-southeast-4": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 2.909, + "ap-southeast-4": 2.909, "ca-central-1": 2.653, "eu-central-1": 2.893, "eu-central-2": 3.17, @@ -81392,51 +92025,51 @@ "eu-south-1": 2.974, "eu-south-2": 2.685, "eu-west-1": 2.685, - "eu-west-2": 2.829, + "eu-west-2": 0.0, "eu-west-3": 2.829, - "il-central-1": 2.813, - "me-central-1": 3.11, + "il-central-1": 2.974, + "me-central-1": 2.941, "me-south-1": 3.11, "sa-east-1": 3.773, "us-east-1": 2.429, "us-east-2": 2.429, "us-gov-east-1": 2.893, - "us-gov-west-1": 3.059, + "us-gov-west-1": 0.0, "us-west-1": 2.717, "us-west-2": 2.429, "us-west-2-lax-1": 2.89 }, "r5d.12xlarge": { - "af-south-1": 4.959, + "af-south-1": 4.685, "ap-east-1": 4.325, "ap-northeast-1": 4.552, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 3.749, - "ap-south-2": 3.966, - "ap-southeast-1": 4.301, + "ap-south-1": 0.0, + "ap-south-2": 3.749, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.301, "ap-southeast-3": 0.0, - "ap-southeast-4": 4.301, + "ap-southeast-4": 4.552, "ca-central-1": 0.0, "eu-central-1": 4.526, - "eu-central-2": 4.692, + "eu-central-2": 4.966, "eu-north-1": 3.992, - "eu-south-1": 4.157, + "eu-south-1": 4.399, "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.0, - "eu-west-3": 4.424, + "eu-west-2": 4.424, + "eu-west-3": 4.181, "il-central-1": 4.399, "me-central-1": 0.0, - "me-south-1": 0.0, - "sa-east-1": 5.925, + "me-south-1": 4.602, + "sa-east-1": 0.0, "us-east-1": 3.788, "us-east-2": 3.788, "us-gov-east-1": 4.277, "us-gov-west-1": 4.526, "us-west-1": 4.013, - "us-west-2": 3.788, + "us-west-2": 0.0, "us-west-2-lax-1": 4.521 }, "r5d.16xlarge": { @@ -81444,25 +92077,25 @@ "ap-east-1": 5.725, "ap-northeast-1": 5.693, "ap-northeast-2": 5.661, - "ap-northeast-3": 5.693, + "ap-northeast-3": 0.0, "ap-south-1": 4.957, - "ap-south-2": 4.957, + "ap-south-2": 5.247, "ap-southeast-1": 5.693, "ap-southeast-2": 6.027, - "ap-southeast-3": 6.027, + "ap-southeast-3": 5.693, "ap-southeast-4": 5.693, "ca-central-1": 5.484, "eu-central-1": 5.661, - "eu-central-2": 6.215, + "eu-central-2": 6.58, "eu-north-1": 4.989, "eu-south-1": 5.501, "eu-south-2": 5.552, "eu-west-1": 5.245, - "eu-west-2": 5.533, + "eu-west-2": 5.857, "eu-west-3": 5.533, - "il-central-1": 5.501, - "me-central-1": 6.095, - "me-south-1": 5.757, + "il-central-1": 5.824, + "me-central-1": 5.757, + "me-south-1": 0.0, "sa-east-1": 7.859, "us-east-1": 4.733, "us-east-2": 4.733, @@ -81475,7 +92108,7 @@ "r5d.24xlarge": { "af-south-1": 9.245, "ap-east-1": 8.525, - "ap-northeast-1": 8.477, + "ap-northeast-1": 0.0, "ap-northeast-2": 8.429, "ap-northeast-3": 0.0, "ap-south-1": 7.373, @@ -81486,63 +92119,63 @@ "ap-southeast-4": 8.477, "ca-central-1": 7.709, "eu-central-1": 0.0, - "eu-central-2": 9.259, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 8.189, "eu-south-2": 0.0, "eu-west-1": 7.805, - "eu-west-2": 8.237, + "eu-west-2": 0.0, "eu-west-3": 8.237, "il-central-1": 0.0, "me-central-1": 8.573, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 11.069, "us-east-1": 7.037, "us-east-2": 7.037, - "us-gov-east-1": 0.0, - "us-gov-west-1": 8.429, + "us-gov-east-1": 8.429, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 7.037, - "us-west-2-lax-1": 0.0 + "us-west-2": 0.0, + "us-west-2-lax-1": 8.419 }, "r5dn.large": { "af-south-1": 0.0, "ap-northeast-1": 0.2593, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.26724, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2603, "eu-central-1": 0.0, "eu-north-1": 0.0, - "eu-south-1": 0.0, + "eu-south-1": 0.26406, "eu-west-1": 0.0, - "eu-west-3": 0.2523, + "eu-west-3": 0.26406, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.2573, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r5dn.xlarge": { - "af-south-1": 0.4983, + "af-south-1": 0.52482, "ap-northeast-1": 0.48666, - "ap-northeast-2": 0.4543, + "ap-northeast-2": 0.47818, "ap-southeast-1": 0.0, "ap-southeast-2": 0.4643, "eu-central-1": 0.0, - "eu-north-1": 0.4103, - "eu-south-1": 0.0, + "eu-north-1": 0.43154, + "eu-south-1": 0.47182, "eu-west-1": 0.0, "eu-west-3": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.48242, + "us-gov-west-1": 0.4583, "us-west-2": 0.0 }, "r5dn.metal": { "af-south-1": 10.733, "ap-northeast-1": 9.869, - "ap-northeast-2": 9.677, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 9.917, "eu-central-1": 9.677, @@ -81551,25 +92184,25 @@ "eu-west-1": 0.0, "eu-west-3": 9.533, "us-east-1": 8.141, - "us-east-2": 8.141, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 9.773, "us-west-2": 0.0 }, "r5dn.2xlarge": { "af-south-1": 0.0, - "ap-northeast-1": 0.98572, - "ap-northeast-2": 0.921, + "ap-northeast-1": 0.937, + "ap-northeast-2": 0.96876, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.941, + "ap-southeast-2": 0.98996, "eu-central-1": 0.0, "eu-north-1": 0.833, - "eu-south-1": 0.909, + "eu-south-1": 0.95604, "eu-west-1": 0.0, "eu-west-3": 0.95604, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.97724, "us-gov-west-1": 0.97724, "us-west-2": 0.0 }, @@ -81580,20 +92213,20 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.0, - "eu-north-1": 1.62596, + "eu-north-1": 1.541, "eu-south-1": 1.78708, "eu-west-1": 0.0, "eu-west-3": 1.78708, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 1.733, "us-gov-west-1": 1.82948, "us-west-2": 0.0 }, "r5dn.8xlarge": { - "af-south-1": 3.87316, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "af-south-1": 3.661, + "ap-northeast-1": 3.56788, + "ap-northeast-2": 3.309, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "eu-central-1": 0.0, @@ -81609,13 +92242,13 @@ }, "r5dn.12xlarge": { "af-south-1": 5.74724, - "ap-northeast-1": 0.0, + "ap-northeast-1": 5.28932, "ap-northeast-2": 5.18756, "ap-southeast-1": 0.0, "ap-southeast-2": 5.021, "eu-central-1": 0.0, - "eu-north-1": 0.0, - "eu-south-1": 4.829, + "eu-north-1": 4.373, + "eu-south-1": 5.11124, "eu-west-1": 0.0, "eu-west-3": 4.829, "us-east-1": 0.0, @@ -81632,12 +92265,12 @@ "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-north-1": 6.12884, - "eu-south-1": 6.397, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-3": 6.397, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 6.94292, "us-gov-west-1": 6.557, "us-west-2": 0.0 }, @@ -81659,53 +92292,53 @@ "us-west-2": 0.0 }, "r5n.large": { - "af-south-1": 0.0, - "ap-east-1": 0.258, - "ap-northeast-1": 0.248, - "ap-northeast-2": 0.0, - "ap-south-1": 0.209, - "ap-southeast-1": 0.245, + "af-south-1": 0.267, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.245, + "ap-south-1": 0.218, + "ap-southeast-1": 0.234, "ap-southeast-2": 0.237, - "ca-central-1": 0.219, + "ca-central-1": 0.0, "eu-central-1": 0.245, - "eu-north-1": 0.215, - "eu-south-1": 0.0, + "eu-north-1": 0.225, + "eu-south-1": 0.231, "eu-west-1": 0.223, - "eu-west-2": 0.231, - "eu-west-3": 0.231, - "sa-east-1": 0.292, + "eu-west-2": 0.242, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.205, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 0.205, + "us-gov-east-1": 0.235, "us-gov-west-1": 0.246, "us-west-1": 0.225, - "us-west-2": 0.214 + "us-west-2": 0.205 }, "r5n.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.46, + "ap-east-1": 0.0, "ap-northeast-1": 0.418, - "ap-northeast-2": 0.434, + "ap-northeast-2": 0.412, "ap-south-1": 0.362, "ap-southeast-1": 0.412, "ap-southeast-2": 0.418, "ca-central-1": 0.382, - "eu-central-1": 0.434, - "eu-north-1": 0.374, + "eu-central-1": 0.412, + "eu-north-1": 0.393, "eu-south-1": 0.427, - "eu-west-1": 0.41, - "eu-west-2": 0.406, + "eu-west-1": 0.0, + "eu-west-2": 0.427, "eu-west-3": 0.406, - "sa-east-1": 0.528, + "sa-east-1": 0.0, "us-east-1": 0.354, "us-east-2": 0.354, "us-gov-east-1": 0.0, - "us-gov-west-1": 0.436, + "us-gov-west-1": 0.0, "us-west-1": 0.394, "us-west-2": 0.0 }, "r5n.metal": { - "af-south-1": 0.0, + "af-south-1": 9.661, "ap-east-1": 9.821, "ap-northeast-1": 8.813, "ap-northeast-2": 8.669, @@ -81717,126 +92350,126 @@ "eu-north-1": 7.757, "eu-south-1": 8.526, "eu-west-1": 8.141, - "eu-west-2": 8.525, + "eu-west-2": 0.0, "eu-west-3": 8.525, - "sa-east-1": 11.453, - "us-east-1": 7.277, - "us-east-2": 7.277, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 8.717, "us-gov-west-1": 0.0, "us-west-1": 8.237, "us-west-2": 7.277 }, "r5n.2xlarge": { - "af-south-1": 0.967, - "ap-east-1": 0.933, + "af-south-1": 0.0, + "ap-east-1": 0.0, "ap-northeast-1": 0.849, "ap-northeast-2": 0.0, "ap-south-1": 0.737, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.849, - "ca-central-1": 0.777, + "ap-southeast-2": 0.892, + "ca-central-1": 0.816, "eu-central-1": 0.837, - "eu-north-1": 0.761, + "eu-north-1": 0.799, "eu-south-1": 0.867, "eu-west-1": 0.833, - "eu-west-2": 0.825, + "eu-west-2": 0.0, "eu-west-3": 0.825, - "sa-east-1": 1.069, - "us-east-1": 0.757, + "sa-east-1": 1.126, + "us-east-1": 0.0, "us-east-2": 0.757, "us-gov-east-1": 0.884, "us-gov-west-1": 0.884, - "us-west-1": 0.801, - "us-west-2": 0.757 + "us-west-1": 0.842, + "us-west-2": 0.721 }, "r5n.4xlarge": { - "af-south-1": 0.0, + "af-south-1": 1.81, "ap-east-1": 1.741, - "ap-northeast-1": 1.66, - "ap-northeast-2": 1.634, - "ap-south-1": 1.349, - "ap-southeast-1": 1.549, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 1.422, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.573, "ca-central-1": 1.429, "eu-central-1": 1.549, "eu-north-1": 1.397, "eu-south-1": 1.525, - "eu-west-1": 1.541, - "eu-west-2": 1.525, - "eu-west-3": 1.525, - "sa-east-1": 2.013, + "eu-west-1": 1.461, + "eu-west-2": 1.609, + "eu-west-3": 1.609, + "sa-east-1": 2.126, "us-east-1": 1.389, "us-east-2": 1.389, "us-gov-east-1": 1.643, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.557, "us-west-1": 1.477, "us-west-2": 1.389 }, "r5n.8xlarge": { "af-south-1": 0.0, - "ap-east-1": 3.357, + "ap-east-1": 3.551, "ap-northeast-1": 0.0, "ap-northeast-2": 2.973, - "ap-south-1": 2.573, - "ap-southeast-1": 3.144, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 3.021, - "ca-central-1": 2.733, + "ca-central-1": 0.0, "eu-central-1": 3.144, "eu-north-1": 2.669, - "eu-south-1": 0.0, - "eu-west-1": 2.797, + "eu-south-1": 3.093, + "eu-west-1": 2.957, "eu-west-2": 2.925, - "eu-west-3": 2.925, - "sa-east-1": 3.901, + "eu-west-3": 3.094, + "sa-east-1": 4.128, "us-east-1": 2.652, - "us-east-2": 0.0, + "us-east-2": 2.652, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 2.829, + "us-west-1": 0.0, "us-west-2": 2.652 }, "r5n.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 4.973, + "ap-east-1": 5.263, "ap-northeast-1": 4.469, - "ap-northeast-2": 4.397, + "ap-northeast-2": 4.653, "ap-south-1": 3.797, - "ap-southeast-1": 0.0, - "ap-southeast-2": 4.469, + "ap-southeast-1": 4.653, + "ap-southeast-2": 4.73, "ca-central-1": 4.037, - "eu-central-1": 4.653, - "eu-north-1": 3.941, + "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-south-1": 4.325, "eu-west-1": 0.0, - "eu-west-2": 4.325, - "eu-west-3": 4.325, - "sa-east-1": 5.789, + "eu-west-2": 4.578, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 3.916, "us-east-2": 3.916, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 4.181, + "us-west-1": 0.0, "us-west-2": 3.916 }, "r5n.16xlarge": { "af-south-1": 0.0, - "ap-east-1": 6.589, + "ap-east-1": 0.0, "ap-northeast-1": 6.265, "ap-northeast-2": 5.821, - "ap-south-1": 5.021, + "ap-south-1": 5.315, "ap-southeast-1": 5.821, - "ap-southeast-2": 5.917, - "ca-central-1": 5.341, + "ap-southeast-2": 0.0, + "ca-central-1": 5.655, "eu-central-1": 6.163, - "eu-north-1": 5.213, + "eu-north-1": 5.517, "eu-south-1": 6.062, "eu-west-1": 5.79, - "eu-west-2": 5.725, - "eu-west-3": 5.725, - "sa-east-1": 7.677, - "us-east-1": 0.0, - "us-east-2": 4.893, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 4.893, + "us-east-2": 0.0, "us-gov-east-1": 6.197, "us-gov-west-1": 0.0, "us-west-1": 5.533, @@ -81845,7 +92478,7 @@ "r5n.24xlarge": { "af-south-1": 9.661, "ap-east-1": 9.821, - "ap-northeast-1": 0.0, + "ap-northeast-1": 8.813, "ap-northeast-2": 8.669, "ap-south-1": 7.469, "ap-southeast-1": 8.669, @@ -81856,127 +92489,172 @@ "eu-south-1": 8.526, "eu-west-1": 8.141, "eu-west-2": 8.525, - "eu-west-3": 8.525, - "sa-east-1": 11.453, + "eu-west-3": 0.0, + "sa-east-1": 0.0, "us-east-1": 7.277, - "us-east-2": 0.0, + "us-east-2": 7.277, "us-gov-east-1": 0.0, "us-gov-west-1": 8.717, "us-west-1": 8.237, "us-west-2": 0.0 }, "r6a.large": { + "ap-northeast-1": 0.20678, "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 0.20678, "eu-west-1": 0.0, - "us-east-1": 0.1697, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-1": 0.18104, + "us-east-2": 0.18104, + "us-west-1": 0.1949, + "us-west-2": 0.18104 }, "r6a.xlarge": { - "ap-south-1": 0.0, + "ap-northeast-1": 0.3299, + "ap-south-1": 0.2136, + "ap-southeast-1": 0.3299, + "ap-southeast-2": 0.3281, "eu-central-1": 0.35726, - "eu-west-1": 0.3101, - "us-east-1": 0.30578, - "us-east-2": 0.0, - "us-west-2": 0.0 + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.2831, + "us-west-1": 0.0, + "us-west-2": 0.30578 }, "r6a.metal": { + "ap-northeast-1": 13.2578, "ap-south-1": 6.989, + "ap-southeast-1": 13.2578, + "ap-southeast-2": 13.1714, "eu-central-1": 13.2578, "eu-west-1": 12.3074, "us-east-1": 11.0114, - "us-east-2": 0.0, - "us-west-2": 0.0 + "us-east-2": 11.0114, + "us-west-1": 12.221, + "us-west-2": 11.0114 }, "r6a.2xlarge": { + "ap-northeast-1": 0.72692, "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.72296, "eu-central-1": 0.6722, "eu-west-1": 0.68336, "us-east-1": 0.0, - "us-east-2": 0.5786, + "us-east-2": 0.62396, + "us-west-1": 0.6794, "us-west-2": 0.5786 }, "r6a.4xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 0.697, - "eu-central-1": 0.0, + "ap-southeast-1": 1.2194, + "ap-southeast-2": 1.32092, + "eu-central-1": 1.2194, "eu-west-1": 0.0, - "us-east-1": 1.12292, + "us-east-1": 1.0322, "us-east-2": 1.0322, + "us-west-1": 0.0, "us-west-2": 1.0322 }, "r6a.8xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 1.269, + "ap-southeast-1": 2.3138, + "ap-southeast-2": 2.2994, "eu-central-1": 2.3138, - "eu-west-1": 2.1554, - "us-east-1": 1.9394, - "us-east-2": 1.9394, + "eu-west-1": 2.35844, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 2.3426, "us-west-2": 0.0 }, "r6a.12xlarge": { + "ap-northeast-1": 0.0, "ap-south-1": 1.841, + "ap-southeast-1": 3.4082, + "ap-southeast-2": 3.3866, "eu-central-1": 3.4082, "eu-west-1": 3.1706, "us-east-1": 0.0, "us-east-2": 2.8466, + "us-west-1": 3.4514, "us-west-2": 2.8466 }, "r6a.16xlarge": { - "ap-south-1": 2.6418, + "ap-northeast-1": 4.5026, + "ap-south-1": 2.413, + "ap-southeast-1": 4.94036, + "ap-southeast-2": 4.4738, "eu-central-1": 0.0, - "eu-west-1": 4.59188, + "eu-west-1": 4.1858, "us-east-1": 4.11668, "us-east-2": 4.11668, - "us-west-2": 4.11668 + "us-west-1": 4.157, + "us-west-2": 3.7538 }, "r6a.24xlarge": { + "ap-northeast-1": 6.6914, "ap-south-1": 0.0, + "ap-southeast-1": 6.6914, + "ap-southeast-2": 7.30052, "eu-central-1": 7.34804, - "eu-west-1": 6.2162, + "eu-west-1": 0.0, "us-east-1": 5.5682, "us-east-2": 6.11252, - "us-west-2": 6.11252 + "us-west-1": 6.7778, + "us-west-2": 5.5682 }, "r6a.32xlarge": { - "ap-south-1": 4.701, + "ap-northeast-1": 8.8802, + "ap-south-1": 5.1586, + "ap-southeast-1": 0.0, + "ap-southeast-2": 8.8226, "eu-central-1": 8.8802, "eu-west-1": 9.05876, - "us-east-1": 8.10836, - "us-east-2": 0.0, - "us-west-2": 8.10836 + "us-east-1": 7.3826, + "us-east-2": 8.10836, + "us-west-1": 8.189, + "us-west-2": 0.0 }, "r6a.48xlarge": { + "ap-northeast-1": 13.2578, "ap-south-1": 0.0, - "eu-central-1": 13.2578, + "ap-southeast-1": 13.2578, + "ap-southeast-2": 13.1714, + "eu-central-1": 0.0, "eu-west-1": 12.3074, - "us-east-1": 0.0, + "us-east-1": 11.0114, "us-east-2": 11.0114, + "us-west-1": 12.221, "us-west-2": 11.0114 }, "r6g.medium": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0918, - "ap-northeast-2": 0.092, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, - "ap-south-2": 0.0888, + "ap-northeast-2": 0.0957, + "ap-northeast-3": 0.1207, + "ap-south-1": 0.0655, + "ap-south-2": 0.0, "ap-southeast-1": 0.0918, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.095, "ap-southeast-3": 0.1207, "ap-southeast-4": 0.1167, "ca-central-1": 0.0, - "eu-central-1": 0.0954, + "ca-west-1": 0.1115, + "eu-central-1": 0.0918, "eu-central-2": 0.1232, "eu-north-1": 0.0877, - "eu-south-1": 0.0938, + "eu-south-1": 0.0902, "eu-south-2": 0.1127, - "eu-west-1": 0.0908, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.09, - "il-central-1": 0.1191, + "il-central-1": 0.1155, "me-central-1": 0.1221, - "me-south-1": 0.0, + "me-south-1": 0.1183, "sa-east-1": 0.1162, "us-east-1": 0.0844, "us-east-2": 0.0, @@ -81986,30 +92664,31 @@ "us-west-2": 0.0 }, "r6g.large": { - "af-south-1": 0.1988, + "af-south-1": 0.1907, "ap-east-1": 0.1983, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.1783, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.1852, "ap-south-1": 0.0, - "ap-south-2": 0.1213, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-south-2": 0.1252, + "ap-southeast-1": 0.1779, + "ap-southeast-2": 0.1771, "ap-southeast-3": 0.0, "ap-southeast-4": 0.1843, "ca-central-1": 0.1667, + "ca-west-1": 0.0, "eu-central-1": 0.1852, "eu-central-2": 0.1981, "eu-north-1": 0.1697, "eu-south-1": 0.0, - "eu-south-2": 0.1759, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 0.1747, - "eu-west-3": 0.1743, + "eu-west-2": 0.0, + "eu-west-3": 0.0, "il-central-1": 0.1818, - "me-central-1": 0.1804, - "me-south-1": 0.0, - "sa-east-1": 0.0, + "me-central-1": 0.0, + "me-south-1": 0.1804, + "sa-east-1": 0.2171, "us-east-1": 0.1571, "us-east-2": 0.0, "us-gov-east-1": 0.0, @@ -82019,49 +92698,51 @@ }, "r6g.xlarge": { "af-south-1": 0.3251, - "ap-east-1": 0.3403, + "ap-east-1": 0.0, "ap-northeast-1": 0.3141, "ap-northeast-2": 0.3149, - "ap-northeast-3": 0.2995, - "ap-south-1": 0.1941, + "ap-northeast-3": 0.3141, + "ap-south-1": 0.1863, "ap-south-2": 0.0, "ap-southeast-1": 0.2995, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.2995, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, "ca-central-1": 0.0, - "eu-central-1": 0.2995, + "ca-west-1": 0.0, + "eu-central-1": 0.3141, "eu-central-2": 0.3399, - "eu-north-1": 0.0, - "eu-south-1": 0.2931, + "eu-north-1": 0.2703, + "eu-south-1": 0.3073, "eu-south-2": 0.2819, "eu-west-1": 0.2954, - "eu-west-2": 0.2931, - "eu-west-3": 0.0, - "il-central-1": 0.0, - "me-central-1": 0.3045, + "eu-west-2": 0.3073, + "eu-west-3": 0.2923, + "il-central-1": 0.2932, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.3972, - "us-east-1": 0.2579, + "us-east-1": 0.27, "us-east-2": 0.2579, "us-gov-east-1": 0.3124, - "us-gov-west-1": 0.3124, - "us-west-1": 0.2937, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 0.27 }, "r6g.metal": { - "af-south-1": 4.4258, + "af-south-1": 0.0, "ap-east-1": 4.413, "ap-northeast-1": 4.0162, - "ap-northeast-2": 4.029, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.0162, - "ap-south-1": 2.205, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 4.0162, "ap-southeast-2": 0.0, "ap-southeast-3": 4.0162, "ap-southeast-4": 4.2225, "ca-central-1": 3.6578, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-central-2": 4.4053, "eu-north-1": 3.549, @@ -82083,119 +92764,123 @@ }, "r6g.2xlarge": { "af-south-1": 0.6626, - "ap-east-1": 0.693, - "ap-northeast-1": 0.6114, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.6406, - "ap-south-1": 0.385, + "ap-northeast-3": 0.6114, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.6082, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.6114, "ap-southeast-4": 0.6082, "ca-central-1": 0.5666, - "eu-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.6406, "eu-central-2": 0.0, - "eu-north-1": 0.5786, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.6033, - "eu-west-1": 0.5762, + "eu-west-1": 0.0, "eu-west-2": 0.5986, - "eu-west-3": 0.6254, - "il-central-1": 0.6272, - "me-central-1": 0.6213, - "me-south-1": 0.6213, + "eu-west-3": 0.0, + "il-central-1": 0.5988, + "me-central-1": 0.6511, + "me-south-1": 0.6511, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.5282, "us-gov-east-1": 0.6372, "us-gov-west-1": 0.0, "us-west-1": 0.573, - "us-west-2": 0.0 + "us-west-2": 0.5524 }, "r6g.4xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 1.101, - "ap-northeast-3": 1.1562, - "ap-south-1": 0.645, + "ap-northeast-3": 0.0, + "ap-south-1": 0.6762, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 1.0978, "ap-southeast-4": 0.0, - "ca-central-1": 1.0612, + "ca-central-1": 1.0082, + "ca-west-1": 1.0082, "eu-central-1": 1.0978, "eu-central-2": 1.1951, - "eu-north-1": 1.0322, + "eu-north-1": 0.981, "eu-south-1": 1.1291, "eu-south-2": 1.0274, - "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-1": 1.0815, + "eu-west-2": 1.0722, "eu-west-3": 1.069, - "il-central-1": 1.0725, + "il-central-1": 0.0, "me-central-1": 1.1772, - "me-south-1": 1.1176, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 1.1494, "us-gov-west-1": 1.1494, - "us-west-1": 1.0748, + "us-west-1": 1.021, "us-west-2": 0.9798 }, "r6g.8xlarge": { "af-south-1": 0.0, "ap-east-1": 2.397, - "ap-northeast-1": 2.1873, - "ap-northeast-2": 2.1938, - "ap-northeast-3": 2.1873, + "ap-northeast-1": 2.0706, + "ap-northeast-2": 0.0, + "ap-northeast-3": 2.0706, "ap-south-1": 1.165, "ap-south-2": 1.165, - "ap-southeast-1": 2.1873, + "ap-southeast-1": 2.0706, "ap-southeast-2": 2.1738, "ap-southeast-3": 2.0706, "ap-southeast-4": 2.1738, - "ca-central-1": 1.8914, - "eu-central-1": 2.0706, + "ca-central-1": 0.0, + "ca-west-1": 1.9974, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 1.9394, "eu-south-1": 2.0194, "eu-south-2": 1.9298, "eu-west-1": 1.9298, "eu-west-2": 0.0, - "eu-west-3": 2.013, + "eu-west-3": 2.1266, "il-central-1": 2.02, - "me-central-1": 2.1103, - "me-south-1": 0.0, + "me-central-1": 2.2294, + "me-south-1": 2.2294, "sa-east-1": 2.6978, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 2.1738, - "us-gov-west-1": 2.0578, - "us-west-1": 1.917, + "us-gov-west-1": 0.0, + "us-west-1": 0.0, "us-west-2": 1.8346 }, "r6g.12xlarge": { "af-south-1": 3.5441, - "ap-east-1": 3.341, + "ap-east-1": 0.0, "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.2185, + "ap-northeast-3": 3.0434, "ap-south-1": 1.685, - "ap-south-2": 1.7786, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.0242, "ap-southeast-3": 3.2185, "ap-southeast-4": 3.1982, "ca-central-1": 2.7746, + "ca-west-1": 2.9336, "eu-central-1": 3.2185, - "eu-central-2": 3.3352, + "eu-central-2": 3.5279, "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-south-2": 0.0, - "eu-west-1": 2.9946, + "eu-south-1": 2.9666, + "eu-south-2": 2.9946, + "eu-west-1": 2.8322, "eu-west-2": 2.9666, "eu-west-3": 0.0, "il-central-1": 2.9676, @@ -82206,8 +92891,8 @@ "us-east-2": 2.5442, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 2.9743, - "us-west-2": 2.5442 + "us-west-1": 2.813, + "us-west-2": 2.6894 }, "r6g.16xlarge": { "af-south-1": 4.4258, @@ -82217,20 +92902,21 @@ "ap-northeast-3": 4.0162, "ap-south-1": 2.205, "ap-south-2": 2.205, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.0162, "ap-southeast-2": 3.9906, "ap-southeast-3": 0.0, - "ap-southeast-4": 3.9906, + "ap-southeast-4": 0.0, "ca-central-1": 3.6578, + "ca-west-1": 3.6578, "eu-central-1": 4.0162, "eu-central-2": 0.0, "eu-north-1": 3.549, - "eu-south-1": 3.9138, - "eu-south-2": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 3.7346, "eu-west-1": 0.0, "eu-west-2": 3.9138, "eu-west-3": 3.901, - "il-central-1": 0.0, + "il-central-1": 3.9151, "me-central-1": 4.0956, "me-south-1": 4.0956, "sa-east-1": 5.2706, @@ -82242,168 +92928,192 @@ "us-west-2": 3.3506 }, "r6gd.medium": { - "ap-northeast-1": 0.1047, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 0.1301, "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.1047, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.13, "ca-central-1": 0.0942, "eu-central-1": 0.0, - "eu-north-1": 0.1171, + "eu-central-2": 0.1322, + "eu-north-1": 0.1207, "eu-west-1": 0.0988, "eu-west-2": 0.0, - "eu-west-3": 0.1027, + "eu-west-3": 0.0986, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.0921, - "us-west-1": 0.0999, + "us-east-1": 0.0921, + "us-east-2": 0.0, + "us-gov-east-1": 0.1297, + "us-gov-west-1": 0.1255, + "us-west-1": 0.096, "us-west-2": 0.0886 }, "r6gd.large": { "ap-northeast-1": 0.2037, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.131, + "ap-south-1": 0.1355, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.2037, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.1827, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.1852, - "eu-west-1": 0.192, + "eu-west-1": 0.1843, "eu-west-2": 0.1996, - "eu-west-3": 0.0, + "eu-west-3": 0.1915, "sa-east-1": 0.2496, - "us-east-1": 0.1715, - "us-east-2": 0.1784, - "us-west-1": 0.0, - "us-west-2": 0.1784 + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 0.203, + "us-gov-west-1": 0.0, + "us-west-1": 0.1941, + "us-west-2": 0.1715 }, "r6gd.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.3331, + "ap-northeast-2": 0.3497, "ap-northeast-3": 0.3514, "ap-south-1": 0.2147, - "ap-southeast-1": 0.3511, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.3511, "ca-central-1": 0.3091, "eu-central-1": 0.0, - "eu-north-1": 0.2995, + "eu-central-2": 0.3599, + "eu-north-1": 0.0, "eu-west-1": 0.3123, - "eu-west-2": 0.3267, - "eu-west-3": 0.3429, + "eu-west-2": 0.3429, + "eu-west-3": 0.0, "sa-east-1": 0.443, "us-east-1": 0.3005, "us-east-2": 0.3005, - "us-west-1": 0.3163, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.3331, + "us-west-1": 0.3319, "us-west-2": 0.0 }, "r6gd.metal": { - "ap-northeast-1": 4.573, - "ap-northeast-2": 0.0, - "ap-northeast-3": 4.5794, - "ap-south-1": 0.0, + "ap-northeast-1": 0.0, + "ap-northeast-2": 4.5538, + "ap-northeast-3": 0.0, + "ap-south-1": 2.5167, "ap-southeast-1": 4.573, "ap-southeast-2": 4.573, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.573, "ca-central-1": 4.1698, - "eu-central-1": 0.0, - "eu-north-1": 4.0162, + "eu-central-1": 4.541, + "eu-central-2": 4.9826, + "eu-north-1": 0.0, "eu-west-1": 4.221, "eu-west-2": 4.4514, "eu-west-3": 4.4514, "sa-east-1": 5.9618, - "us-east-1": 0.0, + "us-east-1": 3.8114, "us-east-2": 3.8114, + "us-gov-east-1": 0.0, + "us-gov-west-1": 4.5538, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 3.8114 }, "r6gd.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.6786, + "ap-northeast-2": 0.7118, "ap-northeast-3": 0.7152, - "ap-south-1": 0.4419, - "ap-southeast-1": 0.681, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.7146, "ap-southeast-3": 0.681, "ca-central-1": 0.6609, "eu-central-1": 0.7102, - "eu-north-1": 0.6114, + "eu-central-2": 0.0, + "eu-north-1": 0.6406, "eu-west-1": 0.637, - "eu-west-2": 0.6982, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "sa-east-1": 0.8546, - "us-east-1": 0.0, + "sa-east-1": 0.8984, + "us-east-1": 0.6134, "us-east-2": 0.0, + "us-gov-east-1": 0.6786, + "us-gov-west-1": 0.6786, "us-west-1": 0.6762, "us-west-2": 0.6134 }, "r6gd.4xlarge": { - "ap-northeast-1": 1.3042, + "ap-northeast-1": 1.237, "ap-northeast-2": 0.0, - "ap-northeast-3": 1.3054, - "ap-south-1": 0.7588, + "ap-northeast-3": 0.0, + "ap-south-1": 0.7229, "ap-southeast-1": 1.3042, "ap-southeast-2": 0.0, "ap-southeast-3": 1.237, - "ca-central-1": 0.0, + "ca-central-1": 1.1362, "eu-central-1": 0.0, + "eu-central-2": 1.4124, "eu-north-1": 0.0, "eu-west-1": 1.2104, - "eu-west-2": 1.2066, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 1.5842, "us-east-1": 1.1019, "us-east-2": 0.0, + "us-gov-east-1": 1.2986, + "us-gov-west-1": 1.2986, "us-west-1": 1.165, - "us-west-2": 0.0 + "us-west-2": 1.0466 }, "r6gd.8xlarge": { - "ap-northeast-1": 2.4834, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.472, - "ap-northeast-3": 0.0, + "ap-northeast-3": 2.3522, "ap-south-1": 1.3926, - "ap-southeast-1": 2.4834, + "ap-southeast-1": 2.349, "ap-southeast-2": 2.4834, - "ap-southeast-3": 0.0, + "ap-southeast-3": 2.4834, "ca-central-1": 2.2687, - "eu-central-1": 0.0, + "eu-central-1": 2.333, + "eu-central-2": 2.6999, "eu-north-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 2.418, "eu-west-3": 2.2882, "sa-east-1": 3.2185, - "us-east-1": 1.9682, + "us-east-1": 0.0, "us-east-2": 1.9682, - "us-west-1": 2.3298, + "us-gov-east-1": 0.0, + "us-gov-west-1": 2.3394, + "us-west-1": 0.0, "us-west-2": 1.9682 }, "r6gd.12xlarge": { "ap-northeast-1": 3.461, - "ap-northeast-2": 3.6455, - "ap-northeast-3": 3.4658, + "ap-northeast-2": 3.4466, + "ap-northeast-3": 3.6662, "ap-south-1": 2.0264, "ap-southeast-1": 3.461, "ap-southeast-2": 3.461, "ap-southeast-3": 3.461, "ca-central-1": 3.3406, "eu-central-1": 0.0, + "eu-central-2": 3.9873, "eu-north-1": 3.2185, "eu-west-1": 0.0, - "eu-west-2": 3.5645, - "eu-west-3": 3.5645, - "sa-east-1": 4.5026, + "eu-west-2": 3.3698, + "eu-west-3": 0.0, + "sa-east-1": 4.7653, "us-east-1": 0.0, "us-east-2": 2.8898, - "us-west-1": 0.0, + "us-gov-east-1": 3.6459, + "us-gov-west-1": 3.4466, + "us-west-1": 3.4322, "us-west-2": 2.8898 }, "r6gd.16xlarge": { - "ap-northeast-1": 4.573, - "ap-northeast-2": 4.5538, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 4.5794, "ap-south-1": 2.5167, "ap-southeast-1": 4.573, @@ -82411,29 +93121,34 @@ "ap-southeast-3": 0.0, "ca-central-1": 4.1698, "eu-central-1": 4.541, - "eu-north-1": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 4.4514, - "eu-west-3": 0.0, - "sa-east-1": 5.9618, + "eu-central-2": 0.0, + "eu-north-1": 4.0162, + "eu-west-1": 4.221, + "eu-west-2": 0.0, + "eu-west-3": 4.4514, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 3.8114, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-1": 4.285, "us-west-2": 3.8114 }, "r6i.large": { - "af-south-1": 0.2243, - "ap-east-1": 0.24, - "ap-northeast-1": 0.0, + "af-south-1": 0.2411, + "ap-east-1": 0.0, + "ap-northeast-1": 0.2235, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.2083, "ap-south-1": 0.1993, - "ap-south-2": 0.1863, - "ap-southeast-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.2083, "ap-southeast-2": 0.2073, "ca-central-1": 0.0, + "ca-west-1": 0.1943, "eu-central-1": 0.0, - "eu-north-1": 0.1903, + "eu-central-2": 0.24022, + "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.2191, @@ -82441,40 +93156,42 @@ "il-central-1": 0.20435, "me-central-1": 0.2114, "me-south-1": 0.0, - "sa-east-1": 0.2573, + "sa-east-1": 0.0, "us-east-1": 0.1949, "us-east-2": 0.1823, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 0.2103, "us-west-2": 0.1949 }, "r6i.xlarge": { "af-south-1": 0.3923, - "ap-east-1": 0.4237, + "ap-east-1": 0.0, "ap-northeast-1": 0.3603, "ap-northeast-2": 0.3907, - "ap-northeast-3": 0.3603, - "ap-south-1": 0.3163, + "ap-northeast-3": 0.0, + "ap-south-1": 0.3423, "ap-south-2": 0.3423, - "ap-southeast-1": 0.3907, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.3885, - "ca-central-1": 0.3323, - "eu-central-1": 0.3907, + "ca-central-1": 0.3599, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.42414, "eu-north-1": 0.0, - "eu-south-1": 0.3523, - "eu-west-1": 0.3383, + "eu-south-1": 0.0, + "eu-west-1": 0.3665, "eu-west-2": 0.3819, "eu-west-3": 0.3819, - "il-central-1": 0.0, - "me-central-1": 0.39752, + "il-central-1": 0.3524, + "me-central-1": 0.3665, "me-south-1": 0.39752, - "sa-east-1": 0.4985, + "sa-east-1": 0.0, "us-east-1": 0.3083, "us-east-2": 0.3083, - "us-gov-east-1": 0.3583, - "us-gov-west-1": 0.3583, - "us-west-1": 0.3643, + "us-gov-east-1": 0.3885, + "us-gov-west-1": 0.0, + "us-west-1": 0.3363, "us-west-2": 0.0 }, "r6i.metal": { @@ -82484,179 +93201,193 @@ "ap-northeast-2": 9.853, "ap-northeast-3": 9.853, "ap-south-1": 0.0, - "ap-south-2": 8.445, - "ap-southeast-1": 9.853, + "ap-south-2": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 9.789, - "ca-central-1": 0.0, + "ca-central-1": 8.957, + "ca-west-1": 8.957, "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 9.597, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 9.597, "eu-west-3": 0.0, "il-central-1": 0.0, - "me-central-1": 10.0514, - "me-south-1": 10.0514, + "me-central-1": 0.0, + "me-south-1": 0.0, "sa-east-1": 12.989, - "us-east-1": 8.189, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 8.189, "us-gov-east-1": 9.789, - "us-gov-west-1": 9.789, + "us-gov-west-1": 0.0, "us-west-1": 9.085, - "us-west-2": 8.189 + "us-west-2": 0.0 }, "r6i.2xlarge": { "af-south-1": 0.8642, - "ap-east-1": 0.0, + "ap-east-1": 0.793, "ap-northeast-1": 0.7938, "ap-northeast-2": 0.733, - "ap-northeast-3": 0.733, + "ap-northeast-3": 0.7938, "ap-south-1": 0.0, - "ap-south-2": 0.645, + "ap-south-2": 0.697, "ap-southeast-1": 0.733, "ap-southeast-2": 0.0, "ca-central-1": 0.677, + "ca-west-1": 0.7322, "eu-central-1": 0.733, + "eu-central-2": 0.7938, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-west-1": 0.689, - "eu-west-2": 0.7762, - "eu-west-3": 0.717, - "il-central-1": 0.7172, + "eu-west-2": 0.0, + "eu-west-3": 0.7762, + "il-central-1": 0.77642, "me-central-1": 0.80744, - "me-south-1": 0.80744, - "sa-east-1": 1.0094, + "me-south-1": 0.7454, + "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.629, + "us-east-2": 0.0, "us-gov-east-1": 0.7894, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.729, "us-west-1": 0.741, - "us-west-2": 0.629 + "us-west-2": 0.6794 }, "r6i.4xlarge": { - "af-south-1": 1.469, + "af-south-1": 1.6034, "ap-east-1": 1.461, "ap-northeast-1": 1.341, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.4626, "ap-northeast-3": 1.341, "ap-south-1": 1.165, - "ap-south-2": 1.165, - "ap-southeast-1": 1.4626, - "ap-southeast-2": 1.4538, - "ca-central-1": 1.3394, + "ap-south-2": 1.269, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.333, + "ca-central-1": 1.229, + "ca-west-1": 1.229, "eu-central-1": 1.341, - "eu-north-1": 0.0, + "eu-central-2": 1.59636, + "eu-north-1": 1.197, "eu-south-1": 1.4274, "eu-west-1": 1.3658, "eu-west-2": 0.0, - "eu-west-3": 1.309, + "eu-west-3": 0.0, "il-central-1": 1.3094, - "me-central-1": 0.0, - "me-south-1": 1.48988, + "me-central-1": 1.48988, + "me-south-1": 1.3658, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 1.133, "us-gov-east-1": 1.4538, "us-gov-west-1": 1.4538, "us-west-1": 0.0, - "us-west-2": 1.2338 + "us-west-2": 1.133 }, "r6i.8xlarge": { "af-south-1": 3.0818, - "ap-east-1": 3.0642, - "ap-northeast-1": 2.8002, + "ap-east-1": 0.0, + "ap-northeast-1": 2.557, "ap-northeast-2": 0.0, "ap-northeast-3": 2.8002, - "ap-south-1": 2.205, + "ap-south-1": 0.0, "ap-south-2": 2.205, "ap-southeast-1": 2.8002, "ap-southeast-2": 2.541, - "ca-central-1": 2.333, - "eu-central-1": 2.557, + "ca-central-1": 2.5538, + "ca-west-1": 2.333, + "eu-central-1": 2.8002, + "eu-central-2": 2.8002, "eu-north-1": 2.4834, - "eu-south-1": 0.0, - "eu-west-1": 2.381, - "eu-west-2": 2.7298, - "eu-west-3": 0.0, + "eu-south-1": 2.493, + "eu-west-1": 0.0, + "eu-west-2": 2.493, + "eu-west-3": 2.493, "il-central-1": 2.4938, - "me-central-1": 2.6066, + "me-central-1": 0.0, "me-south-1": 2.85476, "sa-east-1": 0.0, - "us-east-1": 2.3426, + "us-east-1": 2.141, "us-east-2": 2.141, - "us-gov-east-1": 2.7826, + "us-gov-east-1": 0.0, "us-gov-west-1": 2.541, - "us-west-1": 0.0, + "us-west-1": 2.589, "us-west-2": 2.3426 }, "r6i.12xlarge": { "af-south-1": 4.157, "ap-east-1": 4.133, - "ap-northeast-1": 0.0, + "ap-northeast-1": 4.1378, "ap-northeast-2": 0.0, - "ap-northeast-3": 3.773, + "ap-northeast-3": 4.1378, "ap-south-1": 3.245, "ap-south-2": 3.245, - "ap-southeast-1": 4.1378, - "ap-southeast-2": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 4.1378, + "ap-southeast-1": 3.773, + "ap-southeast-2": 4.1114, + "ca-central-1": 3.437, + "ca-west-1": 3.437, + "eu-central-1": 3.773, + "eu-central-2": 4.53908, "eu-north-1": 3.6626, - "eu-south-1": 0.0, - "eu-west-1": 3.509, - "eu-west-2": 0.0, + "eu-south-1": 3.677, + "eu-west-1": 3.8474, + "eu-west-2": 4.0322, "eu-west-3": 4.0322, "il-central-1": 4.03352, "me-central-1": 0.0, - "me-south-1": 3.8474, + "me-south-1": 4.21964, "sa-east-1": 0.0, "us-east-1": 3.149, "us-east-2": 3.4514, - "us-gov-east-1": 0.0, + "us-gov-east-1": 3.749, "us-gov-west-1": 4.1114, "us-west-1": 3.821, - "us-west-2": 3.149 + "us-west-2": 3.4514 }, "r6i.16xlarge": { "af-south-1": 6.0386, "ap-east-1": 6.0034, "ap-northeast-1": 5.4754, - "ap-northeast-2": 5.4754, + "ap-northeast-2": 4.989, "ap-northeast-3": 0.0, "ap-south-1": 4.701, - "ap-south-2": 4.701, + "ap-south-2": 4.285, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.957, + "ap-southeast-2": 0.0, "ca-central-1": 4.541, - "eu-central-1": 5.4754, + "ca-west-1": 4.9826, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 4.8418, - "eu-south-1": 0.0, + "eu-south-1": 4.861, "eu-west-1": 4.637, "eu-west-2": 0.0, - "eu-west-3": 0.0, + "eu-west-3": 4.861, "il-central-1": 5.33636, - "me-central-1": 5.0882, + "me-central-1": 5.58452, "me-south-1": 5.0882, "sa-east-1": 7.2002, - "us-east-1": 4.5602, + "us-east-1": 4.157, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 4.957, "us-gov-west-1": 5.4402, "us-west-1": 4.605, "us-west-2": 0.0 }, "r6i.24xlarge": { - "af-south-1": 8.189, + "af-south-1": 8.9954, "ap-east-1": 8.141, - "ap-northeast-1": 0.0, + "ap-northeast-1": 8.1506, "ap-northeast-2": 7.421, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-3": 7.421, + "ap-south-1": 6.989, "ap-south-2": 6.989, - "ap-southeast-1": 0.0, - "ap-southeast-2": 7.373, - "ca-central-1": 7.4114, + "ap-southeast-1": 8.1506, + "ap-southeast-2": 8.0978, + "ca-central-1": 0.0, + "ca-west-1": 6.749, "eu-central-1": 8.1506, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 7.229, "eu-west-1": 0.0, @@ -82667,49 +93398,52 @@ "me-south-1": 0.0, "sa-east-1": 10.7378, "us-east-1": 6.7778, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-east-2": 6.7778, + "us-gov-east-1": 8.0978, "us-gov-west-1": 8.0978, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 6.845, + "us-west-2": 6.7778 }, "r6i.32xlarge": { "af-south-1": 10.877, "ap-east-1": 10.813, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 9.853, "ap-northeast-3": 9.853, "ap-south-1": 8.445, "ap-south-2": 8.445, "ap-southeast-1": 9.853, "ap-southeast-2": 9.789, "ca-central-1": 8.957, - "eu-central-1": 0.0, + "ca-west-1": 8.957, + "eu-central-1": 9.853, + "eu-central-2": 10.8258, "eu-north-1": 8.701, "eu-south-1": 9.597, "eu-west-1": 9.149, "eu-west-2": 9.597, "eu-west-3": 9.597, "il-central-1": 9.6002, - "me-central-1": 0.0, - "me-south-1": 10.0514, - "sa-east-1": 12.989, + "me-central-1": 10.0514, + "me-south-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 8.189, - "us-east-2": 8.189, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-west-1": 9.085, "us-west-2": 8.189 }, "r6id.large": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-south-1": 0.23076, + "ap-northeast-2": 0.238, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2477, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.2243, - "eu-west-2": 0.2515, + "eu-west-1": 0.2411, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 0.22262, "us-east-2": 0.2075, @@ -82717,34 +93451,36 @@ "us-west-2": 0.22262 }, "r6id.xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.4197, - "ap-south-1": 0.40522, + "ap-northeast-1": 0.4217, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 0.4043, + "ca-west-1": 0.0, "eu-central-1": 0.45593, - "eu-west-1": 0.4259, - "eu-west-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.44669, "il-central-1": 0.4091, "us-east-1": 0.0, - "us-east-2": 0.38894, - "us-gov-west-1": 0.45604, - "us-west-2": 0.3587 + "us-east-2": 0.3587, + "us-gov-west-1": 0.4197, + "us-west-2": 0.38894 }, "r6id.metal": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 11.8178, "ap-northeast-2": 11.7538, "ap-south-1": 10.2754, "ap-southeast-1": 11.8178, "ap-southeast-2": 11.261, + "ca-west-1": 10.7426, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 11.4818, "il-central-1": 11.4146, - "us-east-1": 9.8018, - "us-east-2": 9.8018, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 11.7538, - "us-west-2": 0.0 + "us-west-2": 9.8018 }, "r6id.2xlarge": { "ap-northeast-1": 0.92888, @@ -82752,27 +93488,29 @@ "ap-south-1": 0.7594, "ap-southeast-1": 0.0, "ap-southeast-2": 0.821, + "ca-west-1": 0.85496, "eu-central-1": 0.92426, "eu-west-1": 0.0, "eu-west-2": 0.8348, "il-central-1": 0.8306, "us-east-1": 0.0, "us-east-2": 0.79028, - "us-gov-west-1": 0.92448, + "us-gov-west-1": 0.8518, "us-west-2": 0.7298 }, "r6id.4xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 1.73276, + "ap-northeast-2": 1.5786, "ap-south-1": 1.3938, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 1.68656, - "il-central-1": 0.0, + "il-central-1": 1.67732, "us-east-1": 1.3346, - "us-east-2": 0.0, + "us-east-2": 1.45556, "us-gov-west-1": 1.72396, "us-west-2": 0.0 }, @@ -82782,36 +93520,39 @@ "ap-south-1": 0.0, "ap-southeast-1": 3.0482, "ap-southeast-2": 0.0, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 2.813, - "eu-west-2": 2.9642, + "eu-west-2": 0.0, "il-central-1": 2.9474, - "us-east-1": 2.78612, - "us-east-2": 2.5442, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 2.5442 }, "r6id.12xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 4.92188, - "ap-south-1": 4.31204, + "ap-northeast-2": 4.4858, + "ap-south-1": 3.9314, "ap-southeast-1": 4.5098, - "ap-southeast-2": 0.0, - "eu-central-1": 4.4846, + "ap-southeast-2": 4.301, + "ca-west-1": 0.0, + "eu-central-1": 0.0, "eu-west-1": 4.157, "eu-west-2": 0.0, - "il-central-1": 4.3586, + "il-central-1": 4.78196, "us-east-1": 0.0, "us-east-2": 3.7538, - "us-gov-west-1": 4.4858, - "us-west-2": 4.11668 + "us-gov-west-1": 0.0, + "us-west-2": 3.7538 }, "r6id.16xlarge": { "ap-northeast-1": 5.9714, "ap-northeast-2": 6.52084, "ap-south-1": 5.70772, "ap-southeast-1": 0.0, - "ap-southeast-2": 6.2498, + "ap-southeast-2": 0.0, + "ca-west-1": 5.4338, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 5.8034, @@ -82819,22 +93560,23 @@ "us-east-1": 0.0, "us-east-2": 5.44724, "us-gov-west-1": 5.9394, - "us-west-2": 4.9634 + "us-west-2": 0.0 }, "r6id.24xlarge": { "ap-northeast-1": 9.77156, - "ap-northeast-2": 9.71876, + "ap-northeast-2": 0.0, "ap-south-1": 8.49908, - "ap-southeast-1": 8.8946, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 8.477, + "ca-west-1": 8.88452, "eu-central-1": 0.0, "eu-west-1": 8.9954, - "eu-west-2": 9.49436, + "eu-west-2": 0.0, "il-central-1": 9.43892, - "us-east-1": 8.10836, - "us-east-2": 8.10836, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 8.10836 }, "r6id.32xlarge": { "ap-northeast-1": 11.8178, @@ -82842,19 +93584,21 @@ "ap-south-1": 10.2754, "ap-southeast-1": 11.8178, "ap-southeast-2": 11.261, + "ca-west-1": 10.7426, "eu-central-1": 11.7506, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 11.4818, "il-central-1": 11.4146, "us-east-1": 0.0, "us-east-2": 9.8018, "us-gov-west-1": 0.0, - "us-west-2": 9.8018 + "us-west-2": 0.0 }, "r6idn.large": { "ap-northeast-1": 0.0, - "ap-southeast-1": 0.3137, + "ap-southeast-1": 0.2903, "eu-central-1": 0.28913, + "eu-north-1": 0.2841, "eu-west-1": 0.0, "us-east-1": 0.27123, "us-east-2": 0.25169, @@ -82865,66 +93609,73 @@ "ap-northeast-1": 0.57882, "ap-southeast-1": 0.5711, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 0.49154, "us-east-1": 0.0, "us-east-2": 0.44708, "us-gov-west-1": 0.52664, - "us-west-2": 0.48616 + "us-west-2": 0.0 }, "r6idn.metal": { "ap-northeast-1": 15.32564, "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 13.37876, "eu-west-1": 14.05268, "us-east-1": 12.62996, - "us-east-2": 12.62996, + "us-east-2": 0.0, "us-gov-west-1": 15.17588, "us-west-2": 12.62996 }, "r6idn.2xlarge": { - "ap-northeast-1": 1.17004, + "ap-northeast-1": 1.07504, "ap-southeast-1": 0.0, "eu-central-1": 1.05632, + "eu-north-1": 1.0362, "eu-west-1": 0.99548, "us-east-1": 0.98472, "us-east-2": 0.90656, "us-gov-west-1": 1.15975, - "us-west-2": 0.0 + "us-west-2": 0.98472 }, "r6idn.4xlarge": { "ap-northeast-1": 2.02508, "ap-southeast-1": 2.1842, "eu-central-1": 2.1739, - "eu-west-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 1.86596, "us-east-1": 0.0, "us-east-2": 1.68812, "us-gov-west-1": 2.1945, - "us-west-2": 1.68812 + "us-west-2": 0.0 }, "r6idn.8xlarge": { - "ap-northeast-1": 4.30518, - "ap-southeast-1": 0.0, + "ap-northeast-1": 3.92516, + "ap-southeast-1": 4.2434, "eu-central-1": 3.85028, + "eu-north-1": 0.0, "eu-west-1": 3.95511, "us-east-1": 3.56386, - "us-east-2": 3.56386, - "us-gov-west-1": 4.26399, + "us-east-2": 0.0, + "us-gov-west-1": 3.88772, "us-west-2": 3.56386 }, "r6idn.12xlarge": { "ap-northeast-1": 6.39526, "ap-southeast-1": 0.0, "eu-central-1": 5.71292, + "eu-north-1": 5.09516, "eu-west-1": 5.34788, "us-east-1": 5.2833, - "us-east-2": 4.81436, + "us-east-2": 0.0, "us-gov-west-1": 6.33349, - "us-west-2": 4.81436 + "us-west-2": 0.0 }, "r6idn.16xlarge": { "ap-northeast-1": 8.48535, "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 0.0, "us-east-2": 7.00273, @@ -82933,41 +93684,45 @@ }, "r6idn.24xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 12.4802, - "eu-central-1": 0.0, - "eu-west-1": 0.0, + "ap-southeast-1": 0.0, + "eu-central-1": 12.41842, + "eu-north-1": 11.05935, + "eu-west-1": 11.61534, "us-east-1": 0.0, - "us-east-2": 10.44159, - "us-gov-west-1": 11.41316, - "us-west-2": 10.44159 + "us-east-2": 0.0, + "us-gov-west-1": 12.54198, + "us-west-2": 0.0 }, "r6idn.32xlarge": { - "ap-northeast-1": 15.32564, + "ap-northeast-1": 0.0, "ap-southeast-1": 15.101, - "eu-central-1": 15.02612, - "eu-west-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 13.37876, + "eu-west-1": 14.05268, "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-west-1": 0.0, + "us-gov-west-1": 15.17588, "us-west-2": 0.0 }, "r6in.large": { "ap-northeast-1": 0.26807, - "ap-southeast-1": 0.26456, + "ap-southeast-1": 0.28539, "eu-central-1": 0.26456, + "eu-north-1": 0.26093, "eu-west-1": 0.0, "us-east-1": 0.23063, "us-east-2": 0.23063, "us-gov-west-1": 0.28667, - "us-west-2": 0.24806 + "us-west-2": 0.23063 }, "r6in.xlarge": { "ap-northeast-1": 0.47984, "ap-southeast-1": 0.0, "eu-central-1": 0.0, - "eu-west-1": 0.48616, + "eu-north-1": 0.42836, + "eu-west-1": 0.44708, "us-east-1": 0.40496, - "us-east-2": 0.0, + "us-east-2": 0.40496, "us-gov-west-1": 0.47516, "us-west-2": 0.43983 }, @@ -82975,254 +93730,863 @@ "ap-northeast-1": 13.67828, "ap-southeast-1": 13.45364, "eu-central-1": 13.45364, + "eu-north-1": 0.0, "eu-west-1": 0.0, "us-east-1": 11.28212, - "us-east-2": 11.28212, + "us-east-2": 0.0, "us-gov-west-1": 13.52852, - "us-west-2": 11.28212 + "us-west-2": 0.0 }, "r6in.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.05679, "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 0.95804, + "eu-north-1": 0.94353, "eu-west-1": 0.90656, - "us-east-1": 0.89205, - "us-east-2": 0.89205, - "us-gov-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 1.04649, "us-west-2": 0.0 }, "r6in.4xlarge": { - "ap-northeast-1": 1.81916, + "ap-northeast-1": 0.0, "ap-southeast-1": 1.79108, - "eu-central-1": 0.0, + "eu-central-1": 1.95769, + "eu-north-1": 1.76206, "eu-west-1": 0.0, - "us-east-1": 1.51964, - "us-east-2": 1.51964, - "us-gov-west-1": 1.96798, + "us-east-1": 1.6591, + "us-east-2": 1.6591, + "us-gov-west-1": 0.0, "us-west-2": 1.6591 }, "r6in.8xlarge": { "ap-northeast-1": 3.85215, - "ap-southeast-1": 3.79038, + "ap-southeast-1": 3.45716, "eu-central-1": 0.0, - "eu-west-1": 3.56386, - "us-east-1": 3.19321, - "us-east-2": 3.19321, - "us-gov-west-1": 3.47588, - "us-west-2": 2.91428 + "eu-north-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 2.91428, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, + "us-west-2": 0.0 }, "r6in.12xlarge": { "ap-northeast-1": 5.20748, - "ap-southeast-1": 0.0, - "eu-central-1": 0.0, + "ap-southeast-1": 5.62306, + "eu-central-1": 5.62306, + "eu-north-1": 5.03619, "eu-west-1": 4.81436, "us-east-1": 4.30892, - "us-east-2": 0.0, - "us-gov-west-1": 5.15132, + "us-east-2": 4.72731, + "us-gov-west-1": 5.65395, "us-west-2": 4.72731 }, "r6in.16xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 6.78932, - "eu-central-1": 0.0, - "eu-west-1": 6.37748, + "ap-northeast-1": 7.5793, + "ap-southeast-1": 0.0, + "eu-central-1": 6.78932, + "eu-north-1": 6.07796, + "eu-west-1": 7.00273, "us-east-1": 6.26142, - "us-east-2": 5.70356, + "us-east-2": 0.0, "us-gov-west-1": 0.0, - "us-west-2": 6.26142 + "us-west-2": 0.0 }, "r6in.24xlarge": { - "ap-northeast-1": 10.28996, - "ap-southeast-1": 11.12113, + "ap-northeast-1": 0.0, + "ap-southeast-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 9.94738, "eu-west-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 9.32962, "us-east-2": 9.32962, "us-gov-west-1": 0.0, "us-west-2": 0.0 }, "r6in.32xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 13.67828, "ap-southeast-1": 0.0, "eu-central-1": 13.45364, - "eu-west-1": 12.62996, + "eu-north-1": 12.03092, + "eu-west-1": 0.0, "us-east-1": 11.28212, "us-east-2": 11.28212, "us-gov-west-1": 13.52852, "us-west-2": 11.28212 }, + "r7a.medium": { + "ap-northeast-1": 0.15725, + "eu-central-1": 0.14807, + "eu-north-1": 0.14529, + "eu-south-2": 0.14994, + "eu-west-1": 0.14994, + "us-east-1": 0.13238, + "us-east-2": 0.13998, + "us-west-2": 0.13998 + }, + "r7a.large": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.2181, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.20845, + "us-west-2": 0.0 + }, + "r7a.xlarge": { + "ap-northeast-1": 0.46009, + "eu-central-1": 0.0, + "eu-north-1": 0.3799, + "eu-south-2": 0.39682, + "eu-west-1": 0.39682, + "us-east-1": 0.3606, + "us-east-2": 0.3606, + "us-west-2": 0.39103 + }, + "r7a.metal-48xl": { + "ap-northeast-1": 17.74484, + "eu-central-1": 17.74484, + "eu-north-1": 0.0, + "eu-south-2": 16.46996, + "eu-west-1": 0.0, + "us-east-1": 14.7314, + "us-east-2": 14.7314, + "us-west-2": 14.7314 + }, + "r7a.2xlarge": { + "ap-northeast-1": 0.85916, + "eu-central-1": 0.85916, + "eu-north-1": 0.83692, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.7336, + "us-east-2": 0.7336, + "us-west-2": 0.7336 + }, + "r7a.4xlarge": { + "ap-northeast-1": 1.74015, + "eu-central-1": 1.59332, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 1.48708, + "us-east-1": 1.3422, + "us-east-2": 0.0, + "us-west-2": 1.46392 + }, + "r7a.8xlarge": { + "ap-northeast-1": 3.06164, + "eu-central-1": 3.3553, + "eu-north-1": 2.7138, + "eu-south-2": 2.84916, + "eu-west-1": 0.0, + "us-east-1": 2.5594, + "us-east-2": 2.5594, + "us-west-2": 2.80284 + }, + "r7a.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 4.97046, + "eu-north-1": 0.0, + "eu-south-2": 4.21124, + "eu-west-1": 4.61986, + "us-east-1": 4.14176, + "us-east-2": 4.14176, + "us-west-2": 3.7766 + }, + "r7a.16xlarge": { + "ap-northeast-1": 5.99828, + "eu-central-1": 6.58561, + "eu-north-1": 5.82036, + "eu-south-2": 0.0, + "eu-west-1": 6.11815, + "us-east-1": 4.9938, + "us-east-2": 4.9938, + "us-west-2": 4.9938 + }, + "r7a.24xlarge": { + "ap-northeast-1": 8.93492, + "eu-central-1": 8.93492, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 7.4282, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7a.32xlarge": { + "ap-northeast-1": 11.87156, + "eu-central-1": 13.04622, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 12.1113, + "us-east-1": 9.8626, + "us-east-2": 0.0, + "us-west-2": 9.8626 + }, + "r7a.48xlarge": { + "ap-northeast-1": 17.74484, + "eu-central-1": 17.74484, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "us-east-1": 14.7314, + "us-east-2": 14.7314, + "us-west-2": 14.7314 + }, "r7g.medium": { "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 0.0, + "ap-southeast-1": 0.1209, "ap-southeast-2": 0.1205, + "ca-central-1": 0.0, "eu-central-1": 0.125, - "eu-west-1": 0.1162, + "eu-north-1": 0.1167, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.1192, "us-east-1": 0.1132, - "us-east-2": 0.0, + "us-east-2": 0.1099, + "us-west-1": 0.1195, "us-west-2": 0.1099 }, "r7g.large": { - "ap-northeast-1": 0.1936, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.1936, + "ap-south-1": 0.1314, + "ap-south-2": 0.1314, + "ap-southeast-1": 0.1855, "ap-southeast-2": 0.1927, - "eu-central-1": 0.0, - "eu-west-1": 0.0, + "ca-central-1": 0.1736, + "eu-central-1": 0.1855, + "eu-north-1": 0.0, + "eu-south-2": 0.1761, + "eu-west-1": 0.1762, + "eu-west-2": 0.1821, "us-east-1": 0.0, "us-east-2": 0.1634, - "us-west-2": 0.1701 + "us-west-1": 0.1828, + "us-west-2": 0.1634 }, "r7g.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.331, + "ap-northeast-2": 0.0, + "ap-south-1": 0.2065, + "ap-south-2": 0.2065, + "ap-southeast-1": 0.331, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.311, "eu-west-1": 0.296, + "eu-west-2": 0.3079, "us-east-1": 0.0, "us-east-2": 0.284, - "us-west-2": 0.0 + "us-west-1": 0.3093, + "us-west-2": 0.2705 }, "r7g.metal": { "ap-northeast-1": 4.2594, - "ap-southeast-2": 4.2325, + "ap-northeast-2": 4.2594, + "ap-south-1": 0.0, + "ap-south-2": 2.5276, + "ap-southeast-1": 4.2594, + "ap-southeast-2": 0.0, + "ca-central-1": 3.8786, "eu-central-1": 4.2594, + "eu-north-1": 3.7698, + "eu-south-2": 3.9586, "eu-west-1": 3.9602, + "eu-west-2": 0.0, "us-east-1": 3.5522, "us-east-2": 3.5522, + "us-west-1": 3.933, "us-west-2": 3.5522 }, "r7g.2xlarge": { - "ap-northeast-1": 0.6744, + "ap-northeast-1": 0.6418, + "ap-northeast-2": 0.0, + "ap-south-1": 0.4253, + "ap-south-2": 0.4253, + "ap-southeast-1": 0.6744, "ap-southeast-2": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.6744, + "eu-north-1": 0.6079, + "eu-south-2": 0.0, "eu-west-1": 0.0, + "eu-west-2": 0.6282, "us-east-1": 0.5534, "us-east-2": 0.0, + "us-west-1": 0.0, "us-west-2": 0.5534 }, "r7g.4xlarge": { - "ap-northeast-1": 1.2237, + "ap-northeast-1": 1.1586, + "ap-northeast-2": 1.2236, + "ap-south-1": 0.7632, + "ap-south-2": 0.7633, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.1519, - "eu-central-1": 1.1586, + "ca-central-1": 1.0634, + "eu-central-1": 0.0, + "eu-north-1": 1.0362, + "eu-south-2": 0.0, "eu-west-1": 1.0838, + "eu-west-2": 1.1314, "us-east-1": 0.9818, "us-east-2": 0.0, + "us-west-1": 1.137, "us-west-2": 0.0 }, "r7g.8xlarge": { - "ap-northeast-1": 2.3224, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-south-2": 1.4016, + "ap-southeast-1": 2.1922, "ap-southeast-2": 0.0, + "ca-central-1": 2.0018, "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.1626, "eu-west-1": 2.1634, - "us-east-1": 0.0, + "eu-west-2": 2.1378, + "us-east-1": 1.8386, "us-east-2": 1.9466, + "us-west-1": 2.029, "us-west-2": 1.9466 }, "r7g.12xlarge": { "ap-northeast-1": 3.4212, + "ap-northeast-2": 3.4207, + "ap-south-1": 0.0, + "ap-south-2": 2.0399, + "ap-southeast-1": 3.4212, "ap-southeast-2": 3.2056, + "ca-central-1": 0.0, "eu-central-1": 3.2258, + "eu-north-1": 2.8586, + "eu-south-2": 3.0002, "eu-west-1": 0.0, - "us-east-1": 2.8573, + "eu-west-2": 0.0, + "us-east-1": 0.0, "us-east-2": 2.6954, + "us-west-1": 3.1609, "us-west-2": 0.0 }, "r7g.16xlarge": { "ap-northeast-1": 4.2594, - "ap-southeast-2": 0.0, + "ap-northeast-2": 4.2594, + "ap-south-1": 2.5276, + "ap-south-2": 2.5276, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.2325, + "ca-central-1": 0.0, "eu-central-1": 4.2594, + "eu-north-1": 3.7698, + "eu-south-2": 3.9586, "eu-west-1": 0.0, - "us-east-1": 0.0, + "eu-west-2": 4.1506, + "us-east-1": 3.5522, "us-east-2": 3.5522, - "us-west-2": 3.5522 + "us-west-1": 3.933, + "us-west-2": 0.0 }, "r7gd.medium": { + "ap-northeast-1": 0.1434, + "ap-south-1": 0.0, + "ap-southeast-1": 0.1385, + "ap-southeast-2": 0.1393, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 0.1364, "eu-west-1": 0.1319, "us-east-1": 0.1284, - "us-east-2": 0.0, + "us-east-2": 0.1284, + "us-west-1": 0.1328, "us-west-2": 0.1284 }, "r7gd.large": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.1443, + "ap-southeast-1": 0.2207, + "ap-southeast-2": 0.2129, + "eu-central-1": 0.0, + "eu-north-1": 0.2086, + "eu-south-2": 0.0, "eu-west-1": 0.2166, "us-east-1": 0.1924, - "us-east-2": 0.2005, + "us-east-2": 0.1924, + "us-west-1": 0.2094, "us-west-2": 0.2005 }, "r7gd.xlarge": { + "ap-northeast-1": 0.4049, + "ap-south-1": 0.0, + "ap-southeast-1": 0.3852, + "ap-southeast-2": 0.0, + "eu-central-1": 0.3833, + "eu-north-1": 0.0, + "eu-south-2": 0.3587, + "eu-west-1": 0.0, + "us-east-1": 0.3448, + "us-east-2": 0.0, + "us-west-1": 0.3625, + "us-west-2": 0.3448 + }, + "r7gd.metal": { + "ap-northeast-1": 5.3868, + "ap-south-1": 0.0, + "ap-southeast-1": 5.3868, + "ap-southeast-2": 0.0, + "eu-central-1": 5.3565, + "eu-north-1": 0.0, + "eu-south-2": 4.9634, "eu-west-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.3448, - "us-west-2": 0.0 + "us-east-2": 4.4796, + "us-west-1": 5.0239, + "us-west-2": 4.4796 }, "r7gd.2xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.4981, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.789, + "eu-central-1": 0.0, + "eu-north-1": 0.6996, + "eu-south-2": 0.7661, "eu-west-1": 0.7298, - "us-east-1": 0.6693, - "us-east-2": 0.7019, + "us-east-1": 0.7019, + "us-east-2": 0.6693, + "us-west-1": 0.0, "us-west-2": 0.6693 }, "r7gd.4xlarge": { + "ap-northeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.3778, + "eu-central-1": 0.0, + "eu-north-1": 1.2741, + "eu-south-2": 1.4072, "eu-west-1": 0.0, "us-east-1": 1.2136, "us-east-2": 1.2788, + "us-west-1": 1.4232, "us-west-2": 0.0 }, "r7gd.8xlarge": { + "ap-northeast-1": 2.9137, + "ap-south-1": 0.0, + "ap-southeast-1": 2.7559, + "ap-southeast-2": 0.0, + "eu-central-1": 2.7408, + "eu-north-1": 0.0, + "eu-south-2": 2.6894, "eu-west-1": 2.6894, - "us-east-1": 2.3023, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 2.4326, + "us-west-1": 2.5744, "us-west-2": 0.0 }, "r7gd.12xlarge": { - "eu-west-1": 3.9715, + "ap-northeast-1": 4.3081, + "ap-south-1": 2.3637, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.8834, + "eu-central-1": 4.0486, + "eu-north-1": 0.0, + "eu-south-2": 3.7538, + "eu-west-1": 0.0, "us-east-1": 3.5864, "us-east-2": 3.3909, + "us-west-1": 4.0196, "us-west-2": 3.5864 }, "r7gd.16xlarge": { - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-northeast-1": 5.3868, + "ap-south-1": 2.941, + "ap-southeast-1": 5.3868, + "ap-southeast-2": 5.1362, + "eu-central-1": 5.3565, + "eu-north-1": 4.7215, + "eu-south-2": 4.9634, + "eu-west-1": 0.0, + "us-east-1": 4.4796, "us-east-2": 4.4796, + "us-west-1": 0.0, "us-west-2": 4.4796 }, - "t1.micro": { - "ap-northeast-1": 0.026, - "ap-southeast-1": 0.02, - "ap-southeast-2": 0.02, - "eu-west-1": 0.02, - "sa-east-1": 0.027, - "us-east-1": 0.02, - "us-gov-west-1": 0.024, - "us-west-1": 0.025, - "us-west-2": 0.02 + "r7i.large": { + "ap-northeast-1": 0.23186, + "ap-northeast-2": 0.2159, + "ap-south-1": 0.1928, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.21485, + "ap-southeast-3": 0.0, + "ca-central-1": 0.21569, + "eu-central-1": 0.23186, + "eu-north-1": 0.21107, + "eu-south-2": 0.20435, + "eu-west-1": 0.20435, + "eu-west-2": 0.22724, + "eu-west-3": 0.22724, + "sa-east-1": 0.26735, + "us-east-1": 0.0, + "us-east-2": 0.20183, + "us-gov-east-1": 0.23071, + "us-gov-west-1": 0.0, + "us-west-1": 0.218, + "us-west-2": 0.20183 + }, + "r7i.xlarge": { + "ap-northeast-1": 0.3755, + "ap-northeast-2": 0.40742, + "ap-south-1": 0.3293, + "ap-southeast-1": 0.3755, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.3755, + "ca-central-1": 0.3461, + "eu-central-1": 0.3755, + "eu-north-1": 0.3377, + "eu-south-2": 0.3524, + "eu-west-1": 0.3524, + "eu-west-2": 0.39818, + "eu-west-3": 0.39818, + "sa-east-1": 0.0, + "us-east-1": 0.34736, + "us-east-2": 0.0, + "us-gov-east-1": 0.40511, + "us-gov-west-1": 0.3734, + "us-west-1": 0.3797, + "us-west-2": 0.34736 }, - "t2.micro": { - "ap-northeast-1": 0.0152, - "ap-northeast-2": 0.0144, - "ap-northeast-3": 0.0152, - "ap-south-1": 0.0124, - "ap-southeast-1": 0.0146, - "ap-southeast-2": 0.0146, - "ca-central-1": 0.0128, - "eu-central-1": 0.0134, - "eu-west-1": 0.0126, - "eu-west-2": 0.0132, - "eu-west-3": 0.0132, - "sa-east-1": 0.0186, - "us-east-1": 0.0116, - "us-east-2": 0.0116, - "us-gov-west-1": 0.0136, - "us-west-1": 0.0138, - "us-west-2": 0.0116 + "r7i.metal-24xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 7.7858, + "ap-south-1": 7.3322, + "ap-southeast-1": 8.55188, + "ap-southeast-2": 0.0, + "ap-southeast-3": 8.55188, + "ca-central-1": 0.0, + "eu-central-1": 8.55188, + "eu-north-1": 6.8786, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 7.5842, + "eu-west-3": 7.5842, + "sa-east-1": 0.0, + "us-east-1": 6.4754, + "us-east-2": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 8.49644, + "us-west-1": 7.8866, + "us-west-2": 7.11044 }, - "t2.small": { - "ap-northeast-1": 0.0604, - "ap-northeast-2": 0.0588, - "ap-northeast-3": 0.0604, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0592, - "ap-southeast-2": 0.0592, - "ca-central-1": 0.0556, - "eu-central-1": 0.0568, - "eu-west-1": 0.055, - "eu-west-2": 0.056, - "eu-west-3": 0.0564, - "sa-east-1": 0.0672, + "r7i.metal-48xl": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 13.229, + "ap-southeast-1": 15.4466, + "ap-southeast-2": 0.0, + "ap-southeast-3": 15.4466, + "ca-central-1": 14.0354, + "eu-central-1": 15.4466, + "eu-north-1": 13.6322, + "eu-south-2": 14.3378, + "eu-west-1": 0.0, + "eu-west-2": 15.0434, + "eu-west-3": 15.0434, + "sa-east-1": 20.3858, + "us-east-1": 12.8258, + "us-east-2": 0.0, + "us-gov-east-1": 15.3458, + "us-gov-west-1": 15.3458, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "r7i.2xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.82724, + "ap-south-1": 0.7256, + "ap-southeast-1": 0.7634, + "ap-southeast-2": 0.7592, + "ap-southeast-3": 0.82724, + "ca-central-1": 0.0, + "eu-central-1": 0.82724, + "eu-north-1": 0.0, + "eu-south-2": 0.77642, + "eu-west-1": 0.77642, + "eu-west-2": 0.80876, + "eu-west-3": 0.7466, + "sa-east-1": 0.9692, + "us-east-1": 0.70712, + "us-east-2": 0.0, + "us-gov-east-1": 0.82262, + "us-gov-west-1": 0.82262, + "us-west-1": 0.713, + "us-west-2": 0.6542 + }, + "r7i.4xlarge": { + "ap-northeast-1": 1.4018, + "ap-northeast-2": 0.0, + "ap-south-1": 1.3262, + "ap-southeast-1": 1.52948, + "ap-southeast-2": 1.3934, + "ap-southeast-3": 1.4018, + "ca-central-1": 1.2842, + "eu-central-1": 1.4018, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 1.42784, + "eu-west-2": 0.0, + "eu-west-3": 1.49252, + "sa-east-1": 1.98224, + "us-east-1": 0.0, + "us-east-2": 1.1834, + "us-gov-east-1": 1.52024, + "us-gov-west-1": 1.52024, + "us-west-1": 0.0, + "us-west-2": 1.28924 + }, + "r7i.8xlarge": { + "ap-northeast-1": 2.6786, + "ap-northeast-2": 2.6786, + "ap-south-1": 2.5274, + "ap-southeast-1": 2.6786, + "ap-southeast-2": 2.91548, + "ap-southeast-3": 2.93396, + "ca-central-1": 2.67524, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 2.73068, + "eu-west-1": 2.73068, + "eu-west-2": 0.0, + "eu-west-3": 2.86004, + "sa-east-1": 0.0, + "us-east-1": 2.45348, + "us-east-2": 2.2418, + "us-gov-east-1": 2.91548, + "us-gov-west-1": 2.91548, + "us-west-1": 0.0, + "us-west-2": 2.2418 + }, + "r7i.12xlarge": { + "ap-northeast-1": 4.33844, + "ap-northeast-2": 3.9554, + "ap-south-1": 0.0, + "ap-southeast-1": 4.33844, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 3.83948, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 4.22756, + "eu-west-3": 4.22756, + "sa-east-1": 5.69672, + "us-east-1": 0.0, + "us-east-2": 3.61772, + "us-gov-east-1": 3.9302, + "us-gov-west-1": 3.9302, + "us-west-1": 4.0058, + "us-west-2": 0.0 + }, + "r7i.16xlarge": { + "ap-northeast-1": 5.74292, + "ap-northeast-2": 0.0, + "ap-south-1": 4.493, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.74292, + "ca-central-1": 4.7618, + "eu-central-1": 5.2322, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 4.8626, + "eu-west-2": 0.0, + "eu-west-3": 5.0978, + "sa-east-1": 7.55396, + "us-east-1": 4.3586, + "us-east-2": 4.3586, + "us-gov-east-1": 5.70596, + "us-gov-west-1": 5.1986, + "us-west-1": 5.2994, + "us-west-2": 0.0 + }, + "r7i.24xlarge": { + "ap-northeast-1": 7.7858, + "ap-northeast-2": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 7.7858, + "ap-southeast-2": 7.7354, + "ap-southeast-3": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-south-2": 7.94204, + "eu-west-1": 7.94204, + "eu-west-2": 0.0, + "eu-west-3": 8.33012, + "sa-east-1": 10.2554, + "us-east-1": 7.11044, + "us-east-2": 7.11044, + "us-gov-east-1": 8.49644, + "us-gov-west-1": 7.7354, + "us-west-1": 0.0, + "us-west-2": 6.4754 + }, + "r7i.48xlarge": { + "ap-northeast-1": 15.4466, + "ap-northeast-2": 15.4466, + "ap-south-1": 0.0, + "ap-southeast-1": 15.4466, + "ap-southeast-2": 15.3458, + "ap-southeast-3": 15.4466, + "ca-central-1": 0.0, + "eu-central-1": 15.4466, + "eu-north-1": 13.6322, + "eu-south-2": 14.3378, + "eu-west-1": 14.3378, + "eu-west-2": 15.0434, + "eu-west-3": 0.0, + "sa-east-1": 20.3858, + "us-east-1": 0.0, + "us-east-2": 12.8258, + "us-gov-east-1": 0.0, + "us-gov-west-1": 15.3458, + "us-west-1": 0.0, + "us-west-2": 0.0 + }, + "r7iz.large": { + "ap-northeast-1": 0.2833, + "eu-central-1": 0.2813, + "eu-west-1": 0.2643, + "us-east-1": 0.2609, + "us-east-2": 0.2609, + "us-west-2": 0.0 + }, + "r7iz.xlarge": { + "ap-northeast-1": 0.5557, + "eu-central-1": 0.5513, + "eu-west-1": 0.5139, + "us-east-1": 0.4283, + "us-east-2": 0.0, + "us-west-2": 0.4283 + }, + "r7iz.metal-16xl": { + "ap-northeast-1": 7.389, + "eu-central-1": 7.325, + "eu-west-1": 7.4466, + "us-east-1": 6.077, + "us-east-2": 0.0, + "us-west-2": 6.6722 + }, + "r7iz.metal-32xl": { + "ap-northeast-1": 14.653, + "eu-central-1": 15.965, + "eu-west-1": 13.437, + "us-east-1": 12.029, + "us-east-2": 12.029, + "us-west-2": 12.029 + }, + "r7iz.2xlarge": { + "ap-northeast-1": 1.033, + "eu-central-1": 1.115, + "eu-west-1": 0.957, + "us-east-1": 0.869, + "us-east-2": 0.0, + "us-west-2": 0.9434 + }, + "r7iz.4xlarge": { + "ap-northeast-1": 1.941, + "eu-central-1": 1.925, + "eu-west-1": 0.0, + "us-east-1": 1.613, + "us-east-2": 1.7618, + "us-west-2": 0.0 + }, + "r7iz.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 3.725, + "eu-west-1": 3.453, + "us-east-1": 3.101, + "us-east-2": 0.0, + "us-west-2": 3.3986 + }, + "r7iz.12xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 6.065, + "eu-west-1": 0.0, + "us-east-1": 4.589, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.16xlarge": { + "ap-northeast-1": 8.1154, + "eu-central-1": 8.045, + "eu-west-1": 6.781, + "us-east-1": 6.077, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.32xlarge": { + "ap-northeast-1": 16.1058, + "eu-central-1": 15.965, + "eu-west-1": 14.7682, + "us-east-1": 13.2194, + "us-east-2": 0.0, + "us-west-2": 13.2194 + }, + "t1.micro": { + "ap-northeast-1": 0.026, + "ap-southeast-1": 0.02, + "ap-southeast-2": 0.02, + "eu-west-1": 0.02, + "sa-east-1": 0.027, + "us-east-1": 0.02, + "us-gov-west-1": 0.024, + "us-west-1": 0.025, + "us-west-2": 0.02 + }, + "t2.micro": { + "ap-northeast-1": 0.0152, + "ap-northeast-2": 0.0144, + "ap-northeast-3": 0.0152, + "ap-south-1": 0.0124, + "ap-southeast-1": 0.0146, + "ap-southeast-2": 0.0146, + "ca-central-1": 0.0128, + "eu-central-1": 0.0134, + "eu-west-1": 0.0126, + "eu-west-2": 0.0132, + "eu-west-3": 0.0132, + "sa-east-1": 0.0186, + "us-east-1": 0.0116, + "us-east-2": 0.0116, + "us-gov-west-1": 0.0136, + "us-west-1": 0.0138, + "us-west-2": 0.0116 + }, + "t2.small": { + "ap-northeast-1": 0.0604, + "ap-northeast-2": 0.0588, + "ap-northeast-3": 0.0604, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0592, + "ap-southeast-2": 0.0592, + "ca-central-1": 0.0556, + "eu-central-1": 0.0568, + "eu-west-1": 0.055, + "eu-west-2": 0.056, + "eu-west-3": 0.0564, + "sa-east-1": 0.0672, "us-east-1": 0.053, "us-east-2": 0.053, "us-gov-west-1": 0.0572, @@ -83325,31 +94689,32 @@ "us-west-2": 0.4712 }, "t3.micro": { - "af-south-1": 0.0144, + "af-south-1": 0.0136, "ap-east-1": 0.0146, "ap-northeast-1": 0.0144, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-northeast-2": 0.0137, + "ap-northeast-3": 0.0144, + "ap-south-1": 0.0112, "ap-south-2": 0.0112, "ap-southeast-1": 0.014, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.014, - "ca-central-1": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0123, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-central-2": 0.0132, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.012, "eu-south-2": 0.0, "eu-west-1": 0.0114, "eu-west-2": 0.0118, - "eu-west-3": 0.0, - "il-central-1": 0.0127, + "eu-west-3": 0.0125, + "il-central-1": 0.0, "me-central-1": 0.0125, "me-south-1": 0.0, "sa-east-1": 0.0168, - "us-east-1": 0.0, + "us-east-1": 0.011, "us-east-2": 0.0104, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, @@ -83361,15 +94726,16 @@ "af-south-1": 0.0, "ap-east-1": 0.0602, "ap-northeast-1": 0.06, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.0585, "ap-northeast-3": 0.0582, - "ap-south-1": 0.0547, - "ap-south-2": 0.0537, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0591, "ap-southeast-3": 0.0574, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0542, + "ap-southeast-4": 0.0577, + "ca-central-1": 0.0556, + "ca-west-1": 0.0559, "eu-central-1": 0.0566, "eu-central-2": 0.0577, "eu-north-1": 0.0, @@ -83379,10 +94745,10 @@ "eu-west-2": 0.0546, "eu-west-3": 0.0546, "il-central-1": 0.0553, - "me-central-1": 0.0, + "me-central-1": 0.0564, "me-south-1": 0.0561, "sa-east-1": 0.0646, - "us-east-1": 0.0, + "us-east-1": 0.053, "us-east-2": 0.053, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, @@ -83393,30 +94759,31 @@ "t3.medium": { "af-south-1": 0.1138, "ap-east-1": 0.1147, - "ap-northeast-1": 0.114, - "ap-northeast-2": 0.1113, + "ap-northeast-1": 0.1107, + "ap-northeast-2": 0.1083, "ap-northeast-3": 0.1107, - "ap-south-1": 0.1038, + "ap-south-1": 0.1011, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.1091, "ap-southeast-4": 0.1123, - "ca-central-1": 0.1027, - "eu-central-1": 0.1072, + "ca-central-1": 0.1055, + "ca-west-1": 0.1055, + "eu-central-1": 0.0, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.0, "eu-south-2": 0.1019, - "eu-west-1": 0.1046, - "eu-west-2": 0.1035, + "eu-west-1": 0.1019, + "eu-west-2": 0.0, "eu-west-3": 0.1063, - "il-central-1": 0.1071, - "me-central-1": 0.0, + "il-central-1": 0.1042, + "me-central-1": 0.1065, "me-south-1": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 0.1235, "us-east-1": 0.0, - "us-east-2": 0.0979, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 0.0, @@ -83428,55 +94795,57 @@ "ap-east-1": 0.0, "ap-northeast-1": 0.1716, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.1651, "ap-south-1": 0.1459, "ap-south-2": 0.1459, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.1682, + "ap-southeast-1": 0.1682, + "ap-southeast-2": 0.1619, "ap-southeast-3": 0.1619, "ap-southeast-4": 0.1682, - "ca-central-1": 0.1491, - "eu-central-1": 0.0, + "ca-central-1": 0.1547, + "ca-west-1": 0.1547, + "eu-central-1": 0.1523, "eu-central-2": 0.0, "eu-north-1": 0.1427, - "eu-south-1": 0.0, - "eu-south-2": 0.1475, + "eu-south-1": 0.1579, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.1564, "eu-west-3": 0.1507, "il-central-1": 0.0, "me-central-1": 0.1566, - "me-south-1": 0.0, + "me-south-1": 0.1566, "sa-east-1": 0.1981, "us-east-1": 0.0, "us-east-2": 0.1445, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 0.1615, + "us-west-1": 0.1555, "us-west-2": 0.1395, "us-west-2-lax-1": 0.1561 }, "t3.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.2899, + "ap-east-1": 0.0, "ap-northeast-1": 0.287, "ap-northeast-2": 0.2763, "ap-northeast-3": 0.2739, - "ap-south-1": 0.0, + "ap-south-1": 0.2462, "ap-south-2": 0.0, - "ap-southeast-1": 0.2675, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.2675, - "ap-southeast-3": 0.2675, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.0, - "ca-central-1": 0.253, - "eu-central-1": 0.2483, - "eu-central-2": 0.2675, + "ca-central-1": 0.0, + "ca-west-1": 0.0, + "eu-central-1": 0.2598, + "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.248, - "eu-south-2": 0.0, + "eu-south-2": 0.2387, "eu-west-1": 0.2387, "eu-west-2": 0.2451, - "eu-west-3": 0.2564, + "eu-west-3": 0.2451, "il-central-1": 0.2595, "me-central-1": 0.0, "me-south-1": 0.2569, @@ -83491,31 +94860,32 @@ }, "t3.nano": { "af-south-1": 0.0068, - "ap-east-1": 0.0073, - "ap-northeast-1": 0.0068, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0065, - "ap-northeast-3": 0.0068, + "ap-northeast-3": 0.0, "ap-south-1": 0.0056, - "ap-south-2": 0.0056, + "ap-south-2": 0.0, "ap-southeast-1": 0.0066, "ap-southeast-2": 0.0066, "ap-southeast-3": 0.0066, "ap-southeast-4": 0.0, "ca-central-1": 0.0058, + "ca-west-1": 0.0058, "eu-central-1": 0.006, "eu-central-2": 0.0066, - "eu-north-1": 0.0054, + "eu-north-1": 0.0, "eu-south-1": 0.006, "eu-south-2": 0.0057, "eu-west-1": 0.0057, - "eu-west-2": 0.0, + "eu-west-2": 0.0059, "eu-west-3": 0.0059, - "il-central-1": 0.006, + "il-central-1": 0.0, "me-central-1": 0.0, - "me-south-1": 0.0063, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.0052, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0061, "us-west-1": 0.0, @@ -83525,33 +94895,34 @@ "t3.2xlarge": { "af-south-1": 0.0, "ap-east-1": 0.0, - "ap-northeast-1": 0.5602, - "ap-northeast-2": 0.5649, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.5602, "ap-south-1": 0.5049, "ap-south-2": 0.4834, "ap-southeast-1": 0.5727, "ap-southeast-2": 0.5474, "ap-southeast-3": 0.5474, - "ap-southeast-4": 0.0, + "ap-southeast-4": 0.5727, "ca-central-1": 0.0, + "ca-west-1": 0.5185, "eu-central-1": 0.532, "eu-central-2": 0.0, "eu-north-1": 0.0, "eu-south-1": 0.5084, "eu-south-2": 0.4898, "eu-west-1": 0.4898, - "eu-west-2": 0.0, + "eu-west-2": 0.5253, "eu-west-3": 0.5026, - "il-central-1": 0.5314, + "il-central-1": 0.5084, "me-central-1": 0.5263, "me-south-1": 0.5263, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.4578, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.5154, "us-gov-west-1": 0.0, - "us-west-1": 0.5456, + "us-west-1": 0.0, "us-west-2": 0.4578, "us-west-2-lax-1": 0.5244 }, @@ -83715,6 +95086,7 @@ "ap-southeast-3": 0.0106, "ap-southeast-4": 0.0106, "ca-central-1": 0.0092, + "ca-west-1": 0.0092, "eu-central-1": 0.0096, "eu-central-2": 0.0106, "eu-north-1": 0.0086, @@ -83747,6 +95119,7 @@ "ap-southeast-3": 0.0525, "ap-southeast-4": 0.0525, "ca-central-1": 0.0497, + "ca-west-1": 0.0497, "eu-central-1": 0.0505, "eu-central-2": 0.0524, "eu-north-1": 0.0485, @@ -83779,6 +95152,7 @@ "ap-southeast-3": 0.0987, "ap-southeast-4": 0.0987, "ca-central-1": 0.0931, + "ca-west-1": 0.0931, "eu-central-1": 0.0947, "eu-central-2": 0.0985, "eu-north-1": 0.0907, @@ -83811,6 +95185,7 @@ "ap-southeast-3": 0.1411, "ap-southeast-4": 0.1411, "ca-central-1": 0.1299, + "ca-west-1": 0.1299, "eu-central-1": 0.1331, "eu-central-2": 0.1408, "eu-north-1": 0.1251, @@ -83843,6 +95218,7 @@ "ap-southeast-3": 0.2259, "ap-southeast-4": 0.2259, "ca-central-1": 0.2035, + "ca-west-1": 0.2035, "eu-central-1": 0.2099, "eu-central-2": 0.2253, "eu-north-1": 0.1939, @@ -83875,6 +95251,7 @@ "ap-southeast-3": 0.0053, "ap-southeast-4": 0.0053, "ca-central-1": 0.0046, + "ca-west-1": 0.0046, "eu-central-1": 0.0048, "eu-central-2": 0.0053, "eu-north-1": 0.0043, @@ -83907,6 +95284,7 @@ "ap-southeast-3": 0.4642, "ap-southeast-4": 0.4642, "ca-central-1": 0.4194, + "ca-west-1": 0.4194, "eu-central-1": 0.4322, "eu-central-2": 0.4629, "eu-north-1": 0.4002, @@ -83926,6 +95304,24 @@ "us-west-1": 0.445, "us-west-2": 0.3938 }, + "u7i-12tb.224xlarge": { + "us-east-1": 153.005, + "us-west-2": 153.005 + }, + "u7in-16tb.224xlarge": { + "ap-northeast-2": 0.0, + "ap-southeast-2": 244.409, + "us-east-1": 203.965, + "us-west-2": 203.965 + }, + "u7in-24tb.224xlarge": { + "us-east-1": 305.885, + "us-west-2": 305.885 + }, + "u7in-32tb.224xlarge": { + "us-east-1": 407.805, + "us-west-2": 0.0 + }, "u-3tb1.56xlarge": { "ap-northeast-1": 33.0583, "ap-southeast-1": 33.055, @@ -83941,97 +95337,164 @@ "us-west-2": 27.425 }, "u-6tb1.metal": { - "eu-central-2": 0.125 + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, + "ap-south-1": 0.125, + "ap-southeast-1": 0.125, + "ap-southeast-2": 0.125, + "ca-central-1": 0.125, + "eu-central-1": 0.125, + "eu-central-2": 0.125, + "eu-north-1": 0.125, + "eu-south-1": 0.125, + "eu-south-2": 0.125, + "eu-west-1": 0.125, + "eu-west-2": 0.125, + "eu-west-3": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-6tb1.56xlarge": { - "ap-northeast-1": 56.1046, - "ap-northeast-2": 56.1046, - "ap-south-1": 48.00176, - "ap-southeast-1": 56.1046, - "ap-southeast-2": 55.73575, - "ca-central-1": 50.94833, - "eu-central-1": 56.1046, + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, + "ap-south-1": 0.125, + "ap-southeast-1": 0.125, + "ap-southeast-2": 0.125, + "ca-central-1": 0.125, + "eu-central-1": 0.125, "eu-central-2": 0.125, - "eu-north-1": 49.45677, - "eu-south-1": 54.64959, - "eu-west-1": 52.05318, - "eu-west-3": 54.63089, - "sa-east-1": 74.15028, - "us-east-1": 46.52891, - "us-east-2": 46.52891, - "us-gov-east-1": 55.73575, - "us-gov-west-1": 55.73575, - "us-west-2": 46.52891 + "eu-north-1": 0.125, + "eu-south-1": 0.125, + "eu-south-2": 0.125, + "eu-west-1": 0.125, + "eu-west-2": 0.125, + "eu-west-3": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-6tb1.112xlarge": { - "ap-northeast-1": 65.992, - "ap-northeast-2": 65.992, - "ap-south-1": 56.458, - "ap-southeast-1": 65.992, - "ap-southeast-2": 65.558, - "ca-central-1": 59.925, - "eu-central-1": 65.992, + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, + "ap-south-1": 0.125, + "ap-southeast-1": 0.125, + "ap-southeast-2": 0.125, + "ca-central-1": 0.125, + "eu-central-1": 0.125, "eu-central-2": 0.125, - "eu-north-1": 58.17, - "eu-south-1": 64.28, - "eu-west-1": 61.225, - "eu-west-3": 64.258, - "sa-east-1": 87.225, - "us-east-1": 54.725, - "us-east-2": 54.725, - "us-gov-east-1": 65.558, - "us-gov-west-1": 65.558, - "us-west-2": 54.725 + "eu-north-1": 0.125, + "eu-south-1": 0.125, + "eu-south-2": 0.125, + "eu-west-1": 0.125, + "eu-west-2": 0.125, + "eu-west-3": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-9tb1.metal": { + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, "ap-south-2": 0.125, - "us-gov-east-1": 0.125 + "ap-southeast-1": 0.125, + "eu-central-1": 0.125, + "eu-north-1": 0.125, + "eu-west-1": 0.125, + "eu-west-2": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-9tb1.112xlarge": { - "ap-northeast-1": 98.925, + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, "ap-south-2": 0.125, - "ap-southeast-1": 98.925, - "eu-central-1": 98.925, - "eu-west-1": 91.775, - "us-east-1": 82.025, + "ap-southeast-1": 0.125, + "eu-central-1": 0.125, + "eu-north-1": 0.125, + "eu-west-1": 0.125, + "eu-west-2": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, "us-gov-east-1": 0.125, - "us-gov-west-1": 98.275, - "us-west-2": 82.025 + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-12tb1.metal": { - "ap-south-1": 0.125 + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, + "ap-northeast-3": 0.125, + "ap-south-1": 0.125, + "ap-southeast-1": 0.125, + "ap-southeast-2": 0.125, + "eu-central-1": 0.125, + "eu-south-1": 0.125, + "eu-west-1": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 }, "u-12tb1.112xlarge": { - "ap-northeast-1": 131.858, + "ap-northeast-1": 0.125, + "ap-northeast-2": 0.125, + "ap-northeast-3": 0.125, "ap-south-1": 0.125, - "ap-southeast-1": 131.858, - "eu-central-1": 131.858, - "eu-west-1": 122.325, - "sa-east-1": 174.325, - "us-east-1": 109.325, - "us-east-2": 109.325, - "us-gov-east-1": 130.992, - "us-gov-west-1": 130.992, - "us-west-2": 109.325 + "ap-southeast-1": 0.125, + "ap-southeast-2": 0.125, + "eu-central-1": 0.125, + "eu-south-1": 128.435, + "eu-west-1": 0.125, + "sa-east-1": 0.125, + "us-east-1": 0.125, + "us-east-2": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, + "us-west-2": 0.125 + }, + "u-18tb1.metal": { + "eu-west-1": 0.125, + "us-east-1": 0.125, + "us-west-2": 0.125 }, "u-18tb1.112xlarge": { - "eu-west-1": 183.425, - "us-east-1": 163.925, - "us-west-2": 163.925 + "eu-west-1": 0.125, + "us-east-1": 0.125, + "us-west-2": 0.125 }, "u-24tb1.metal": { + "ap-northeast-2": 0.125, + "us-east-1": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, "us-west-2": 0.125 }, "u-24tb1.112xlarge": { - "ap-northeast-2": 263.595, - "us-east-1": 218.525, - "us-gov-east-1": 261.855, - "us-gov-west-1": 261.855, + "ap-northeast-2": 0.125, + "us-east-1": 0.125, + "us-gov-east-1": 0.125, + "us-gov-west-1": 0.125, "us-west-2": 0.125 }, "x1.16xlarge": { "af-south-1": 9.624, - "ap-east-1": 11.802, + "ap-east-1": 0.0, "ap-northeast-1": 9.771, "ap-northeast-2": 9.771, "ap-northeast-3": 0.0, @@ -84041,13 +95504,13 @@ "ca-central-1": 0.0, "eu-central-1": 9.437, "eu-west-1": 8.103, - "eu-west-2": 8.503, + "eu-west-2": 0.0, "eu-west-3": 0.0, "sa-east-1": 13.105, "us-east-1": 6.769, "us-east-2": 6.769, "us-gov-east-1": 8.103, - "us-gov-west-1": 0.0, + "us-gov-west-1": 8.103, "us-west-2": 6.769 }, "x1.32xlarge": { @@ -84062,13 +95525,13 @@ "ca-central-1": 0.0, "eu-central-1": 18.774, "eu-west-1": 16.106, - "eu-west-2": 0.0, + "eu-west-2": 16.906, "eu-west-3": 0.0, "sa-east-1": 0.0, "us-east-1": 13.438, "us-east-2": 13.438, "us-gov-east-1": 16.106, - "us-gov-west-1": 0.0, + "us-gov-west-1": 16.106, "us-west-2": 13.438 }, "x1e.xlarge": { @@ -84078,60 +95541,60 @@ "ap-northeast-3": 0.0, "ap-south-1": 0.916, "ap-southeast-1": 1.386, - "ap-southeast-2": 1.265, + "ap-southeast-2": 0.0, "ca-central-1": 1.065, "eu-central-1": 0.0, "eu-west-1": 1.056, "sa-east-1": 1.682, - "us-east-1": 0.0, + "us-east-1": 0.974, "us-east-2": 0.89, "us-gov-east-1": 1.056, "us-gov-west-1": 1.156, "us-west-2": 0.0 }, "x1e.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 2.718, "ap-northeast-1": 2.518, "ap-northeast-2": 2.518, "ap-northeast-3": 0.0, "ap-south-1": 1.82, - "ap-southeast-1": 2.518, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 1.934, "eu-central-1": 0.0, "eu-west-1": 2.3, "sa-east-1": 3.351, "us-east-1": 0.0, - "us-east-2": 1.935, + "us-east-2": 0.0, "us-gov-east-1": 2.3, "us-gov-west-1": 2.1, - "us-west-2": 1.768 + "us-west-2": 1.935 }, "x1e.4xlarge": { "af-south-1": 4.86, - "ap-northeast-1": 0.0, - "ap-northeast-2": 4.936, + "ap-northeast-1": 4.936, + "ap-northeast-2": 5.42, "ap-northeast-3": 0.0, "ap-south-1": 3.54, - "ap-southeast-1": 0.0, - "ap-southeast-2": 5.42, + "ap-southeast-1": 5.42, + "ap-southeast-2": 4.936, "ca-central-1": 3.767, - "eu-central-1": 5.235, - "eu-west-1": 0.0, + "eu-central-1": 4.768, + "eu-west-1": 4.5, "sa-east-1": 6.602, - "us-east-1": 3.77, - "us-east-2": 3.436, + "us-east-1": 3.436, + "us-east-2": 0.0, "us-gov-east-1": 4.5, "us-gov-west-1": 4.5, - "us-west-2": 0.0 + "us-west-2": 3.436 }, "x1e.8xlarge": { - "af-south-1": 10.572, + "af-south-1": 0.0, "ap-northeast-1": 9.772, - "ap-northeast-2": 9.772, + "ap-northeast-2": 10.739, "ap-northeast-3": 0.0, "ap-south-1": 6.98, - "ap-southeast-1": 9.772, + "ap-southeast-1": 0.0, "ap-southeast-2": 10.739, "ca-central-1": 0.0, "eu-central-1": 0.0, @@ -84144,52 +95607,52 @@ "us-west-2": 6.772 }, "x1e.16xlarge": { - "af-south-1": 0.0, + "af-south-1": 21.044, "ap-northeast-1": 0.0, - "ap-northeast-2": 19.444, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 13.86, "ap-southeast-1": 21.378, "ap-southeast-2": 19.444, - "ca-central-1": 16.236, + "ca-central-1": 0.0, "eu-central-1": 18.772, - "eu-west-1": 17.7, + "eu-west-1": 0.0, "sa-east-1": 26.11, "us-east-1": 14.778, - "us-east-2": 14.778, - "us-gov-east-1": 0.0, + "us-east-2": 13.444, + "us-gov-east-1": 17.7, "us-gov-west-1": 17.7, - "us-west-2": 13.444 + "us-west-2": 14.778 }, "x1e.32xlarge": { "af-south-1": 38.18, - "ap-northeast-1": 0.0, + "ap-northeast-1": 38.788, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 27.62, "ap-southeast-1": 38.788, - "ap-southeast-2": 38.788, + "ap-southeast-2": 0.0, "ca-central-1": 29.438, - "eu-central-1": 0.0, + "eu-central-1": 37.444, "eu-west-1": 32.1, "sa-east-1": 0.0, "us-east-1": 26.788, "us-east-2": 0.0, "us-gov-east-1": 32.1, - "us-gov-west-1": 32.1, + "us-gov-west-1": 0.0, "us-west-2": 26.788 }, "x2gd.medium": { - "eu-west-1": 0.0, + "eu-west-1": 0.141, "us-east-1": 0.1145, "us-east-2": 0.0, "us-west-2": 0.0 }, "x2gd.large": { - "eu-west-1": 0.0, + "eu-west-1": 0.2563, "us-east-1": 0.2233, - "us-east-2": 0.24, - "us-west-2": 0.0 + "us-east-2": 0.0, + "us-west-2": 0.24 }, "x2gd.xlarge": { "eu-west-1": 0.0, @@ -84200,45 +95663,46 @@ "x2gd.metal": { "eu-west-1": 0.0, "us-east-1": 5.469, - "us-east-2": 6.0034, - "us-west-2": 5.469 + "us-east-2": 5.469, + "us-west-2": 6.0034 }, "x2gd.2xlarge": { - "eu-west-1": 0.0, + "eu-west-1": 0.925, "us-east-1": 0.8598, - "us-east-2": 0.793, - "us-west-2": 0.793 + "us-east-2": 0.0, + "us-west-2": 0.8598 }, "x2gd.4xlarge": { "eu-west-1": 1.885, - "us-east-1": 1.5946, + "us-east-1": 0.0, "us-east-2": 1.461, - "us-west-2": 1.5946 + "us-west-2": 0.0 }, "x2gd.8xlarge": { "eu-west-1": 3.645, - "us-east-1": 0.0, + "us-east-1": 2.797, "us-east-2": 3.0642, "us-west-2": 0.0 }, "x2gd.12xlarge": { "eu-west-1": 5.405, - "us-east-1": 0.0, + "us-east-1": 4.5338, "us-east-2": 0.0, - "us-west-2": 4.133 + "us-west-2": 4.5338 }, "x2gd.16xlarge": { "eu-west-1": 7.165, - "us-east-1": 5.469, - "us-east-2": 0.0, - "us-west-2": 5.469 + "us-east-1": 6.0034, + "us-east-2": 5.469, + "us-west-2": 0.0 }, "x2idn.metal": { + "af-south-1": 19.173, "ap-northeast-1": 19.466, "ap-northeast-2": 19.466, "ap-northeast-3": 19.467, "ap-south-1": 13.887, - "ap-south-2": 0.0, + "ap-south-2": 13.887, "ap-southeast-1": 19.466, "ap-southeast-2": 19.466, "ap-southeast-3": 0.0, @@ -84248,7 +95712,7 @@ "eu-north-1": 15.336, "eu-south-1": 16.926, "eu-south-2": 16.131, - "eu-west-1": 16.131, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 0.0, "me-central-1": 16.533, @@ -84261,135 +95725,143 @@ "us-west-2": 13.463 }, "x2idn.16xlarge": { - "ap-northeast-1": 9.7955, - "ap-northeast-2": 0.0, + "af-south-1": 0.0, + "ap-northeast-1": 10.76255, + "ap-northeast-2": 10.76255, "ap-northeast-3": 0.0, - "ap-south-1": 7.6941, - "ap-south-2": 7.6941, - "ap-southeast-1": 10.76255, - "ap-southeast-2": 10.76255, + "ap-south-1": 7.006, + "ap-south-2": 7.006, + "ap-southeast-1": 9.7955, + "ap-southeast-2": 9.7955, "ap-southeast-3": 9.7955, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 10.3957, "eu-central-2": 0.0, "eu-north-1": 8.49105, "eu-south-1": 8.5255, - "eu-south-2": 0.0, + "eu-south-2": 8.9283, "eu-west-1": 8.128, "eu-west-2": 9.3683, "eu-west-3": 0.0, "me-central-1": 8.329, "sa-east-1": 13.13, "us-east-1": 0.0, - "us-east-2": 7.4609, + "us-east-2": 0.0, "us-gov-east-1": 8.9283, - "us-gov-west-1": 0.0, - "us-west-1": 0.0, + "us-gov-west-1": 8.9283, + "us-west-1": 9.662, "us-west-2": 6.794 }, "x2idn.24xlarge": { - "ap-northeast-1": 14.63075, - "ap-northeast-2": 14.63075, + "af-south-1": 14.411, + "ap-northeast-1": 16.08133, + "ap-northeast-2": 16.08133, "ap-northeast-3": 16.08215, "ap-south-1": 11.47865, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, + "ap-south-2": 11.47865, + "ap-southeast-1": 16.08133, "ap-southeast-2": 0.0, - "ap-southeast-3": 14.63075, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 15.53105, "eu-central-2": 0.0, "eu-north-1": 11.53325, "eu-south-1": 13.98583, - "eu-south-2": 12.1295, + "eu-south-2": 0.0, "eu-west-1": 12.1295, "eu-west-2": 12.7295, "eu-west-3": 13.98995, - "me-central-1": 13.6616, + "me-central-1": 0.0, "sa-east-1": 19.6325, "us-east-1": 11.12885, - "us-east-2": 11.12885, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 14.4305, "us-west-2": 0.0 }, "x2idn.32xlarge": { + "af-south-1": 19.173, "ap-northeast-1": 19.466, - "ap-northeast-2": 0.0, + "ap-northeast-2": 19.466, "ap-northeast-3": 19.467, "ap-south-1": 0.0, "ap-south-2": 13.887, "ap-southeast-1": 19.466, - "ap-southeast-2": 19.466, + "ap-southeast-2": 0.0, "ap-southeast-3": 19.466, "ca-central-1": 14.797, "eu-central-1": 0.0, - "eu-central-2": 20.6664, + "eu-central-2": 0.0, "eu-north-1": 15.336, "eu-south-1": 16.926, - "eu-south-2": 16.131, + "eu-south-2": 0.0, "eu-west-1": 0.0, "eu-west-2": 16.931, "eu-west-3": 16.931, "me-central-1": 0.0, "sa-east-1": 26.135, "us-east-1": 13.463, - "us-east-2": 0.0, + "us-east-2": 13.463, "us-gov-east-1": 16.131, "us-gov-west-1": 0.0, "us-west-1": 17.465, "us-west-2": 13.463 }, "x2iedn.xlarge": { - "ap-northeast-1": 1.38599, + "af-south-1": 1.2468, + "ap-northeast-1": 1.26511, "ap-northeast-2": 1.38599, "ap-northeast-3": 1.26518, "ap-south-1": 0.0, "ap-south-2": 0.0, - "ap-southeast-1": 1.26511, - "ap-southeast-2": 1.38599, - "ap-southeast-3": 1.26511, - "ca-central-1": 1.065, - "eu-central-1": 1.22343, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.26511, + "ap-southeast-3": 0.0, + "ca-central-1": 0.9733, + "eu-central-1": 0.0, "eu-north-1": 1.00702, "eu-south-1": 1.10633, + "eu-south-2": 1.15671, "eu-west-1": 1.15671, "eu-west-2": 1.21171, - "eu-west-3": 1.10668, - "sa-east-1": 1.68193, + "eu-west-3": 1.21171, + "sa-east-1": 0.0, "us-east-1": 0.97329, "us-east-2": 0.88993, - "us-gov-east-1": 1.15671, + "us-gov-east-1": 1.05668, "us-gov-west-1": 1.15671, - "us-west-1": 1.14005, + "us-west-1": 0.0, "us-west-2": 0.88993 }, "x2iedn.metal": { + "af-south-1": 38.221, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 38.807, "ap-northeast-3": 38.809, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 27.649, "ap-southeast-1": 38.807, - "ap-southeast-2": 38.807, - "ap-southeast-3": 0.0, - "ca-central-1": 29.469, + "ap-southeast-2": 0.0, + "ap-southeast-3": 38.807, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 30.548, - "eu-south-1": 33.726, - "eu-west-1": 32.137, + "eu-south-1": 0.0, + "eu-south-2": 32.137, + "eu-west-1": 0.0, "eu-west-2": 0.0, "eu-west-3": 33.737, "sa-east-1": 52.145, - "us-east-1": 26.801, + "us-east-1": 0.0, "us-east-2": 26.801, - "us-gov-east-1": 32.137, + "us-gov-east-1": 0.0, "us-gov-west-1": 32.137, "us-west-1": 0.0, - "us-west-2": 26.801 + "us-west-2": 0.0 }, "x2iedn.2xlarge": { + "af-south-1": 2.7441, "ap-northeast-1": 2.54263, "ap-northeast-2": 2.78439, "ap-northeast-3": 2.54275, @@ -84398,118 +95870,128 @@ "ap-southeast-1": 2.78439, "ap-southeast-2": 0.0, "ap-southeast-3": 2.54263, - "ca-central-1": 0.0, + "ca-central-1": 2.1424, "eu-central-1": 0.0, - "eu-north-1": 2.02644, + "eu-north-1": 0.0, "eu-south-1": 2.43507, - "eu-west-1": 2.32583, + "eu-south-2": 0.0, + "eu-west-1": 2.12575, "eu-west-2": 2.43583, - "eu-west-3": 2.43583, + "eu-west-3": 0.0, "sa-east-1": 0.0, - "us-east-1": 1.79225, + "us-east-1": 1.95898, "us-east-2": 0.0, "us-gov-east-1": 2.32583, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.32583, "us-west-1": 2.2925, "us-west-2": 1.95898 }, "x2iedn.4xlarge": { + "af-south-1": 4.887, "ap-northeast-1": 0.0, "ap-northeast-2": 5.44378, - "ap-northeast-3": 5.44405, - "ap-south-1": 3.5655, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 5.44378, "ap-southeast-3": 5.44378, - "ca-central-1": 0.0, + "ca-central-1": 4.1598, "eu-central-1": 0.0, "eu-north-1": 3.92788, - "eu-south-1": 4.74514, - "eu-west-1": 0.0, + "eu-south-1": 4.32513, + "eu-south-2": 0.0, + "eu-west-1": 4.1265, "eu-west-2": 4.74665, - "eu-west-3": 4.3265, + "eu-west-3": 4.74665, "sa-east-1": 0.0, "us-east-1": 3.79295, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 4.1265, "us-west-1": 4.46, - "us-west-2": 3.79295 + "us-west-2": 3.4595 }, "x2iedn.8xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 0.0, - "ap-northeast-2": 10.76255, + "ap-northeast-2": 9.7955, "ap-northeast-3": 10.7631, - "ap-south-1": 7.6941, - "ap-south-2": 7.006, + "ap-south-1": 7.006, + "ap-south-2": 0.0, "ap-southeast-1": 10.76255, "ap-southeast-2": 10.76255, "ap-southeast-3": 9.7955, - "ca-central-1": 8.1946, - "eu-central-1": 0.0, + "ca-central-1": 0.0, + "eu-central-1": 9.462, "eu-north-1": 7.73075, "eu-south-1": 9.36528, + "eu-south-2": 8.9283, "eu-west-1": 0.0, - "eu-west-2": 0.0, + "eu-west-2": 8.528, "eu-west-3": 8.528, "sa-east-1": 13.13, "us-east-1": 6.794, - "us-east-2": 0.0, + "us-east-2": 7.4609, "us-gov-east-1": 8.128, "us-gov-west-1": 8.128, - "us-west-1": 9.662, - "us-west-2": 7.4609 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "x2iedn.16xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "af-south-1": 0.0, + "ap-northeast-1": 21.4001, + "ap-northeast-2": 21.4001, "ap-northeast-3": 21.4012, "ap-south-1": 0.0, "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 19.466, - "ap-southeast-3": 0.0, + "ap-southeast-2": 21.4001, + "ap-southeast-3": 19.466, "ca-central-1": 0.0, "eu-central-1": 20.6664, - "eu-north-1": 0.0, - "eu-south-1": 0.0, - "eu-west-1": 16.131, + "eu-north-1": 16.85765, + "eu-south-1": 16.9255, + "eu-south-2": 16.131, + "eu-west-1": 17.7316, "eu-west-2": 16.931, "eu-west-3": 0.0, - "sa-east-1": 0.0, + "sa-east-1": 26.135, "us-east-1": 0.0, - "us-east-2": 14.7968, + "us-east-2": 13.463, "us-gov-east-1": 17.7316, - "us-gov-west-1": 0.0, + "us-gov-west-1": 17.7316, "us-west-1": 17.465, - "us-west-2": 14.7968 + "us-west-2": 0.0 }, "x2iedn.24xlarge": { + "af-south-1": 31.5542, "ap-northeast-1": 0.0, "ap-northeast-2": 32.03765, "ap-northeast-3": 29.138, - "ap-south-1": 0.0, - "ap-south-2": 20.768, + "ap-south-1": 20.768, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 0.0, "ca-central-1": 0.0, - "eu-central-1": 30.9371, + "eu-central-1": 0.0, "eu-north-1": 25.22398, "eu-south-1": 27.84583, - "eu-west-1": 26.5349, + "eu-south-2": 24.134, + "eu-west-1": 24.134, "eu-west-2": 25.334, "eu-west-3": 0.0, - "sa-east-1": 39.14, - "us-east-1": 20.132, - "us-east-2": 22.1327, - "us-gov-east-1": 0.0, + "sa-east-1": 43.0415, + "us-east-1": 22.1327, + "us-east-2": 20.132, + "us-gov-east-1": 26.5349, "us-gov-west-1": 26.5349, "us-west-1": 28.736, "us-west-2": 20.132 }, "x2iedn.32xlarge": { + "af-south-1": 38.221, "ap-northeast-1": 38.807, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, @@ -84522,43 +96004,44 @@ "eu-central-1": 37.473, "eu-north-1": 0.0, "eu-south-1": 33.726, - "eu-west-1": 0.0, - "eu-west-2": 33.737, + "eu-south-2": 32.137, + "eu-west-1": 32.137, + "eu-west-2": 0.0, "eu-west-3": 33.737, "sa-east-1": 52.145, "us-east-1": 26.801, "us-east-2": 0.0, "us-gov-east-1": 32.137, - "us-gov-west-1": 32.137, + "us-gov-west-1": 0.0, "us-west-1": 34.805, - "us-west-2": 0.0 + "us-west-2": 26.801 }, "x2iezn.metal": { - "ap-northeast-1": 0.0, - "eu-west-1": 0.0, + "ap-northeast-1": 14.633, + "eu-west-1": 12.125, "us-east-1": 10.133, - "us-west-2": 0.0 + "us-west-2": 10.133 }, "x2iezn.2xlarge": { - "ap-northeast-1": 0.0, - "eu-west-1": 2.125, + "ap-northeast-1": 2.543, + "eu-west-1": 0.0, "us-east-1": 1.9598, "us-west-2": 1.9598 }, "x2iezn.4xlarge": { - "ap-northeast-1": 0.0, - "eu-west-1": 0.0, - "us-east-1": 0.0, + "ap-northeast-1": 5.4446, + "eu-west-1": 4.125, + "us-east-1": 3.7946, "us-west-2": 3.461 }, "x2iezn.6xlarge": { "ap-northeast-1": 0.0, - "eu-west-1": 6.725, + "eu-west-1": 6.125, "us-east-1": 5.6294, "us-west-2": 5.129 }, "x2iezn.8xlarge": { - "ap-northeast-1": 9.797, + "ap-northeast-1": 10.7642, "eu-west-1": 8.925, "us-east-1": 0.0, "us-west-2": 6.797 @@ -84572,30 +96055,30 @@ "z1d.large": { "ap-northeast-1": 0.297, "ap-northeast-2": 0.295, - "ap-south-1": 0.252, + "ap-south-1": 0.264, "ap-southeast-1": 0.0, "ap-southeast-2": 0.296, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 0.277, "eu-west-2": 0.289, - "us-east-1": 0.253, + "us-east-1": 0.0, "us-east-2": 0.253, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 0.253 }, "z1d.xlarge": { "ap-northeast-1": 0.538, - "ap-northeast-2": 0.533, + "ap-northeast-2": 0.0, "ap-south-1": 0.472, - "ap-southeast-1": 0.508, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.535, + "ap-southeast-2": 0.508, "eu-central-1": 0.0, "eu-west-1": 0.472, "eu-west-2": 0.0, "us-east-1": 0.0, "us-east-2": 0.451, "us-west-1": 0.504, - "us-west-2": 0.451 + "us-west-2": 0.0 }, "z1d.metal": { "ap-northeast-1": 0.0, @@ -84603,16 +96086,16 @@ "ap-south-1": 4.829, "ap-southeast-1": 0.0, "ap-southeast-2": 5.549, - "eu-central-1": 0.0, + "eu-central-1": 5.525, "eu-west-1": 5.117, "eu-west-2": 5.398, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-west-1": 5.189, + "us-east-1": 4.589, + "us-east-2": 4.589, + "us-west-1": 0.0, "us-west-2": 4.589 }, "z1d.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.087, "ap-northeast-2": 1.079, "ap-south-1": 0.0, "ap-southeast-1": 1.083, @@ -84621,43 +96104,43 @@ "eu-west-1": 1.007, "eu-west-2": 0.0, "us-east-1": 0.869, - "us-east-2": 0.869, - "us-west-1": 0.0, + "us-east-2": 0.0, + "us-west-1": 1.02, "us-west-2": 0.869 }, "z1d.3xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-2": 1.475, "ap-south-1": 1.301, "ap-southeast-1": 1.481, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.481, "eu-central-1": 1.556, - "eu-west-1": 1.448, - "eu-west-2": 1.443, + "eu-west-1": 1.373, + "eu-west-2": 0.0, "us-east-1": 1.241, "us-east-2": 1.308, "us-west-1": 0.0, - "us-west-2": 1.241 + "us-west-2": 1.308 }, "z1d.6xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 2.849, + "ap-northeast-2": 2.987, "ap-south-1": 0.0, "ap-southeast-1": 2.837, - "ap-southeast-2": 0.0, - "eu-central-1": 2.825, - "eu-west-1": 2.771, - "eu-west-2": 2.92, - "us-east-1": 0.0, - "us-east-2": 2.357, - "us-west-1": 2.657, - "us-west-2": 2.491 + "ap-southeast-2": 2.837, + "eu-central-1": 2.987, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "us-east-1": 2.491, + "us-east-2": 0.0, + "us-west-1": 0.0, + "us-west-2": 0.0 }, "z1d.12xlarge": { "ap-northeast-1": 5.573, "ap-northeast-2": 5.525, "ap-south-1": 4.829, - "ap-southeast-1": 0.0, + "ap-southeast-1": 5.549, "ap-southeast-2": 5.549, "eu-central-1": 5.525, "eu-west-1": 0.0, @@ -85184,136 +96667,136 @@ "us-west-2": 0.52 }, "c3.large": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.12672, + "ap-northeast-1": 0.092, + "ap-northeast-2": 0.21872, "ap-southeast-1": 0.132, - "ap-southeast-2": 0.132, + "ap-southeast-2": 0.0, "eu-central-1": 0.129, "eu-west-1": 0.092, - "sa-east-1": 0.163, + "sa-east-1": 0.0, "us-east-1": 0.105, - "us-gov-west-1": 0.209, + "us-gov-west-1": 0.126, "us-west-1": 0.092, "us-west-2": 0.092 }, "c3.xlarge": { "ap-northeast-1": 0.184, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.25245, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.184, + "ap-southeast-2": 0.265, "eu-central-1": 0.258, - "eu-west-1": 0.184, + "eu-west-1": 0.239, "sa-east-1": 0.0, "us-east-1": 0.21, "us-gov-west-1": 0.252, "us-west-1": 0.184, - "us-west-2": 0.21 + "us-west-2": 0.184 }, "c3.2xlarge": { "ap-northeast-1": 0.511, - "ap-northeast-2": 0.50589, + "ap-northeast-2": 0.828, "ap-southeast-1": 0.529, - "ap-southeast-2": 0.529, - "eu-central-1": 0.516, - "eu-west-1": 0.752, - "sa-east-1": 0.368, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.368, + "sa-east-1": 0.65, "us-east-1": 0.42, "us-gov-west-1": 0.0, - "us-west-1": 0.368, - "us-west-2": 0.42 + "us-west-1": 0.478, + "us-west-2": 0.368 }, "c3.4xlarge": { "ap-northeast-1": 1.021, "ap-northeast-2": 1.655, - "ap-southeast-1": 0.736, + "ap-southeast-1": 1.058, "ap-southeast-2": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.956, - "sa-east-1": 0.736, - "us-east-1": 0.736, + "sa-east-1": 1.3, + "us-east-1": 0.84, "us-gov-west-1": 1.008, - "us-west-1": 0.736, + "us-west-1": 0.956, "us-west-2": 0.84 }, "c3.8xlarge": { - "ap-northeast-1": 1.472, + "ap-northeast-1": 2.043, "ap-northeast-2": 0.0, - "ap-southeast-1": 1.472, + "ap-southeast-1": 2.117, "ap-southeast-2": 1.472, - "eu-central-1": 3.392, - "eu-west-1": 1.912, + "eu-central-1": 0.0, + "eu-west-1": 1.472, "sa-east-1": 2.6, - "us-east-1": 1.68, + "us-east-1": 0.0, "us-gov-west-1": 3.344, "us-west-1": 1.912, - "us-west-2": 1.68 + "us-west-2": 1.472 }, "c4.large": { "ap-northeast-1": 0.126, "ap-northeast-2": 0.0, "ap-northeast-3": 0.092, "ap-south-1": 0.092, - "ap-southeast-1": 0.115, - "ap-southeast-2": 0.13, + "ap-southeast-1": 0.219, + "ap-southeast-2": 0.092, "ca-central-1": 0.092, "eu-central-1": 0.092, "eu-west-1": 0.113, "eu-west-2": 0.0, "sa-east-1": 0.092, "us-east-1": 0.1, - "us-east-2": 0.1, + "us-east-2": 0.0, "us-gov-west-1": 0.092, "us-west-1": 0.124, "us-west-2": 0.092 }, "c4.xlarge": { - "ap-northeast-1": 0.184, - "ap-northeast-2": 0.227, - "ap-northeast-3": 0.184, + "ap-northeast-1": 0.436, + "ap-northeast-2": 0.184, + "ap-northeast-3": 0.252, "ap-south-1": 0.2, "ap-southeast-1": 0.184, "ap-southeast-2": 0.0, "ca-central-1": 0.0, "eu-central-1": 0.184, "eu-west-1": 0.226, - "eu-west-2": 0.237, - "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 0.184, - "us-gov-west-1": 0.184, + "eu-west-2": 0.0, + "sa-east-1": 0.184, + "us-east-1": 0.383, + "us-east-2": 0.0, + "us-gov-west-1": 0.423, "us-west-1": 0.249, "us-west-2": 0.199 }, "c4.2xlarge": { "ap-northeast-1": 0.504, - "ap-northeast-2": 0.822, + "ap-northeast-2": 0.454, "ap-northeast-3": 0.504, - "ap-south-1": 0.368, - "ap-southeast-1": 0.876, - "ap-southeast-2": 0.0, + "ap-south-1": 0.44, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.368, "ca-central-1": 0.0, "eu-central-1": 0.454, "eu-west-1": 0.453, "eu-west-2": 0.368, - "sa-east-1": 0.68, - "us-east-1": 0.398, + "sa-east-1": 0.368, + "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-west-1": 0.479, "us-west-1": 0.0, "us-west-2": 0.398 }, "c4.4xlarge": { - "ap-northeast-1": 0.736, + "ap-northeast-1": 1.008, "ap-northeast-2": 0.907, - "ap-northeast-3": 0.736, - "ap-south-1": 0.0, + "ap-northeast-3": 1.008, + "ap-south-1": 0.736, "ap-southeast-1": 0.924, "ap-southeast-2": 0.736, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.641, "eu-west-2": 0.736, - "sa-east-1": 0.0, + "sa-east-1": 1.235, "us-east-1": 0.736, "us-east-2": 0.736, "us-gov-west-1": 0.958, @@ -85322,9 +96805,9 @@ }, "c4.8xlarge": { "ap-northeast-1": 2.016, - "ap-northeast-2": 0.0, - "ap-northeast-3": 1.656, - "ap-south-1": 1.656, + "ap-northeast-2": 1.656, + "ap-northeast-3": 0.0, + "ap-south-1": 1.6, "ap-southeast-1": 1.848, "ap-southeast-2": 1.656, "ca-central-1": 1.75, @@ -85340,25 +96823,26 @@ }, "c5.large": { "af-south-1": 0.092, - "ap-east-1": 0.092, - "ap-northeast-1": 0.092, + "ap-east-1": 0.115, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.096, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.107, "ap-south-1": 0.09, "ap-south-2": 0.0, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, - "ap-southeast-3": 0.196, + "ap-southeast-3": 0.092, "ap-southeast-4": 0.092, "ca-central-1": 0.093, - "eu-central-1": 0.195, + "ca-west-1": 0.092, + "eu-central-1": 0.097, "eu-central-2": 0.113, - "eu-north-1": 0.091, + "eu-north-1": 0.092, "eu-south-1": 0.199, - "eu-south-2": 0.102, + "eu-south-2": 0.0, "eu-west-1": 0.092, "eu-west-2": 0.0, - "eu-west-3": 0.092, + "eu-west-3": 0.101, "il-central-1": 0.092, "me-central-1": 0.092, "me-south-1": 0.106, @@ -85366,74 +96850,76 @@ "us-east-1": 0.092, "us-east-2": 0.085, "us-gov-east-1": 0.102, - "us-gov-west-1": 0.108, - "us-west-1": 0.0, - "us-west-2": 0.085, + "us-gov-west-1": 0.102, + "us-west-1": 0.205, + "us-west-2": 0.09, "us-west-2-lax-1": 0.194 }, "c5.xlarge": { - "af-south-1": 0.242, - "ap-east-1": 0.216, + "af-south-1": 0.228, + "ap-east-1": 0.0, "ap-northeast-1": 0.214, "ap-northeast-2": 0.184, - "ap-northeast-3": 0.214, - "ap-south-1": 0.181, + "ap-northeast-3": 0.0, + "ap-south-1": 0.184, "ap-south-2": 0.354, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.194, + "ap-southeast-3": 0.184, + "ap-southeast-4": 0.184, + "ca-central-1": 0.184, + "ca-west-1": 0.37, + "eu-central-1": 0.0, "eu-central-2": 0.184, - "eu-north-1": 0.366, + "eu-north-1": 0.182, "eu-south-1": 0.202, - "eu-south-2": 0.0, + "eu-south-2": 0.184, "eu-west-1": 0.184, "eu-west-2": 0.184, - "eu-west-3": 0.215, + "eu-west-3": 0.202, "il-central-1": 0.202, - "me-central-1": 0.184, + "me-central-1": 0.395, "me-south-1": 0.184, - "sa-east-1": 0.28, + "sa-east-1": 0.262, "us-east-1": 0.184, "us-east-2": 0.0, "us-gov-east-1": 0.216, "us-gov-west-1": 0.184, - "us-west-1": 0.212, + "us-west-1": 0.184, "us-west-2": 0.184, - "us-west-2-lax-1": 0.184 + "us-west-2-lax-1": 0.388 }, "c5.metal": { "af-south-1": 4.416, "ap-east-1": 5.184, "ap-northeast-1": 5.136, - "ap-northeast-2": 9.024, - "ap-northeast-3": 4.416, + "ap-northeast-2": 4.608, + "ap-northeast-3": 5.136, "ap-south-1": 4.08, - "ap-south-2": 8.496, + "ap-south-2": 0.0, "ap-southeast-1": 4.704, - "ap-southeast-2": 5.328, - "ap-southeast-3": 4.416, - "ap-southeast-4": 0.0, + "ap-southeast-2": 9.744, + "ap-southeast-3": 4.704, + "ap-southeast-4": 9.744, "ca-central-1": 4.416, + "ca-west-1": 4.416, "eu-central-1": 4.656, "eu-central-2": 0.0, "eu-north-1": 4.368, "eu-south-1": 4.416, "eu-south-2": 4.416, - "eu-west-1": 4.416, + "eu-west-1": 4.608, "eu-west-2": 4.848, "eu-west-3": 4.848, "il-central-1": 4.416, "me-central-1": 4.416, "me-south-1": 4.416, - "sa-east-1": 4.416, - "us-east-1": 0.0, + "sa-east-1": 6.288, + "us-east-1": 4.08, "us-east-2": 4.416, - "us-gov-east-1": 4.896, + "us-gov-east-1": 4.416, "us-gov-west-1": 4.416, - "us-west-1": 5.088, + "us-west-1": 9.504, "us-west-2": 4.416, "us-west-2-lax-1": 4.416 }, @@ -85443,65 +96929,67 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.368, "ap-northeast-3": 0.428, - "ap-south-1": 0.34, + "ap-south-1": 0.708, "ap-south-2": 0.368, "ap-southeast-1": 0.392, - "ap-southeast-2": 0.444, + "ap-southeast-2": 0.471, "ap-southeast-3": 0.368, "ap-southeast-4": 0.368, - "ca-central-1": 0.372, - "eu-central-1": 0.368, + "ca-central-1": 0.368, + "ca-west-1": 0.368, + "eu-central-1": 0.0, "eu-central-2": 0.368, "eu-north-1": 0.364, "eu-south-1": 0.368, - "eu-south-2": 0.368, - "eu-west-1": 0.384, + "eu-south-2": 0.0, + "eu-west-1": 0.368, "eu-west-2": 0.404, "eu-west-3": 0.404, - "il-central-1": 0.0, - "me-central-1": 0.0, + "il-central-1": 0.771, + "me-central-1": 0.368, "me-south-1": 0.368, "sa-east-1": 0.524, - "us-east-1": 0.34, - "us-east-2": 0.368, + "us-east-1": 0.368, + "us-east-2": 0.361, "us-gov-east-1": 0.408, - "us-gov-west-1": 0.408, - "us-west-1": 0.0, - "us-west-2": 0.708, + "us-gov-west-1": 0.0, + "us-west-1": 0.424, + "us-west-2": 0.368, "us-west-2-lax-1": 0.776 }, "c5.4xlarge": { "af-south-1": 0.967, - "ap-east-1": 0.864, + "ap-east-1": 0.919, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.736, + "ap-northeast-2": 0.768, "ap-northeast-3": 0.736, "ap-south-1": 0.736, - "ap-south-2": 0.721, + "ap-south-2": 1.416, "ap-southeast-1": 0.784, "ap-southeast-2": 0.888, "ap-southeast-3": 0.0, - "ap-southeast-4": 0.736, + "ap-southeast-4": 0.0, "ca-central-1": 0.744, + "ca-west-1": 0.0, "eu-central-1": 0.736, "eu-central-2": 0.905, - "eu-north-1": 1.464, - "eu-south-1": 0.856, + "eu-north-1": 0.736, + "eu-south-1": 1.592, "eu-south-2": 0.736, "eu-west-1": 0.0, - "eu-west-2": 0.808, + "eu-west-2": 0.0, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.855, "me-central-1": 1.581, "me-south-1": 0.845, "sa-east-1": 0.736, "us-east-1": 0.68, "us-east-2": 0.736, - "us-gov-east-1": 0.736, + "us-gov-east-1": 1.552, "us-gov-west-1": 0.816, "us-west-1": 0.903, "us-west-2": 0.68, - "us-west-2-lax-1": 0.736 + "us-west-2-lax-1": 1.552 }, "c5.9xlarge": { "af-south-1": 1.656, @@ -85511,112 +96999,116 @@ "ap-northeast-3": 1.656, "ap-south-1": 0.0, "ap-south-2": 1.656, - "ap-southeast-1": 0.0, - "ap-southeast-2": 2.119, + "ap-southeast-1": 1.764, + "ap-southeast-2": 1.998, "ap-southeast-3": 1.656, "ap-southeast-4": 1.656, - "ca-central-1": 1.656, - "eu-central-1": 1.656, + "ca-central-1": 1.674, + "ca-west-1": 0.0, + "eu-central-1": 1.861, "eu-central-2": 1.656, - "eu-north-1": 1.638, + "eu-north-1": 1.656, "eu-south-1": 1.656, "eu-south-2": 3.384, "eu-west-1": 1.656, "eu-west-2": 1.656, "eu-west-3": 1.818, "il-central-1": 1.814, - "me-central-1": 1.656, - "me-south-1": 1.656, - "sa-east-1": 2.358, + "me-central-1": 0.0, + "me-south-1": 1.901, + "sa-east-1": 4.014, "us-east-1": 1.53, "us-east-2": 1.622, "us-gov-east-1": 3.492, "us-gov-west-1": 1.656, - "us-west-1": 1.656, + "us-west-1": 1.908, "us-west-2": 1.656, "us-west-2-lax-1": 3.492 }, "c5.12xlarge": { - "af-south-1": 2.736, + "af-south-1": 2.208, "ap-east-1": 2.208, - "ap-northeast-1": 2.568, + "ap-northeast-1": 2.744, "ap-northeast-2": 2.453, "ap-northeast-3": 0.0, "ap-south-1": 2.171, "ap-south-2": 2.208, "ap-southeast-1": 2.352, - "ap-southeast-2": 2.664, + "ap-southeast-2": 2.208, "ap-southeast-3": 2.208, - "ap-southeast-4": 4.872, + "ap-southeast-4": 2.208, "ca-central-1": 2.232, - "eu-central-1": 4.689, - "eu-central-2": 2.208, - "eu-north-1": 2.184, + "ca-west-1": 2.208, + "eu-central-1": 2.208, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 2.569, - "eu-south-2": 2.208, + "eu-south-2": 2.304, "eu-west-1": 2.208, "eu-west-2": 2.208, "eu-west-3": 0.0, "il-central-1": 2.419, "me-central-1": 0.0, "me-south-1": 2.208, - "sa-east-1": 0.0, + "sa-east-1": 5.565, "us-east-1": 2.208, - "us-east-2": 2.208, - "us-gov-east-1": 4.803, + "us-east-2": 2.04, + "us-gov-east-1": 2.448, "us-gov-west-1": 2.448, "us-west-1": 2.544, - "us-west-2": 2.04, + "us-west-2": 2.208, "us-west-2-lax-1": 2.208 }, "c5.18xlarge": { - "af-south-1": 3.312, + "af-south-1": 4.104, "ap-east-1": 3.312, "ap-northeast-1": 3.312, - "ap-northeast-2": 3.456, - "ap-northeast-3": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 3.312, "ap-south-1": 3.312, "ap-south-2": 6.372, "ap-southeast-1": 3.528, "ap-southeast-2": 3.996, - "ap-southeast-3": 3.312, - "ap-southeast-4": 7.308, - "ca-central-1": 3.348, - "eu-central-1": 0.0, + "ap-southeast-3": 6.84, + "ap-southeast-4": 3.312, + "ca-central-1": 0.0, + "ca-west-1": 3.312, + "eu-central-1": 3.492, "eu-central-2": 3.312, - "eu-north-1": 3.312, - "eu-south-1": 3.636, + "eu-north-1": 0.0, + "eu-south-1": 3.312, "eu-south-2": 3.312, "eu-west-1": 3.312, - "eu-west-2": 3.636, + "eu-west-2": 3.312, "eu-west-3": 3.312, "il-central-1": 3.312, "me-central-1": 0.0, "me-south-1": 3.802, "sa-east-1": 4.716, - "us-east-1": 3.06, + "us-east-1": 3.312, "us-east-2": 3.312, "us-gov-east-1": 3.672, "us-gov-west-1": 3.672, - "us-west-1": 0.0, - "us-west-2": 3.312, + "us-west-1": 3.816, + "us-west-2": 6.372, "us-west-2-lax-1": 6.984 }, "c5.24xlarge": { - "af-south-1": 5.472, + "af-south-1": 9.888, "ap-east-1": 4.416, "ap-northeast-1": 5.136, - "ap-northeast-2": 0.0, + "ap-northeast-2": 4.416, "ap-northeast-3": 5.136, - "ap-south-1": 8.759, + "ap-south-1": 4.343, "ap-south-2": 4.08, - "ap-southeast-1": 5.006, - "ap-southeast-2": 4.416, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.328, "ap-southeast-3": 4.416, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 4.656, - "eu-central-2": 0.0, + "ap-southeast-4": 9.744, + "ca-central-1": 4.749, + "ca-west-1": 8.88, + "eu-central-1": 4.416, + "eu-central-2": 4.416, "eu-north-1": 4.416, "eu-south-1": 4.848, "eu-south-2": 4.416, @@ -85624,15 +97116,15 @@ "eu-west-2": 0.0, "eu-west-3": 4.416, "il-central-1": 4.838, - "me-central-1": 9.485, + "me-central-1": 5.069, "me-south-1": 0.0, - "sa-east-1": 6.288, + "sa-east-1": 6.715, "us-east-1": 4.416, - "us-east-2": 0.0, - "us-gov-east-1": 5.191, + "us-east-2": 4.416, + "us-gov-east-1": 4.896, "us-gov-west-1": 0.0, "us-west-1": 4.416, - "us-west-2": 4.08, + "us-west-2": 4.416, "us-west-2-lax-1": 4.416 }, "c5a.large": { @@ -85938,30 +97430,30 @@ "ap-northeast-2": 0.11, "ap-northeast-3": 0.092, "ap-south-1": 0.092, - "ap-south-2": 0.092, + "ap-south-2": 0.0, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, - "ap-southeast-3": 0.119, - "ap-southeast-4": 0.092, - "ca-central-1": 0.106, + "ap-southeast-3": 0.211, + "ap-southeast-4": 0.134, + "ca-central-1": 0.092, "eu-central-1": 0.0, - "eu-central-2": 0.214, + "eu-central-2": 0.092, "eu-north-1": 0.092, "eu-south-1": 0.092, "eu-south-2": 0.092, "eu-west-1": 0.116, - "eu-west-2": 0.0, + "eu-west-2": 0.092, "eu-west-3": 0.092, "il-central-1": 0.121, "me-central-1": 0.092, "me-south-1": 0.092, "sa-east-1": 0.092, - "us-east-1": 0.092, + "us-east-1": 0.188, "us-east-2": 0.096, "us-gov-east-1": 0.092, - "us-gov-west-1": 0.092, - "us-west-1": 0.12, - "us-west-2": 0.096 + "us-gov-west-1": 0.116, + "us-west-1": 0.212, + "us-west-2": 0.092 }, "c5d.xlarge": { "af-south-1": 0.184, @@ -85970,25 +97462,25 @@ "ap-northeast-2": 0.404, "ap-northeast-3": 0.184, "ap-south-1": 0.184, - "ap-south-2": 0.382, + "ap-south-2": 0.394, "ap-southeast-1": 0.0, "ap-southeast-2": 0.184, "ap-southeast-3": 0.184, - "ap-southeast-4": 0.451, + "ap-southeast-4": 0.184, "ca-central-1": 0.212, - "eu-central-1": 0.222, - "eu-central-2": 0.184, + "eu-central-1": 0.184, + "eu-central-2": 0.244, "eu-north-1": 0.184, "eu-south-1": 0.184, "eu-south-2": 0.184, - "eu-west-1": 0.416, + "eu-west-1": 0.402, "eu-west-2": 0.23, "eu-west-3": 0.184, - "il-central-1": 0.229, - "me-central-1": 0.0, + "il-central-1": 0.0, + "me-central-1": 0.254, "me-south-1": 0.184, "sa-east-1": 0.184, - "us-east-1": 0.0, + "us-east-1": 0.192, "us-east-2": 0.184, "us-gov-east-1": 0.184, "us-gov-west-1": 0.232, @@ -86001,10 +97493,10 @@ "ap-northeast-2": 9.696, "ap-northeast-3": 4.416, "ap-south-1": 4.416, - "ap-south-2": 9.168, + "ap-south-2": 4.752, "ap-southeast-1": 9.792, "ap-southeast-2": 10.464, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.416, "ap-southeast-4": 4.416, "ca-central-1": 4.416, "eu-central-1": 9.744, @@ -86013,9 +97505,9 @@ "eu-south-1": 4.416, "eu-south-2": 4.416, "eu-west-1": 9.648, - "eu-west-2": 9.936, - "il-central-1": 0.0, - "me-central-1": 0.0, + "eu-west-2": 4.416, + "il-central-1": 9.91, + "me-central-1": 10.171, "sa-east-1": 11.568, "us-east-1": 9.024, "us-east-2": 9.024, @@ -86035,23 +97527,23 @@ "ap-southeast-2": 0.368, "ap-southeast-3": 0.843, "ap-southeast-4": 0.368, - "ca-central-1": 0.368, + "ca-central-1": 0.424, "eu-central-1": 0.812, "eu-central-2": 0.368, "eu-north-1": 0.368, "eu-south-1": 0.368, - "eu-south-2": 0.804, + "eu-south-2": 0.0, "eu-west-1": 0.436, "eu-west-2": 0.46, "eu-west-3": 0.368, - "il-central-1": 0.0, + "il-central-1": 0.485, "me-central-1": 0.0, "me-south-1": 0.368, "sa-east-1": 0.368, - "us-east-1": 0.384, - "us-east-2": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.407, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.492, "us-west-1": 0.879, "us-west-2": 0.0 }, @@ -86067,12 +97559,12 @@ "ap-southeast-2": 0.736, "ap-southeast-3": 0.896, "ap-southeast-4": 0.736, - "ca-central-1": 0.736, + "ca-central-1": 0.848, "eu-central-1": 0.888, "eu-central-2": 0.736, "eu-north-1": 0.736, "eu-south-1": 0.736, - "eu-south-2": 0.736, + "eu-south-2": 0.0, "eu-west-1": 0.929, "eu-west-2": 0.92, "eu-west-3": 0.736, @@ -86080,11 +97572,11 @@ "me-central-1": 0.736, "me-south-1": 0.736, "sa-east-1": 0.736, - "us-east-1": 1.55, - "us-east-2": 0.736, + "us-east-1": 0.768, + "us-east-2": 0.814, "us-gov-east-1": 0.736, "us-gov-west-1": 0.928, - "us-west-1": 0.96, + "us-west-1": 0.736, "us-west-2": 0.0 }, "c5d.9xlarge": { @@ -86094,19 +97586,19 @@ "ap-northeast-2": 1.98, "ap-northeast-3": 1.656, "ap-south-1": 1.656, - "ap-south-2": 3.545, + "ap-south-2": 1.889, "ap-southeast-1": 0.0, "ap-southeast-2": 1.656, - "ap-southeast-3": 0.0, - "ap-southeast-4": 1.656, + "ap-southeast-3": 1.656, + "ap-southeast-4": 4.06, "ca-central-1": 1.908, - "eu-central-1": 0.0, - "eu-central-2": 1.656, + "eu-central-1": 1.656, + "eu-central-2": 0.0, "eu-north-1": 1.656, "eu-south-1": 1.656, - "eu-south-2": 3.736, + "eu-south-2": 1.656, "eu-west-1": 1.656, - "eu-west-2": 2.07, + "eu-west-2": 1.656, "eu-west-3": 1.656, "il-central-1": 0.0, "me-central-1": 1.656, @@ -86115,7 +97607,7 @@ "us-east-1": 1.656, "us-east-2": 1.728, "us-gov-east-1": 1.656, - "us-gov-west-1": 0.0, + "us-gov-west-1": 1.656, "us-west-1": 1.656, "us-west-2": 1.656 }, @@ -86129,21 +97621,21 @@ "ap-southeast-1": 4.896, "ap-southeast-2": 2.208, "ap-southeast-3": 4.896, - "ap-southeast-4": 3.205, + "ap-southeast-4": 5.413, "ca-central-1": 2.208, "eu-central-1": 4.872, "eu-central-2": 2.208, "eu-north-1": 4.704, "eu-south-1": 2.208, - "eu-south-2": 4.824, + "eu-south-2": 2.773, "eu-west-1": 2.208, - "eu-west-2": 4.968, + "eu-west-2": 2.208, "il-central-1": 2.208, "me-central-1": 2.208, "sa-east-1": 5.784, "us-east-1": 4.512, "us-east-2": 4.512, - "us-gov-west-1": 2.952, + "us-gov-west-1": 4.992, "us-west-1": 5.088, "us-west-2": 4.512 }, @@ -86157,27 +97649,27 @@ "ap-south-2": 0.0, "ap-southeast-1": 4.032, "ap-southeast-2": 3.312, - "ap-southeast-3": 7.344, + "ap-southeast-3": 4.032, "ap-southeast-4": 3.312, - "ca-central-1": 0.0, + "ca-central-1": 3.312, "eu-central-1": 3.312, "eu-central-2": 3.312, "eu-north-1": 3.312, "eu-south-1": 3.312, "eu-south-2": 3.312, - "eu-west-1": 0.0, + "eu-west-1": 3.924, "eu-west-2": 3.312, "eu-west-3": 3.312, "il-central-1": 4.12, "me-central-1": 3.312, "me-south-1": 3.312, "sa-east-1": 3.312, - "us-east-1": 3.456, - "us-east-2": 3.456, + "us-east-1": 3.312, + "us-east-2": 3.312, "us-gov-east-1": 3.312, - "us-gov-west-1": 4.176, - "us-west-1": 0.0, - "us-west-2": 6.768 + "us-gov-west-1": 3.312, + "us-west-1": 7.632, + "us-west-2": 3.456 }, "c5d.24xlarge": { "af-south-1": 4.416, @@ -86185,10 +97677,10 @@ "ap-northeast-2": 9.696, "ap-northeast-3": 4.416, "ap-south-1": 4.416, - "ap-south-2": 0.0, + "ap-south-2": 4.416, "ap-southeast-1": 9.792, "ap-southeast-2": 4.416, - "ap-southeast-3": 4.416, + "ap-southeast-3": 10.115, "ap-southeast-4": 4.416, "ca-central-1": 4.416, "eu-central-1": 9.744, @@ -86197,18 +97689,18 @@ "eu-south-1": 4.416, "eu-south-2": 4.416, "eu-west-1": 5.546, - "eu-west-2": 9.936, - "il-central-1": 5.494, - "me-central-1": 4.416, + "eu-west-2": 10.298, + "il-central-1": 5.823, + "me-central-1": 0.0, "sa-east-1": 11.568, "us-east-1": 9.024, "us-east-2": 9.024, - "us-gov-west-1": 5.568, + "us-gov-west-1": 5.905, "us-west-1": 10.176, "us-west-2": 9.024 }, "c5n.large": { - "af-south-1": 0.092, + "af-south-1": 0.246, "ap-east-1": 0.092, "ap-northeast-1": 0.092, "ap-northeast-2": 0.092, @@ -86238,11 +97730,11 @@ "ap-east-1": 0.184, "ap-northeast-1": 0.184, "ap-northeast-2": 0.184, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.288, "ap-south-1": 0.184, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.447, + "ap-southeast-3": 0.184, "ca-central-1": 0.184, "eu-central-1": 0.184, "eu-north-1": 0.184, @@ -86255,12 +97747,12 @@ "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.276, + "us-gov-west-1": 0.26, "us-west-1": 0.184, "us-west-2": 0.184 }, "c5n.metal": { - "af-south-1": 0.0, + "af-south-1": 3.312, "ap-east-1": 3.312, "ap-northeast-1": 3.312, "ap-northeast-2": 7.704, @@ -86281,7 +97773,7 @@ "us-east-1": 7.2, "us-east-2": 7.2, "us-gov-east-1": 7.992, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.312, "us-west-1": 3.312, "us-west-2": 3.888 }, @@ -86290,11 +97782,11 @@ "ap-east-1": 0.368, "ap-northeast-1": 0.368, "ap-northeast-2": 0.368, - "ap-northeast-3": 0.368, + "ap-northeast-3": 0.0, "ap-south-1": 0.368, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.864, + "ap-southeast-3": 0.526, "ca-central-1": 0.368, "eu-central-1": 0.368, "eu-north-1": 0.368, @@ -86307,20 +97799,20 @@ "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.888, + "us-gov-west-1": 0.52, "us-west-1": 0.368, "us-west-2": 0.368 }, "c5n.4xlarge": { - "af-south-1": 0.736, + "af-south-1": 1.231, "ap-east-1": 0.736, "ap-northeast-1": 0.736, "ap-northeast-2": 0.736, - "ap-northeast-3": 1.889, + "ap-northeast-3": 0.736, "ap-south-1": 0.736, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, - "ap-southeast-3": 1.052, + "ap-southeast-3": 0.992, "ca-central-1": 0.736, "eu-central-1": 0.736, "eu-north-1": 0.736, @@ -86338,7 +97830,7 @@ "us-west-2": 0.736 }, "c5n.9xlarge": { - "af-south-1": 1.656, + "af-south-1": 0.0, "ap-east-1": 1.656, "ap-northeast-1": 1.656, "ap-northeast-2": 1.656, @@ -86392,156 +97884,167 @@ "c6a.large": { "ap-northeast-1": 0.092, "ap-south-1": 0.092, - "ap-southeast-1": 0.09702, - "ap-southeast-2": 0.0, - "eu-central-1": 0.092, - "eu-west-1": 0.092, + "ap-southeast-1": 0.092, + "ap-southeast-2": 0.20189, + "ca-central-1": 0.0837, + "eu-central-1": 0.09603, + "eu-west-1": 0.0, "eu-west-2": 0.092, "sa-east-1": 0.092, - "us-east-1": 0.0, + "us-east-1": 0.1685, "us-east-2": 0.092, "us-west-1": 0.092, "us-west-2": 0.092 }, "c6a.xlarge": { "ap-northeast-1": 0.21186, - "ap-south-1": 0.0, - "ap-southeast-1": 0.0, + "ap-south-1": 0.184, + "ap-southeast-1": 0.184, "ap-southeast-2": 0.0, + "ca-central-1": 0.184, "eu-central-1": 0.184, - "eu-west-1": 0.0, + "eu-west-1": 0.16416, "eu-west-2": 0.184, "sa-east-1": 0.184, - "us-east-1": 0.184, + "us-east-1": 0.3523, "us-east-2": 0.153, - "us-west-1": 0.184, - "us-west-2": 0.337 + "us-west-1": 0.1908, + "us-west-2": 0.3523 }, "c6a.metal": { - "ap-northeast-1": 8.832, - "ap-south-1": 4.488, + "ap-northeast-1": 0.0, + "ap-south-1": 13.32, "ap-southeast-1": 8.832, "ap-southeast-2": 8.832, + "ca-central-1": 8.832, "eu-central-1": 8.832, - "eu-west-1": 8.832, - "eu-west-2": 8.7264, + "eu-west-1": 7.87968, + "eu-west-2": 8.832, "sa-east-1": 8.832, "us-east-1": 0.0, "us-east-2": 8.832, - "us-west-1": 0.0, + "us-west-1": 9.1584, "us-west-2": 16.176 }, "c6a.2xlarge": { "ap-northeast-1": 0.79172, - "ap-south-1": 0.368, - "ap-southeast-1": 0.7208, + "ap-south-1": 0.187, + "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, + "ca-central-1": 0.368, "eu-central-1": 0.38412, "eu-west-1": 0.368, - "eu-west-2": 0.39996, + "eu-west-2": 0.76796, "sa-east-1": 0.0, "us-east-1": 0.674, - "us-east-2": 0.7046, + "us-east-2": 0.368, "us-west-1": 0.41976, "us-west-2": 0.368 }, "c6a.4xlarge": { - "ap-northeast-1": 0.84744, - "ap-south-1": 1.11, + "ap-northeast-1": 0.0, + "ap-south-1": 0.4114, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.736, + "ap-southeast-2": 1.5352, + "ca-central-1": 1.47256, "eu-central-1": 0.736, "eu-west-1": 0.65664, "eu-west-2": 0.79992, - "sa-east-1": 1.03752, + "sa-east-1": 0.9432, "us-east-1": 0.736, "us-east-2": 0.612, "us-west-1": 0.736, "us-west-2": 0.736 }, "c6a.8xlarge": { - "ap-northeast-1": 1.472, + "ap-northeast-1": 1.5408, "ap-south-1": 1.472, - "ap-southeast-1": 1.472, + "ap-southeast-1": 3.02432, "ap-southeast-2": 0.0, + "ca-central-1": 1.472, "eu-central-1": 1.472, "eu-west-1": 1.472, "eu-west-2": 0.0, "sa-east-1": 1.472, - "us-east-1": 1.3464, - "us-east-2": 0.0, - "us-west-1": 1.472, + "us-east-1": 0.0, + "us-east-2": 2.696, + "us-west-1": 1.67904, "us-west-2": 1.472 }, "c6a.12xlarge": { - "ap-northeast-1": 2.208, + "ap-northeast-1": 4.75032, "ap-south-1": 0.0, "ap-southeast-1": 2.208, - "ap-southeast-2": 2.63736, - "eu-central-1": 0.0, - "eu-west-1": 2.208, - "eu-west-2": 2.208, + "ap-southeast-2": 2.3976, + "ca-central-1": 4.2168, + "eu-central-1": 2.208, + "eu-west-1": 4.17792, + "eu-west-2": 2.39976, "sa-east-1": 2.208, "us-east-1": 0.0, "us-east-2": 0.0, - "us-west-1": 2.208, - "us-west-2": 0.0 + "us-west-1": 2.2896, + "us-west-2": 2.208 }, "c6a.16xlarge": { - "ap-northeast-1": 0.0, - "ap-south-1": 2.944, + "ap-northeast-1": 2.944, + "ap-south-1": 0.0, "ap-southeast-1": 2.8224, "ap-southeast-2": 2.944, - "eu-central-1": 2.944, - "eu-west-1": 2.62656, - "eu-west-2": 2.9088, + "ca-central-1": 2.944, + "eu-central-1": 6.01696, + "eu-west-1": 2.944, + "eu-west-2": 2.944, "sa-east-1": 2.944, - "us-east-1": 2.448, - "us-east-2": 5.6368, + "us-east-1": 2.6928, + "us-east-2": 5.392, "us-west-1": 2.944, "us-west-2": 5.392 }, "c6a.24xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 9.0384, "ap-south-1": 4.416, "ap-southeast-1": 4.416, "ap-southeast-2": 9.2112, + "ca-central-1": 4.41936, "eu-central-1": 4.416, - "eu-west-1": 0.0, - "eu-west-2": 4.79952, - "sa-east-1": 4.416, - "us-east-1": 4.416, + "eu-west-1": 4.416, + "eu-west-2": 4.416, + "sa-east-1": 0.0, + "us-east-1": 8.088, "us-east-2": 4.416, - "us-west-1": 0.0, + "us-west-1": 8.9952, "us-west-2": 3.672 }, "c6a.32xlarge": { "ap-northeast-1": 5.888, - "ap-south-1": 5.888, - "ap-southeast-1": 12.09728, - "ap-southeast-2": 6.3936, + "ap-south-1": 0.0, + "ap-southeast-1": 5.6448, + "ap-southeast-2": 0.0, + "ca-central-1": 5.3568, "eu-central-1": 11.4752, - "eu-west-1": 5.888, + "eu-west-1": 0.0, "eu-west-2": 5.888, - "sa-east-1": 5.888, - "us-east-1": 10.784, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 5.888, "us-west-1": 5.888, "us-west-2": 5.888 }, "c6a.48xlarge": { - "ap-northeast-1": 18.0768, + "ap-northeast-1": 8.832, "ap-south-1": 8.832, "ap-southeast-1": 8.832, "ap-southeast-2": 8.832, + "ca-central-1": 8.832, "eu-central-1": 8.832, "eu-west-1": 7.87968, "eu-west-2": 0.0, "sa-east-1": 8.832, "us-east-1": 7.344, "us-east-2": 0.0, - "us-west-1": 8.832, - "us-west-2": 0.0 + "us-west-1": 17.9904, + "us-west-2": 8.832 }, "c6i.large": { "af-south-1": 0.0, @@ -86552,128 +98055,133 @@ "ap-south-1": 0.092, "ap-south-2": 0.092, "ap-southeast-1": 0.092, - "ap-southeast-2": 0.203, + "ap-southeast-2": 0.2141, "ca-central-1": 0.0, + "ca-west-1": 0.093, "eu-central-1": 0.1987, "eu-north-1": 0.183, "eu-south-1": 0.092, "eu-west-1": 0.0912, - "eu-west-2": 0.092, + "eu-west-2": 0.0, "eu-west-3": 0.092, - "il-central-1": 0.09576, - "me-south-1": 0.092, - "sa-east-1": 0.092, + "il-central-1": 0.092, + "me-south-1": 0.1976, + "sa-east-1": 0.0, "us-east-1": 0.0935, - "us-east-2": 0.177, + "us-east-2": 0.092, "us-gov-east-1": 0.092, "us-gov-west-1": 0.092, - "us-west-1": 0.0, + "us-west-1": 0.092, "us-west-2": 0.1855 }, "c6i.xlarge": { "af-south-1": 0.184, - "ap-east-1": 0.216, + "ap-east-1": 0.184, "ap-northeast-1": 0.184, "ap-northeast-2": 0.2112, - "ap-northeast-3": 0.184, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.184, - "ap-southeast-1": 0.0, + "ap-south-2": 0.17, + "ap-southeast-1": 0.184, "ap-southeast-2": 0.406, - "ca-central-1": 0.184, + "ca-central-1": 0.3886, + "ca-west-1": 0.0, "eu-central-1": 0.184, "eu-north-1": 0.182, - "eu-south-1": 0.386, - "eu-west-1": 0.184, + "eu-south-1": 0.184, + "eu-west-1": 0.1824, "eu-west-2": 0.2222, - "eu-west-3": 0.184, + "eu-west-3": 0.386, "il-central-1": 0.184, "me-south-1": 0.0, "sa-east-1": 0.446, - "us-east-1": 0.187, - "us-east-2": 0.0, + "us-east-1": 0.354, + "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.4084, + "us-gov-west-1": 0.2244, "us-west-1": 0.184, "us-west-2": 0.0 }, "c6i.metal": { - "af-south-1": 5.888, - "ap-east-1": 5.888, + "af-south-1": 0.0, + "ap-east-1": 6.912, "ap-northeast-1": 5.888, - "ap-northeast-2": 0.0, + "ap-northeast-2": 5.888, "ap-northeast-3": 6.848, "ap-south-1": 5.888, - "ap-south-2": 11.328, + "ap-south-2": 5.44, "ap-southeast-1": 5.888, "ap-southeast-2": 12.992, - "ca-central-1": 5.888, + "ca-central-1": 11.84, + "ca-west-1": 5.888, "eu-central-1": 5.888, "eu-north-1": 11.712, "eu-south-1": 5.888, "eu-west-1": 5.8368, - "eu-west-2": 5.888, + "eu-west-2": 12.352, "eu-west-3": 5.888, "il-central-1": 12.01664, "me-south-1": 5.888, "sa-east-1": 5.888, "us-east-1": 5.44, - "us-east-2": 11.328, + "us-east-2": 5.44, "us-gov-east-1": 6.528, "us-gov-west-1": 5.888, "us-west-1": 0.0, - "us-west-2": 5.888 + "us-west-2": 5.44 }, "c6i.2xlarge": { - "af-south-1": 0.8696, - "ap-east-1": 0.8432, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.8388, + "af-south-1": 0.0, + "ap-east-1": 0.4752, + "ap-northeast-1": 0.4708, + "ap-northeast-2": 0.368, + "ap-northeast-3": 0.368, "ap-south-1": 0.368, "ap-south-2": 0.368, - "ap-southeast-1": 0.4312, + "ap-southeast-1": 0.76, "ap-southeast-2": 0.0, "ca-central-1": 0.74, - "eu-central-1": 0.368, + "ca-west-1": 0.0, + "eu-central-1": 0.756, "eu-north-1": 0.368, "eu-south-1": 0.368, "eu-west-1": 0.368, - "eu-west-2": 0.4444, + "eu-west-2": 0.404, "eu-west-3": 0.0, - "il-central-1": 0.0, + "il-central-1": 0.78934, "me-south-1": 0.368, - "sa-east-1": 0.368, + "sa-east-1": 0.892, "us-east-1": 0.368, "us-east-2": 0.368, - "us-gov-east-1": 0.368, + "us-gov-east-1": 0.776, "us-gov-west-1": 0.8168, - "us-west-1": 0.424, - "us-west-2": 0.0 + "us-west-1": 0.4664, + "us-west-2": 0.368 }, "c6i.4xlarge": { - "af-south-1": 1.648, + "af-south-1": 0.0, "ap-east-1": 0.736, "ap-northeast-1": 0.856, "ap-northeast-2": 0.0, "ap-northeast-3": 0.736, - "ap-south-1": 0.736, - "ap-south-2": 0.68, - "ap-southeast-1": 0.0, + "ap-south-1": 0.748, + "ap-south-2": 0.0, + "ap-southeast-1": 1.52, "ap-southeast-2": 0.736, "ca-central-1": 0.736, + "ca-west-1": 1.48, "eu-central-1": 0.736, "eu-north-1": 0.736, - "eu-south-1": 1.6248, + "eu-south-1": 0.736, "eu-west-1": 0.7296, "eu-west-2": 0.736, - "eu-west-3": 1.6248, - "il-central-1": 0.76608, - "me-south-1": 1.5808, - "sa-east-1": 0.736, + "eu-west-3": 0.736, + "il-central-1": 0.84269, + "me-south-1": 0.0, + "sa-east-1": 1.8888, "us-east-1": 1.484, "us-east-2": 1.416, - "us-gov-east-1": 1.552, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.736, "us-west-1": 0.0, "us-west-2": 0.736 @@ -86681,59 +98189,61 @@ "c6i.8xlarge": { "af-south-1": 1.472, "ap-east-1": 0.0, - "ap-northeast-1": 1.8832, + "ap-northeast-1": 1.472, "ap-northeast-2": 1.6896, "ap-northeast-3": 3.184, "ap-south-1": 1.472, - "ap-south-2": 1.36, - "ap-southeast-1": 1.472, + "ap-south-2": 1.496, + "ap-southeast-1": 3.04, "ap-southeast-2": 1.776, - "ca-central-1": 2.96, + "ca-central-1": 1.488, + "ca-west-1": 0.0, "eu-central-1": 0.0, - "eu-north-1": 1.472, + "eu-north-1": 1.6016, "eu-south-1": 1.616, "eu-west-1": 1.4592, "eu-west-2": 1.472, "eu-west-3": 3.2496, - "il-central-1": 1.472, - "me-south-1": 3.1616, + "il-central-1": 1.68538, + "me-south-1": 0.0, "sa-east-1": 1.472, - "us-east-1": 2.968, - "us-east-2": 0.0, - "us-gov-east-1": 1.472, + "us-east-1": 0.0, + "us-east-2": 1.472, + "us-gov-east-1": 3.104, "us-gov-west-1": 1.472, - "us-west-1": 3.168, + "us-west-1": 1.8656, "us-west-2": 1.472 }, "c6i.12xlarge": { "af-south-1": 0.0, "ap-east-1": 2.208, "ap-northeast-1": 2.208, - "ap-northeast-2": 2.208, - "ap-northeast-3": 2.208, - "ap-south-1": 2.208, - "ap-south-2": 2.208, - "ap-southeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-northeast-3": 2.8248, + "ap-south-1": 4.248, + "ap-south-2": 4.248, + "ap-southeast-1": 2.5872, "ap-southeast-2": 5.1384, - "ca-central-1": 2.208, - "eu-central-1": 0.0, + "ca-central-1": 4.6632, + "ca-west-1": 2.208, + "eu-central-1": 2.208, "eu-north-1": 4.6104, "eu-south-1": 2.424, "eu-west-1": 2.208, "eu-west-2": 2.424, - "eu-west-3": 4.632, + "eu-west-3": 2.208, "il-central-1": 0.0, - "me-south-1": 4.99584, + "me-south-1": 2.208, "sa-east-1": 5.6664, - "us-east-1": 2.208, + "us-east-1": 4.452, "us-east-2": 2.208, "us-gov-east-1": 2.448, - "us-gov-west-1": 2.208, + "us-gov-west-1": 4.9008, "us-west-1": 2.208, "us-west-2": 2.208 }, "c6i.16xlarge": { - "af-south-1": 2.944, + "af-south-1": 3.648, "ap-east-1": 0.0, "ap-northeast-1": 2.944, "ap-northeast-2": 2.944, @@ -86743,103 +98253,118 @@ "ap-southeast-1": 2.944, "ap-southeast-2": 2.944, "ca-central-1": 2.944, + "ca-west-1": 2.976, "eu-central-1": 2.944, "eu-north-1": 5.856, - "eu-south-1": 6.176, + "eu-south-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 2.944, "eu-west-3": 2.944, "il-central-1": 2.944, - "me-south-1": 2.944, - "sa-east-1": 2.944, + "me-south-1": 6.66112, + "sa-east-1": 7.136, "us-east-1": 2.72, "us-east-2": 2.944, - "us-gov-east-1": 2.944, - "us-gov-west-1": 3.5904, - "us-west-1": 2.944, - "us-west-2": 2.944 + "us-gov-east-1": 0.0, + "us-gov-west-1": 6.208, + "us-west-1": 6.6752, + "us-west-2": 5.936 }, "c6i.24xlarge": { "af-south-1": 4.416, "ap-east-1": 9.6, "ap-northeast-1": 0.0, - "ap-northeast-2": 5.0688, + "ap-northeast-2": 9.4848, "ap-northeast-3": 4.416, "ap-south-1": 4.416, "ap-south-2": 4.416, "ap-southeast-1": 4.416, - "ap-southeast-2": 9.744, - "ca-central-1": 0.0, - "eu-central-1": 4.416, - "eu-north-1": 4.8048, + "ap-southeast-2": 4.416, + "ca-central-1": 4.416, + "ca-west-1": 4.464, + "eu-central-1": 0.0, + "eu-north-1": 4.416, "eu-south-1": 4.416, "eu-west-1": 4.416, "eu-west-2": 4.416, "eu-west-3": 5.3328, "il-central-1": 4.59648, - "me-south-1": 0.0, - "sa-east-1": 11.3328, + "me-south-1": 4.416, + "sa-east-1": 4.416, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-east-1": 4.416, - "us-gov-west-1": 0.0, + "us-gov-west-1": 4.896, "us-west-1": 4.416, "us-west-2": 4.416 }, "c6i.32xlarge": { "af-south-1": 0.0, - "ap-east-1": 12.8, - "ap-northeast-1": 5.888, + "ap-east-1": 5.888, + "ap-northeast-1": 12.736, "ap-northeast-2": 5.888, - "ap-northeast-3": 5.888, - "ap-south-1": 0.0, - "ap-south-2": 0.0, - "ap-southeast-1": 5.888, + "ap-northeast-3": 6.848, + "ap-south-1": 5.888, + "ap-south-2": 5.888, + "ap-southeast-1": 12.16, "ap-southeast-2": 5.888, "ca-central-1": 5.952, - "eu-central-1": 5.888, + "ca-west-1": 5.952, + "eu-central-1": 0.0, "eu-north-1": 11.712, "eu-south-1": 6.464, "eu-west-1": 5.888, "eu-west-2": 5.888, "eu-west-3": 5.888, "il-central-1": 5.888, - "me-south-1": 0.0, - "sa-east-1": 8.384, + "me-south-1": 5.888, + "sa-east-1": 0.0, "us-east-1": 5.984, - "us-east-2": 5.888, + "us-east-2": 0.0, "us-gov-east-1": 6.528, "us-gov-west-1": 5.888, - "us-west-1": 5.888, + "us-west-1": 0.0, "us-west-2": 5.888 }, "c6id.large": { "ap-northeast-1": 0.092, + "ap-northeast-2": 0.1155, + "ap-southeast-1": 0.1176, "ap-southeast-2": 0.092, - "eu-central-1": 0.11655, - "eu-west-1": 0.11445, - "il-central-1": 0.12017, + "ca-west-1": 0.092, + "eu-central-1": 0.22021, + "eu-west-1": 0.0, + "eu-west-2": 0.092, + "il-central-1": 0.092, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.092, "us-gov-west-1": 0.092, "us-west-2": 0.20288 }, "c6id.xlarge": { "ap-northeast-1": 0.184, - "ap-southeast-2": 0.184, + "ap-northeast-2": 0.231, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.2646, + "ca-west-1": 0.184, "eu-central-1": 0.184, "eu-west-1": 0.2289, + "eu-west-2": 0.2415, "il-central-1": 0.184, - "us-east-1": 0.0, + "us-east-1": 0.184, "us-east-2": 0.0, "us-gov-west-1": 0.0, "us-west-2": 0.3856 }, "c6id.metal": { "ap-northeast-1": 0.0, + "ap-northeast-2": 7.392, + "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-west-1": 7.1232, "eu-central-1": 5.888, - "eu-west-1": 7.3248, + "eu-west-1": 5.888, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 5.888, "us-east-2": 5.888, @@ -86847,77 +98372,105 @@ "us-west-2": 0.0 }, "c6id.2xlarge": { - "ap-northeast-1": 0.5124, - "ap-southeast-2": 0.58212, - "eu-central-1": 0.368, + "ap-northeast-1": 0.93164, + "ap-northeast-2": 0.462, + "ap-southeast-1": 0.368, + "ap-southeast-2": 0.5292, + "ca-west-1": 0.8132, + "eu-central-1": 0.4662, "eu-west-1": 0.4578, + "eu-west-2": 0.5313, "il-central-1": 0.0, "us-east-1": 0.368, "us-east-2": 0.368, - "us-gov-west-1": 0.368, - "us-west-2": 0.7712 + "us-gov-west-1": 0.90392, + "us-west-2": 0.0 }, "c6id.4xlarge": { "ap-northeast-1": 0.736, + "ap-northeast-2": 1.0164, + "ap-southeast-1": 0.9408, "ap-southeast-2": 0.736, + "ca-west-1": 0.8904, "eu-central-1": 0.0, "eu-west-1": 0.9156, - "il-central-1": 0.96136, - "us-east-1": 1.62304, + "eu-west-2": 0.0, + "il-central-1": 0.736, + "us-east-1": 0.0, "us-east-2": 0.736, "us-gov-west-1": 0.736, - "us-west-2": 0.0 + "us-west-2": 0.736 }, "c6id.8xlarge": { - "ap-northeast-1": 3.72656, - "ap-southeast-2": 1.472, - "eu-central-1": 1.8648, - "eu-west-1": 1.472, - "il-central-1": 1.92272, - "us-east-1": 0.0, - "us-east-2": 1.77408, - "us-gov-west-1": 1.472, - "us-west-2": 0.0 + "ap-northeast-1": 2.25456, + "ap-northeast-2": 1.472, + "ap-southeast-1": 1.472, + "ap-southeast-2": 0.0, + "ca-west-1": 1.7808, + "eu-central-1": 0.0, + "eu-west-1": 3.3032, + "eu-west-2": 1.472, + "il-central-1": 0.0, + "us-east-1": 3.0848, + "us-east-2": 3.24608, + "us-gov-west-1": 0.0, + "us-west-2": 3.24608 }, "c6id.12xlarge": { - "ap-northeast-1": 5.58984, + "ap-northeast-1": 3.0744, + "ap-northeast-2": 4.98, + "ap-southeast-1": 3.10464, "ap-southeast-2": 0.0, + "ca-west-1": 2.6712, "eu-central-1": 2.208, - "eu-west-1": 3.02148, + "eu-west-1": 0.0, + "eu-west-2": 2.898, "il-central-1": 0.0, "us-east-1": 2.66112, "us-east-2": 2.208, - "us-gov-west-1": 2.208, + "us-gov-west-1": 5.1312, "us-west-2": 2.4192 }, "c6id.16xlarge": { - "ap-northeast-1": 4.50912, + "ap-northeast-1": 0.0, + "ap-northeast-2": 6.64, + "ap-southeast-1": 4.13952, "ap-southeast-2": 2.944, - "eu-central-1": 2.944, + "ca-west-1": 2.944, + "eu-central-1": 6.6736, "eu-west-1": 3.6624, + "eu-west-2": 0.0, "il-central-1": 0.0, "us-east-1": 2.944, - "us-east-2": 0.0, + "us-east-2": 6.1696, "us-gov-west-1": 2.944, - "us-west-2": 6.1696 + "us-west-2": 0.0 }, "c6id.24xlarge": { "ap-northeast-1": 4.416, - "ap-southeast-2": 6.3504, - "eu-central-1": 10.0104, - "eu-west-1": 5.4936, - "il-central-1": 0.0, + "ap-northeast-2": 5.544, + "ap-southeast-1": 5.6448, + "ap-southeast-2": 4.416, + "ca-west-1": 5.3424, + "eu-central-1": 4.416, + "eu-west-1": 0.0, + "eu-west-2": 0.0, + "il-central-1": 4.416, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-west-1": 6.43104, "us-west-2": 4.416 }, "c6id.32xlarge": { - "ap-northeast-1": 8.1984, + "ap-northeast-1": 5.888, + "ap-northeast-2": 7.392, + "ap-southeast-1": 0.0, "ap-southeast-2": 8.4672, + "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 5.888, - "il-central-1": 5.888, + "eu-west-2": 7.728, + "il-central-1": 0.0, "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-west-1": 5.888, @@ -86925,268 +98478,738 @@ }, "c6in.large": { "af-south-1": 0.092, - "ap-northeast-1": 0.15708, - "ap-south-1": 0.0, - "ap-southeast-1": 0.23522, - "ap-southeast-2": 0.24005, + "ap-east-1": 0.15015, + "ap-northeast-1": 0.092, + "ap-northeast-2": 0.092, + "ap-south-1": 0.092, + "ap-south-2": 0.1133, + "ap-southeast-1": 0.092, + "ap-southeast-2": 0.092, "ap-southeast-3": 0.092, + "ap-southeast-4": 0.092, "ca-central-1": 0.092, - "eu-central-1": 0.14207, + "eu-central-1": 0.22115, "eu-central-2": 0.092, "eu-north-1": 0.092, "eu-south-1": 0.092, + "eu-south-2": 0.128, "eu-west-1": 0.092, - "eu-west-2": 0.23984, + "eu-west-2": 0.2264, "eu-west-3": 0.092, + "il-central-1": 0.092, "me-central-1": 0.0, "me-south-1": 0.092, - "sa-east-1": 0.092, + "sa-east-1": 0.0, "us-east-1": 0.092, "us-east-2": 0.092, "us-gov-east-1": 0.092, "us-gov-west-1": 0.092, + "us-west-1": 0.092, "us-west-2": 0.092 }, "c6in.xlarge": { "af-south-1": 0.184, + "ap-east-1": 0.0, "ap-northeast-1": 0.184, + "ap-northeast-2": 0.2562, "ap-south-1": 0.184, - "ap-southeast-1": 0.47044, - "ap-southeast-2": 0.32571, - "ap-southeast-3": 0.184, + "ap-south-2": 0.184, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.184, + "ap-southeast-3": 0.4444, + "ap-southeast-4": 0.184, "ca-central-1": 0.184, "eu-central-1": 0.184, "eu-central-2": 0.184, "eu-north-1": 0.26796, "eu-south-1": 0.184, + "eu-south-2": 0.256, "eu-west-1": 0.0, - "eu-west-2": 0.2688, - "eu-west-3": 0.0, + "eu-west-2": 0.184, + "eu-west-3": 0.47968, + "il-central-1": 0.184, "me-central-1": 0.2816, "me-south-1": 0.184, - "sa-east-1": 0.5326, + "sa-east-1": 0.38346, "us-east-1": 0.184, "us-east-2": 0.43348, "us-gov-east-1": 0.184, "us-gov-west-1": 0.3003, + "us-west-1": 0.184, "us-west-2": 0.184 }, "c6in.metal": { - "af-south-1": 9.75744, - "ap-northeast-1": 9.1392, - "ap-south-1": 5.888, + "af-south-1": 5.888, + "ap-east-1": 15.4976, + "ap-northeast-1": 5.888, + "ap-northeast-2": 8.1984, + "ap-south-1": 13.1456, + "ap-south-2": 7.2512, "ap-southeast-1": 0.0, "ap-southeast-2": 15.3632, - "ap-southeast-3": 5.888, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, "ca-central-1": 5.888, "eu-central-1": 0.0, - "eu-central-2": 9.1072, - "eu-north-1": 7.7952, + "eu-central-2": 5.888, + "eu-north-1": 5.888, "eu-south-1": 5.888, + "eu-south-2": 14.08, "eu-west-1": 5.888, "eu-west-2": 5.888, "eu-west-3": 14.4896, - "me-central-1": 5.888, + "il-central-1": 8.60864, + "me-central-1": 0.0, "me-south-1": 5.888, "sa-east-1": 0.0, "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, + "us-west-1": 5.888, "us-west-2": 5.888 }, "c6in.2xlarge": { - "af-south-1": 0.60984, + "af-south-1": 0.97784, + "ap-east-1": 1.02866, "ap-northeast-1": 0.0, + "ap-northeast-2": 0.368, "ap-south-1": 0.8216, + "ap-south-2": 0.4532, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.5208, - "ca-central-1": 0.8636, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.368, "eu-central-2": 0.368, "eu-north-1": 0.368, - "eu-south-1": 0.5418, - "eu-west-1": 0.0, + "eu-south-1": 0.96398, + "eu-south-2": 0.368, + "eu-west-1": 0.368, "eu-west-2": 0.368, "eu-west-3": 0.368, - "me-central-1": 0.61952, - "me-south-1": 0.9308, + "il-central-1": 0.368, + "me-central-1": 0.0, + "me-south-1": 0.368, "sa-east-1": 0.368, "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.368, + "us-west-1": 0.368, "us-west-2": 0.368 }, "c6in.4xlarge": { "af-south-1": 0.736, + "ap-east-1": 0.736, "ap-northeast-1": 0.0, + "ap-northeast-2": 1.0248, "ap-south-1": 0.736, + "ap-south-2": 0.9064, "ap-southeast-1": 1.7776, "ap-southeast-2": 0.736, "ap-southeast-3": 1.14576, - "ca-central-1": 1.7272, + "ap-southeast-4": 1.184, + "ca-central-1": 0.9912, "eu-central-1": 0.736, "eu-central-2": 1.25224, "eu-north-1": 1.7104, - "eu-south-1": 1.8196, + "eu-south-1": 0.0, + "eu-south-2": 1.1264, "eu-west-1": 1.0248, - "eu-west-2": 1.8112, - "eu-west-3": 0.0, - "me-central-1": 1.23904, - "me-south-1": 1.8616, + "eu-west-2": 1.18272, + "eu-west-3": 1.18272, + "il-central-1": 0.736, + "me-central-1": 0.736, + "me-south-1": 0.736, "sa-east-1": 1.53384, "us-east-1": 0.736, - "us-east-2": 0.736, - "us-gov-east-1": 1.828, + "us-east-2": 0.0, + "us-gov-east-1": 0.736, "us-gov-west-1": 0.0, + "us-west-1": 1.134, "us-west-2": 1.6432 }, "c6in.8xlarge": { "af-south-1": 1.472, - "ap-northeast-1": 2.2848, + "ap-east-1": 2.64264, + "ap-northeast-1": 3.7568, + "ap-northeast-2": 1.472, "ap-south-1": 1.472, + "ap-south-2": 1.472, "ap-southeast-1": 1.472, "ap-southeast-2": 4.07768, "ap-southeast-3": 2.29152, + "ap-southeast-4": 1.472, "ca-central-1": 1.472, "eu-central-1": 1.472, - "eu-central-2": 3.7488, + "eu-central-2": 3.97648, "eu-north-1": 1.472, "eu-south-1": 3.6392, + "eu-south-2": 2.048, "eu-west-1": 2.0496, - "eu-west-2": 0.0, - "eu-west-3": 2.1504, + "eu-west-2": 2.1504, + "eu-west-3": 0.0, + "il-central-1": 1.472, "me-central-1": 3.95008, "me-south-1": 1.472, - "sa-east-1": 2.7888, + "sa-east-1": 0.0, "us-east-1": 1.472, "us-east-2": 0.0, "us-gov-east-1": 3.8744, "us-gov-west-1": 1.472, - "us-west-2": 1.472 + "us-west-1": 2.268, + "us-west-2": 3.2864 }, "c6in.12xlarge": { - "af-south-1": 6.23294, - "ap-northeast-1": 0.0, - "ap-south-1": 4.9296, + "af-south-1": 0.0, + "ap-east-1": 3.96396, + "ap-northeast-1": 2.208, + "ap-northeast-2": 3.0744, + "ap-south-1": 2.208, + "ap-south-2": 2.99112, "ap-southeast-1": 5.64528, "ap-southeast-2": 2.208, "ap-southeast-3": 2.208, - "ca-central-1": 5.47896, - "eu-central-1": 2.208, + "ap-southeast-4": 6.1152, + "ca-central-1": 2.208, + "eu-central-1": 5.61756, "eu-central-2": 0.0, - "eu-north-1": 2.9232, + "eu-north-1": 5.1312, "eu-south-1": 2.208, + "eu-south-2": 2.208, "eu-west-1": 5.58984, "eu-west-2": 5.4336, - "eu-west-3": 3.2256, - "me-central-1": 5.92512, + "eu-west-3": 5.4336, + "il-central-1": 0.0, + "me-central-1": 3.3792, "me-south-1": 2.208, "sa-east-1": 2.208, - "us-east-1": 2.99376, - "us-east-2": 0.0, + "us-east-1": 2.208, + "us-east-2": 2.208, "us-gov-east-1": 2.208, "us-gov-west-1": 0.0, + "us-west-1": 3.402, "us-west-2": 2.208 }, "c6in.16xlarge": { - "af-south-1": 5.36659, - "ap-northeast-1": 0.0, + "af-south-1": 0.0, + "ap-east-1": 4.8048, + "ap-northeast-1": 7.97056, + "ap-northeast-2": 4.0992, "ap-south-1": 2.944, - "ap-southeast-1": 7.52704, + "ap-south-2": 2.944, + "ap-southeast-1": 0.0, "ap-southeast-2": 5.21136, - "ap-southeast-3": 0.0, + "ap-southeast-3": 2.944, + "ap-southeast-4": 4.736, "ca-central-1": 2.944, "eu-central-1": 2.944, "eu-central-2": 0.0, - "eu-north-1": 2.944, + "eu-north-1": 6.8416, "eu-south-1": 2.944, + "eu-south-2": 4.096, "eu-west-1": 4.0992, - "eu-west-2": 4.3008, - "eu-west-3": 2.944, + "eu-west-2": 0.0, + "eu-west-3": 0.0, + "il-central-1": 4.30432, "me-central-1": 0.0, - "me-south-1": 7.4464, - "sa-east-1": 2.944, + "me-south-1": 0.0, + "sa-east-1": 5.5776, "us-east-1": 2.944, "us-east-2": 0.0, - "us-gov-east-1": 4.8048, - "us-gov-west-1": 2.944, + "us-gov-east-1": 0.0, + "us-gov-west-1": 7.7488, + "us-west-1": 4.536, "us-west-2": 2.944 }, "c6in.24xlarge": { - "af-south-1": 4.416, + "af-south-1": 7.31808, + "ap-east-1": 7.2072, "ap-northeast-1": 4.416, + "ap-northeast-2": 0.0, "ap-south-1": 4.416, + "ap-south-2": 0.0, "ap-southeast-1": 6.87456, - "ap-southeast-2": 0.0, - "ap-southeast-3": 6.87456, + "ap-southeast-2": 4.416, + "ap-southeast-3": 4.416, + "ap-southeast-4": 7.104, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 6.81912, "eu-central-2": 4.416, - "eu-north-1": 10.2624, - "eu-south-1": 11.56776, + "eu-north-1": 6.43104, + "eu-south-1": 10.9176, + "eu-south-2": 10.56, "eu-west-1": 6.1488, "eu-west-2": 4.416, "eu-west-3": 4.416, - "me-central-1": 4.416, - "me-south-1": 11.1696, + "il-central-1": 6.45648, + "me-central-1": 7.43424, + "me-south-1": 11.84496, "sa-east-1": 4.416, "us-east-1": 0.0, - "us-east-2": 10.40352, + "us-east-2": 4.416, "us-gov-east-1": 4.416, - "us-gov-west-1": 6.552, + "us-gov-west-1": 4.416, + "us-west-1": 6.804, "us-west-2": 4.416 }, "c6in.32xlarge": { - "af-south-1": 9.75744, - "ap-northeast-1": 0.0, - "ap-south-1": 5.888, - "ap-southeast-1": 8.3328, + "af-south-1": 5.888, + "ap-east-1": 5.888, + "ap-northeast-1": 9.1392, + "ap-northeast-2": 5.888, + "ap-south-1": 13.1456, + "ap-south-2": 5.888, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ap-southeast-3": 5.888, + "ap-southeast-4": 15.36, "ca-central-1": 0.0, "eu-central-1": 5.888, "eu-central-2": 5.888, "eu-north-1": 0.0, "eu-south-1": 8.6688, + "eu-south-2": 5.888, "eu-west-1": 8.1984, "eu-west-2": 5.888, - "eu-west-3": 8.6016, - "me-central-1": 9.0112, + "eu-west-3": 14.4896, + "il-central-1": 8.60864, + "me-central-1": 0.0, "me-south-1": 5.888, - "sa-east-1": 17.0432, - "us-east-1": 7.2576, - "us-east-2": 5.888, - "us-gov-east-1": 8.736, - "us-gov-west-1": 8.736, - "us-west-2": 13.1456 - }, - "cc2.8xlarge": { - "ap-northeast-1": 2.349, - "eu-west-1": 2.25, + "sa-east-1": 5.888, + "us-east-1": 5.888, + "us-east-2": 13.1456, + "us-gov-east-1": 5.888, + "us-gov-west-1": 5.888, + "us-west-1": 5.888, + "us-west-2": 7.2576 + }, + "c7a.medium": { + "ap-northeast-1": 0.046, + "eu-central-1": 0.046, + "eu-north-1": 0.06043, + "eu-south-2": 0.046, + "eu-west-1": 0.046, + "us-east-1": 0.05132, + "us-east-2": 0.046, + "us-west-2": 0.05645 + }, + "c7a.large": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.092, + "eu-north-1": 0.12087, + "eu-south-2": 0.11592, + "eu-west-1": 0.0, + "us-east-1": 0.10264, + "us-east-2": 0.10264, + "us-west-2": 0.1129 + }, + "c7a.xlarge": { + "ap-northeast-1": 0.2584, + "eu-central-1": 0.184, + "eu-north-1": 0.184, + "eu-south-2": 0.0, + "eu-west-1": 0.22024, + "us-east-1": 0.22581, + "us-east-2": 0.20528, + "us-west-2": 0.22581 + }, + "c7a.metal-48xl": { + "ap-northeast-1": 8.832, + "eu-central-1": 20.07648, + "eu-north-1": 8.832, + "eu-south-2": 19.96032, + "eu-west-1": 8.832, + "us-east-1": 0.0, + "us-east-2": 9.85344, + "us-west-2": 9.85344 + }, + "c7a.2xlarge": { + "ap-northeast-1": 0.5168, + "eu-central-1": 0.83652, + "eu-north-1": 0.368, + "eu-south-2": 0.46368, + "eu-west-1": 0.368, + "us-east-1": 0.41056, + "us-east-2": 0.41056, + "us-west-2": 0.368 + }, + "c7a.4xlarge": { + "ap-northeast-1": 1.0336, + "eu-central-1": 0.93704, + "eu-north-1": 0.96694, + "eu-south-2": 0.736, + "eu-west-1": 0.736, + "us-east-1": 0.736, + "us-east-2": 0.736, + "us-west-2": 1.55712 + }, + "c7a.8xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 1.472, + "eu-north-1": 1.75808, + "eu-south-2": 2.04019, + "eu-west-1": 1.472, + "us-east-1": 1.64224, + "us-east-2": 0.0, + "us-west-2": 1.64224 + }, + "c7a.12xlarge": { + "ap-northeast-1": 2.208, + "eu-central-1": 2.208, + "eu-north-1": 0.0, + "eu-south-2": 2.78208, + "eu-west-1": 2.64288, + "us-east-1": 2.46336, + "us-east-2": 2.46336, + "us-west-2": 2.46336 + }, + "c7a.16xlarge": { + "ap-northeast-1": 2.944, + "eu-central-1": 2.944, + "eu-north-1": 3.51616, + "eu-south-2": 3.70944, + "eu-west-1": 2.944, + "us-east-1": 6.22848, + "us-east-2": 3.28448, + "us-west-2": 0.0 + }, + "c7a.24xlarge": { + "ap-northeast-1": 6.2016, + "eu-central-1": 0.0, + "eu-north-1": 4.416, + "eu-south-2": 5.56416, + "eu-west-1": 0.0, + "us-east-1": 4.92672, + "us-east-2": 4.92672, + "us-west-2": 4.416 + }, + "c7a.32xlarge": { + "ap-northeast-1": 5.888, + "eu-central-1": 0.0, + "eu-north-1": 5.888, + "eu-south-2": 7.41888, + "eu-west-1": 0.0, + "us-east-1": 6.56896, + "us-east-2": 6.56896, + "us-west-2": 6.56896 + }, + "c7a.48xlarge": { + "ap-northeast-1": 12.4032, + "eu-central-1": 11.24448, + "eu-north-1": 10.54848, + "eu-south-2": 8.832, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 9.85344, + "us-west-2": 18.68544 + }, + "c7i.large": { + "ap-northeast-1": 0.12359, + "ap-northeast-2": 0.1928, + "ap-south-1": 0.08925, + "ap-southeast-1": 0.1029, + "ap-southeast-2": 0.11655, + "ca-central-1": 0.092, + "eu-central-1": 0.10185, + "eu-north-1": 0.09555, + "eu-south-2": 0.1008, + "eu-west-1": 0.18776, + "eu-west-2": 0.092, + "eu-west-3": 0.19805, + "sa-east-1": 0.092, + "us-east-1": 0.08925, + "us-east-2": 0.092, + "us-gov-east-1": 0.11781, + "us-west-1": 0.092, + "us-west-2": 0.092 + }, + "c7i.xlarge": { + "ap-northeast-1": 0.4087, + "ap-northeast-2": 0.184, + "ap-south-1": 0.38035, + "ap-southeast-1": 0.2058, + "ap-southeast-2": 0.2331, + "ca-central-1": 0.39883, + "eu-central-1": 0.2037, + "eu-north-1": 0.3751, + "eu-south-2": 0.184, + "eu-west-1": 0.19152, + "eu-west-2": 0.184, + "eu-west-3": 0.0, + "sa-east-1": 0.184, + "us-east-1": 0.184, + "us-east-2": 0.19635, + "us-gov-east-1": 0.2142, + "us-west-1": 0.2226, + "us-west-2": 0.0 + }, + "c7i.metal-24xl": { + "ap-northeast-1": 9.8088, + "ap-northeast-2": 4.416, + "ap-south-1": 4.7124, + "ap-southeast-1": 4.9392, + "ap-southeast-2": 5.5944, + "ca-central-1": 4.416, + "eu-central-1": 0.0, + "eu-north-1": 4.5864, + "eu-south-2": 9.73824, + "eu-west-1": 4.59648, + "eu-west-2": 5.59944, + "eu-west-3": 5.0904, + "sa-east-1": 6.6024, + "us-east-1": 4.284, + "us-east-2": 0.0, + "us-gov-east-1": 5.1408, + "us-west-1": 0.0, + "us-west-2": 4.7124 + }, + "c7i.metal-48xl": { + "ap-northeast-1": 10.7856, + "ap-northeast-2": 0.0, + "ap-south-1": 8.832, + "ap-southeast-1": 9.8784, + "ap-southeast-2": 11.1888, + "ca-central-1": 0.0, + "eu-central-1": 9.7776, + "eu-north-1": 9.1728, + "eu-south-2": 9.6768, + "eu-west-1": 9.19296, + "eu-west-2": 8.832, + "eu-west-3": 19.0128, + "sa-east-1": 0.0, + "us-east-1": 8.568, + "us-east-2": 0.0, + "us-gov-east-1": 10.2816, + "us-west-1": 8.832, + "us-west-2": 8.568 + }, + "c7i.2xlarge": { + "ap-northeast-1": 0.368, + "ap-northeast-2": 0.4032, + "ap-south-1": 0.368, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.368, + "ca-central-1": 0.3906, + "eu-central-1": 0.4074, + "eu-north-1": 0.3822, + "eu-south-2": 0.368, + "eu-west-1": 0.38304, + "eu-west-2": 0.4242, + "eu-west-3": 0.7922, + "sa-east-1": 0.5502, + "us-east-1": 0.368, + "us-east-2": 0.725, + "us-gov-east-1": 0.368, + "us-west-1": 0.0, + "us-west-2": 0.368 + }, + "c7i.4xlarge": { + "ap-northeast-1": 0.98868, + "ap-northeast-2": 0.88704, + "ap-south-1": 0.0, + "ap-southeast-1": 0.90552, + "ap-southeast-2": 1.76164, + "ca-central-1": 0.7812, + "eu-central-1": 0.736, + "eu-north-1": 0.7644, + "eu-south-2": 0.736, + "eu-west-1": 0.0, + "eu-west-2": 0.8484, + "eu-west-3": 0.0, + "sa-east-1": 1.1004, + "us-east-1": 0.736, + "us-east-2": 0.736, + "us-gov-east-1": 0.736, + "us-west-1": 0.0, + "us-west-2": 0.736 + }, + "c7i.8xlarge": { + "ap-northeast-1": 1.7976, + "ap-northeast-2": 1.6128, + "ap-south-1": 0.0, + "ap-southeast-1": 3.28304, + "ap-southeast-2": 1.472, + "ca-central-1": 1.472, + "eu-central-1": 3.1016, + "eu-north-1": 1.472, + "eu-south-2": 1.472, + "eu-west-1": 1.472, + "eu-west-2": 3.33848, + "eu-west-3": 1.86648, + "sa-east-1": 1.472, + "us-east-1": 0.0, + "us-east-2": 2.9, + "us-gov-east-1": 0.0, + "us-west-1": 1.472, + "us-west-2": 0.0 + }, + "c7i.12xlarge": { + "ap-northeast-1": 2.208, + "ap-northeast-2": 2.208, + "ap-south-1": 2.142, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.208, + "ca-central-1": 2.208, + "eu-central-1": 2.208, + "eu-north-1": 4.73052, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 2.208, + "eu-west-3": 2.208, + "sa-east-1": 3.3012, + "us-east-1": 2.208, + "us-east-2": 2.208, + "us-gov-east-1": 0.0, + "us-west-1": 2.6712, + "us-west-2": 2.3562 + }, + "c7i.16xlarge": { + "ap-northeast-1": 2.944, + "ap-northeast-2": 3.2256, + "ap-south-1": 2.944, + "ap-southeast-1": 2.944, + "ap-southeast-2": 2.944, + "ca-central-1": 3.1248, + "eu-central-1": 2.944, + "eu-north-1": 0.0, + "eu-south-2": 3.54816, + "eu-west-1": 3.37075, + "eu-west-2": 6.67696, + "eu-west-3": 3.3936, + "sa-east-1": 4.4016, + "us-east-1": 3.1416, + "us-east-2": 2.856, + "us-gov-east-1": 3.76992, + "us-west-1": 6.86176, + "us-west-2": 2.856 + }, + "c7i.24xlarge": { + "ap-northeast-1": 9.8088, + "ap-northeast-2": 4.8384, + "ap-south-1": 4.284, + "ap-southeast-1": 4.9392, + "ap-southeast-2": 4.416, + "ca-central-1": 4.6872, + "eu-central-1": 4.8888, + "eu-north-1": 9.46104, + "eu-south-2": 4.416, + "eu-west-1": 9.47213, + "eu-west-2": 5.59944, + "eu-west-3": 0.0, + "sa-east-1": 4.416, + "us-east-1": 0.0, + "us-east-2": 4.284, + "us-gov-east-1": 9.5568, + "us-west-1": 5.3424, + "us-west-2": 8.7 + }, + "c7i.48xlarge": { + "ap-northeast-1": 8.832, + "ap-northeast-2": 8.832, + "ap-south-1": 8.568, + "ap-southeast-1": 9.8784, + "ap-southeast-2": 8.832, + "ca-central-1": 0.0, + "eu-central-1": 9.7776, + "eu-north-1": 9.1728, + "eu-south-2": 18.5088, + "eu-west-1": 8.832, + "eu-west-2": 8.832, + "eu-west-3": 10.1808, + "sa-east-1": 13.2048, + "us-east-1": 0.0, + "us-east-2": 8.568, + "us-gov-east-1": 0.0, + "us-west-1": 10.6848, + "us-west-2": 8.568 + }, + "c7i-flex.large": { + "ap-south-1": 0.08479, + "ap-southeast-1": 0.09778, + "ca-central-1": 0.09277, + "eu-north-1": 0.09077, + "eu-south-2": 0.09576, + "eu-west-1": 0.09097, + "eu-west-2": 0.10075, + "eu-west-3": 0.10075, + "sa-east-1": 0.13067, + "us-west-1": 0.10574 + }, + "c7i-flex.xlarge": { + "ap-south-1": 0.16958, + "ap-southeast-1": 0.19555, + "ca-central-1": 0.18554, + "eu-north-1": 0.18155, + "eu-south-2": 0.19152, + "eu-west-1": 0.18194, + "eu-west-2": 0.2015, + "eu-west-3": 0.2015, + "sa-east-1": 0.26135, + "us-west-1": 0.21147 + }, + "c7i-flex.2xlarge": { + "ap-south-1": 0.33915, + "ap-southeast-1": 0.3911, + "ca-central-1": 0.37107, + "eu-north-1": 0.36309, + "eu-south-2": 0.38304, + "eu-west-1": 0.36389, + "eu-west-2": 0.40299, + "eu-west-3": 0.40299, + "sa-east-1": 0.52269, + "us-west-1": 0.42294 + }, + "c7i-flex.4xlarge": { + "ap-south-1": 0.6783, + "ap-southeast-1": 0.7822, + "ca-central-1": 0.74214, + "eu-north-1": 0.72618, + "eu-south-2": 0.76608, + "eu-west-1": 0.72778, + "eu-west-2": 0.80598, + "eu-west-3": 0.80598, + "sa-east-1": 1.04538, + "us-west-1": 0.84588 + }, + "c7i-flex.8xlarge": { + "ap-south-1": 1.3566, + "ap-southeast-1": 1.56441, + "ca-central-1": 1.48428, + "eu-north-1": 1.45236, + "eu-south-2": 1.53216, + "eu-west-1": 1.45555, + "eu-west-2": 1.61196, + "eu-west-3": 1.61196, + "sa-east-1": 2.09076, + "us-west-1": 1.69176 + }, + "cc2.8xlarge": { + "ap-northeast-1": 2.349, + "eu-west-1": 2.25, "us-east-1": 2.0, "us-gov-west-1": 2.57, "us-west-2": 2.0 }, "cr1.8xlarge": { "ap-northeast-1": 4.42, - "eu-west-1": 3.75, - "us-east-1": 3.5, + "eu-west-1": 3.831, + "us-east-1": 3.831, "us-west-2": 3.831 }, "d2.xlarge": { "af-south-1": 0.184, "ap-east-1": 0.184, "ap-northeast-1": 0.844, - "ap-northeast-2": 0.184, + "ap-northeast-2": 0.844, "ap-northeast-3": 1.028, - "ap-south-1": 0.91, + "ap-south-1": 0.827, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.0, + "ap-southeast-2": 1.101, "ca-central-1": 0.184, - "eu-central-1": 0.0, + "eu-central-1": 0.925, "eu-north-1": 0.184, "eu-south-1": 0.184, "eu-west-1": 0.184, @@ -87195,59 +99218,59 @@ "me-south-1": 0.184, "sa-east-1": 0.0, "us-east-1": 0.69, - "us-east-2": 0.69, + "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.976, - "us-west-1": 0.859, + "us-gov-west-1": 0.184, + "us-west-1": 0.781, "us-west-2": 0.69 }, "d2.2xlarge": { "af-south-1": 0.368, "ap-east-1": 0.368, "ap-northeast-1": 0.368, - "ap-northeast-2": 1.688, + "ap-northeast-2": 2.2248, "ap-northeast-3": 1.688, "ap-south-1": 0.368, "ap-southeast-1": 0.0, "ap-southeast-2": 1.74, "ca-central-1": 0.368, - "eu-central-1": 0.0, + "eu-central-1": 1.588, "eu-north-1": 0.368, "eu-south-1": 0.368, - "eu-west-1": 0.0, + "eu-west-1": 1.47, "eu-west-2": 2.066, "eu-west-3": 1.544, "me-south-1": 0.368, "sa-east-1": 0.0, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 1.38, "us-gov-east-1": 0.368, - "us-gov-west-1": 1.656, - "us-west-1": 0.0, - "us-west-2": 1.518 + "us-gov-west-1": 1.952, + "us-west-1": 1.563, + "us-west-2": 1.38 }, "d2.4xlarge": { "af-south-1": 0.736, "ap-east-1": 0.736, "ap-northeast-1": 4.046, - "ap-northeast-2": 0.736, + "ap-northeast-2": 3.376, "ap-northeast-3": 3.376, - "ap-south-1": 3.306, + "ap-south-1": 0.0, "ap-southeast-1": 4.16, "ap-southeast-2": 3.48, - "ca-central-1": 3.34, - "eu-central-1": 3.176, + "ca-central-1": 3.772, + "eu-central-1": 0.736, "eu-north-1": 0.736, "eu-south-1": 0.736, - "eu-west-1": 2.94, - "eu-west-2": 3.823, - "eu-west-3": 0.0, + "eu-west-1": 0.736, + "eu-west-2": 3.087, + "eu-west-3": 0.736, "me-south-1": 0.736, "sa-east-1": 0.0, "us-east-1": 0.736, - "us-east-2": 0.736, + "us-east-2": 3.368, "us-gov-east-1": 0.736, - "us-gov-west-1": 0.736, + "us-gov-west-1": 3.904, "us-west-1": 3.125, "us-west-2": 2.76 }, @@ -87257,32 +99280,33 @@ "ap-northeast-1": 7.43, "ap-northeast-2": 6.752, "ap-northeast-3": 6.752, - "ap-south-1": 6.612, + "ap-south-1": 1.656, "ap-southeast-1": 1.656, "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 6.072, "eu-central-1": 1.656, "eu-north-1": 1.656, "eu-south-1": 1.656, - "eu-west-1": 0.0, + "eu-west-1": 1.656, "eu-west-2": 1.656, "eu-west-3": 6.176, "me-south-1": 1.656, "sa-east-1": 0.0, - "us-east-1": 5.52, - "us-east-2": 5.52, + "us-east-1": 0.0, + "us-east-2": 0.0, "us-gov-east-1": 1.656, "us-gov-west-1": 1.656, - "us-west-1": 7.906, - "us-west-2": 5.52 + "us-west-1": 0.0, + "us-west-2": 0.0 }, "d3.xlarge": { - "ap-northeast-1": 0.908, + "ap-northeast-1": 0.724, "ap-south-1": 0.524, "ap-southeast-1": 0.81, "ap-southeast-2": 0.81, "ca-central-1": 0.55, "eu-central-1": 0.842, + "eu-central-2": 0.724, "eu-west-1": 0.609, "eu-west-2": 0.824, "il-central-1": 0.64, @@ -87292,12 +99316,13 @@ "us-west-2": 0.683 }, "d3.2xlarge": { - "ap-northeast-1": 1.816, + "ap-northeast-1": 1.448, "ap-south-1": 1.047, "ap-southeast-1": 1.62, "ap-southeast-2": 1.62, "ca-central-1": 1.468, "eu-central-1": 1.684, + "eu-central-2": 1.448, "eu-west-1": 1.219, "eu-west-2": 1.648, "il-central-1": 1.28, @@ -87307,12 +99332,13 @@ "us-west-2": 1.367 }, "d3.4xlarge": { - "ap-northeast-1": 3.633, + "ap-northeast-1": 2.897, "ap-south-1": 2.095, "ap-southeast-1": 3.24, "ap-southeast-2": 3.24, "ca-central-1": 2.937, "eu-central-1": 3.368, + "eu-central-2": 2.895, "eu-west-1": 2.437, "eu-west-2": 2.559, "il-central-1": 2.559, @@ -87322,12 +99348,13 @@ "us-west-2": 2.734 }, "d3.8xlarge": { - "ap-northeast-1": 7.26544, + "ap-northeast-1": 5.79344, "ap-south-1": 4.18904, "ap-southeast-1": 6.48008, "ap-southeast-2": 6.48008, "ca-central-1": 4.40112, "eu-central-1": 6.73648, + "eu-central-2": 7.26296, "eu-west-1": 4.87448, "eu-west-2": 6.59024, "il-central-1": 5.11824, @@ -87337,31 +99364,49 @@ "us-west-2": 5.46752 }, "d3en.xlarge": { + "ap-northeast-1": 0.762, + "ap-southeast-1": 0.659, + "eu-central-1": 0.693, "eu-west-1": 0.825, "us-east-1": 0.71, "us-west-2": 0.71 }, "d3en.2xlarge": { + "ap-northeast-1": 1.525, + "ap-southeast-1": 1.318, + "eu-central-1": 1.385, "eu-west-1": 1.651, "us-east-1": 1.419, "us-west-2": 1.419 }, "d3en.4xlarge": { + "ap-northeast-1": 3.049, + "ap-southeast-1": 2.636, + "eu-central-1": 3.507, "eu-west-1": 3.302, "us-east-1": 2.839, "us-west-2": 2.839 }, "d3en.6xlarge": { + "ap-northeast-1": 5.678, + "ap-southeast-1": 3.954, + "eu-central-1": 4.156, "eu-west-1": 4.952, "us-east-1": 4.258, "us-west-2": 4.258 }, "d3en.8xlarge": { + "ap-northeast-1": 7.5704, + "ap-southeast-1": 6.74368, + "eu-central-1": 5.54152, "eu-west-1": 6.60304, "us-east-1": 5.67776, "us-west-2": 5.67776 }, "d3en.12xlarge": { + "ap-northeast-1": 9.1476, + "ap-southeast-1": 10.11552, + "eu-central-1": 8.31228, "eu-west-1": 9.90456, "us-east-1": 8.51664, "us-west-2": 8.51664 @@ -87369,7 +99414,7 @@ "f1.2xlarge": { "eu-west-1": 1.815, "us-east-1": 1.65, - "us-west-2": 1.815 + "us-west-2": 0.0 }, "f1.16xlarge": { "eu-west-1": 14.52, @@ -87377,71 +99422,71 @@ "us-west-2": 13.2 }, "g2.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.368, "ap-northeast-2": 0.0, "ap-southeast-1": 1.0, - "ap-southeast-2": 0.898, - "eu-central-1": 0.0, - "eu-west-1": 0.368, + "ap-southeast-2": 1.058, + "eu-central-1": 0.997, + "eu-west-1": 0.767, "sa-east-1": 0.0, - "us-east-1": 0.65, - "us-west-1": 0.702, + "us-east-1": 0.368, + "us-west-1": 0.819, "us-west-2": 0.0 }, "g2.8xlarge": { "ap-northeast-1": 1.472, - "ap-northeast-2": 0.0, + "ap-northeast-2": 3.592, "ap-southeast-1": 4.278, "ap-southeast-2": 3.592, "eu-central-1": 3.366, - "eu-west-1": 2.808, + "eu-west-1": 3.086, "sa-east-1": 0.0, - "us-east-1": 2.6, + "us-east-1": 2.878, "us-west-1": 2.808, "us-west-2": 1.472 }, "g3.4xlarge": { "ap-northeast-1": 0.736, "ap-northeast-2": 0.736, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.406, "ap-southeast-2": 0.0, "ca-central-1": 0.736, - "eu-central-1": 0.736, + "eu-central-1": 1.425, "eu-west-1": 0.0, "eu-west-2": 0.736, "us-east-1": 1.14, "us-east-2": 1.14, "us-gov-west-1": 0.736, - "us-west-1": 2.4234, - "us-west-2": 0.736 + "us-west-1": 1.534, + "us-west-2": 1.14 }, "g3.8xlarge": { - "ap-northeast-1": 1.472, + "ap-northeast-1": 3.16, "ap-northeast-2": 1.472, - "ap-southeast-1": 3.674, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, "ca-central-1": 1.472, "eu-central-1": 1.472, - "eu-west-1": 2.42, + "eu-west-1": 2.662, "eu-west-2": 1.472, "us-east-1": 1.472, "us-east-2": 1.472, - "us-gov-west-1": 1.472, - "us-west-1": 3.068, - "us-west-2": 0.0 + "us-gov-west-1": 2.64, + "us-west-1": 0.0, + "us-west-2": 2.508 }, "g3.16xlarge": { - "ap-northeast-1": 2.944, + "ap-northeast-1": 6.32, "ap-northeast-2": 2.944, "ap-southeast-1": 6.68, - "ap-southeast-2": 7.016, + "ap-southeast-2": 0.0, "ca-central-1": 2.944, - "eu-central-1": 0.0, + "eu-central-1": 2.944, "eu-west-1": 2.944, "eu-west-2": 2.944, "us-east-1": 2.944, "us-east-2": 0.0, - "us-gov-west-1": 2.944, + "us-gov-west-1": 5.28, "us-west-1": 6.136, "us-west-2": 4.56 }, @@ -87517,7 +99562,7 @@ "ap-southeast-1": 0.736, "ap-southeast-2": 0.184, "ca-central-1": 0.184, - "eu-central-1": 0.0, + "eu-central-1": 0.184, "eu-north-1": 0.184, "eu-south-1": 0.184, "eu-west-1": 0.184, @@ -87528,10 +99573,10 @@ "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.847, "us-west-1": 0.184, "us-west-2": 0.184, - "us-west-2-lax-1": 0.184 + "us-west-2-lax-1": 0.815 }, "g4dn.metal": { "af-south-1": 4.416, @@ -87563,7 +99608,7 @@ "ap-east-1": 0.368, "ap-northeast-1": 0.368, "ap-northeast-2": 0.368, - "ap-northeast-3": 0.368, + "ap-northeast-3": 0.0, "ap-south-1": 0.368, "ap-southeast-1": 1.052, "ap-southeast-2": 0.368, @@ -87579,7 +99624,7 @@ "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.948, + "us-gov-west-1": 0.368, "us-west-1": 0.368, "us-west-2": 0.368, "us-west-2-lax-1": 0.368 @@ -87605,7 +99650,7 @@ "us-east-1": 0.736, "us-east-2": 0.736, "us-gov-east-1": 0.736, - "us-gov-west-1": 1.518, + "us-gov-west-1": 0.736, "us-west-1": 0.736, "us-west-2": 0.736, "us-west-2-lax-1": 2.181 @@ -87617,7 +99662,7 @@ "ap-northeast-2": 1.472, "ap-northeast-3": 2.938, "ap-south-1": 1.472, - "ap-southeast-1": 1.472, + "ap-southeast-1": 4.699, "ap-southeast-2": 1.472, "ca-central-1": 1.472, "eu-central-1": 2.897, @@ -87631,7 +99676,7 @@ "us-east-1": 1.472, "us-east-2": 1.472, "us-gov-east-1": 1.472, - "us-gov-west-1": 2.907, + "us-gov-west-1": 1.472, "us-west-1": 1.472, "us-west-2": 1.472, "us-west-2-lax-1": 1.472 @@ -87657,7 +99702,7 @@ "us-east-1": 2.208, "us-east-2": 2.208, "us-gov-east-1": 2.208, - "us-gov-west-1": 4.931, + "us-gov-west-1": 5.227, "us-west-1": 2.208, "us-west-2": 2.208, "us-west-2-lax-1": 6.902 @@ -87683,118 +99728,118 @@ "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-east-1": 2.944, - "us-gov-west-1": 5.486, + "us-gov-west-1": 0.0, "us-west-1": 2.944, "us-west-2": 2.944, "us-west-2-lax-1": 8.166 }, "g5.xlarge": { - "ap-northeast-1": 1.643, + "ap-northeast-1": 1.7889, "ap-northeast-2": 0.184, "ap-south-1": 0.184, "ap-southeast-2": 0.184, "ap-southeast-3": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.184, "eu-central-1": 0.184, "eu-north-1": 0.0, "eu-west-1": 1.123, - "eu-west-2": 1.461, + "eu-west-2": 0.184, "il-central-1": 1.29707, "me-central-1": 1.418, - "sa-east-1": 1.71, - "us-east-1": 1.2906, - "us-east-2": 0.0, - "us-west-2": 0.0 + "sa-east-1": 1.894, + "us-east-1": 0.184, + "us-east-2": 0.184, + "us-west-2": 0.184 }, "g5.2xlarge": { "ap-northeast-1": 0.368, "ap-northeast-2": 0.368, "ap-south-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.0, - "ca-central-1": 0.0, - "eu-central-1": 0.368, - "eu-north-1": 1.65349, + "ap-southeast-3": 2.23395, + "ca-central-1": 0.368, + "eu-central-1": 1.8836, + "eu-north-1": 1.28549, "eu-west-1": 0.368, - "eu-west-2": 0.368, - "il-central-1": 1.93067, + "eu-west-2": 1.53849, + "il-central-1": 0.0, "me-central-1": 0.368, "sa-east-1": 0.368, "us-east-1": 1.212, "us-east-2": 1.212, - "us-west-2": 1.58 + "us-west-2": 0.368 }, "g5.4xlarge": { "ap-northeast-1": 0.736, - "ap-northeast-2": 2.73291, + "ap-northeast-2": 0.736, "ap-south-1": 0.736, "ap-southeast-2": 0.736, "ap-southeast-3": 0.736, - "ca-central-1": 0.736, - "eu-central-1": 0.736, + "ca-central-1": 2.71951, + "eu-central-1": 2.23389, "eu-north-1": 0.736, - "eu-west-1": 0.736, - "eu-west-2": 0.736, + "eu-west-1": 1.81287, + "eu-west-2": 3.00363, "il-central-1": 0.736, - "me-central-1": 0.0, - "sa-east-1": 3.49648, + "me-central-1": 2.72806, + "sa-east-1": 0.736, "us-east-1": 0.736, "us-east-2": 0.736, "us-west-2": 0.736, "us-west-2-lax-1": 2.23098 }, "g5.8xlarge": { - "ap-northeast-1": 5.37736, - "ap-northeast-2": 1.472, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-south-1": 4.7055, - "ap-southeast-2": 0.0, + "ap-southeast-2": 3.50118, "ap-southeast-3": 1.472, "ca-central-1": 0.0, "eu-central-1": 1.472, - "eu-north-1": 1.472, + "eu-north-1": 2.59644, "eu-west-1": 2.73271, "eu-west-2": 1.472, "il-central-1": 1.472, "me-central-1": 1.472, "sa-east-1": 5.63311, - "us-east-1": 1.472, - "us-east-2": 2.6928, - "us-west-2": 1.472, + "us-east-1": 2.448, + "us-east-2": 1.472, + "us-west-2": 0.0, "us-west-2-lax-1": 4.83496 }, "g5.12xlarge": { - "ap-northeast-1": 2.208, - "ap-northeast-2": 9.18242, + "ap-northeast-1": 11.2567, + "ap-northeast-2": 6.97442, "ap-south-1": 2.208, - "ap-southeast-2": 2.208, + "ap-southeast-2": 10.3202, "ap-southeast-3": 2.208, - "ca-central-1": 8.50584, + "ca-central-1": 0.0, "eu-central-1": 9.30082, "eu-north-1": 2.208, "eu-west-1": 2.208, - "eu-west-2": 7.19994, + "eu-west-2": 2.208, "il-central-1": 6.64825, - "me-central-1": 0.0, + "me-central-1": 2.208, "sa-east-1": 10.6054, - "us-east-1": 0.0, - "us-east-2": 5.672, + "us-east-1": 5.672, + "us-east-2": 6.2392, "us-west-2": 2.208 }, "g5.16xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 2.944, "ap-northeast-2": 0.0, "ap-south-1": 2.944, "ap-southeast-2": 2.944, - "ap-southeast-3": 9.25005, + "ap-southeast-3": 2.944, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 2.944, "eu-north-1": 2.944, - "eu-west-1": 2.944, - "eu-west-2": 0.0, - "il-central-1": 2.944, - "me-central-1": 0.0, + "eu-west-1": 7.51637, + "eu-west-2": 5.71934, + "il-central-1": 8.22509, + "me-central-1": 5.02432, "sa-east-1": 2.944, - "us-east-1": 0.0, + "us-east-1": 4.5056, "us-east-2": 2.944, "us-west-2": 2.944 }, @@ -87802,64 +99847,115 @@ "ap-northeast-1": 17.40835, "ap-northeast-2": 4.416, "ap-south-1": 4.416, - "ap-southeast-2": 4.416, - "ap-southeast-3": 15.81436, + "ap-southeast-2": 11.6477, + "ap-southeast-3": 12.5382, "ca-central-1": 4.416, "eu-central-1": 15.61845, "eu-north-1": 4.416, - "eu-west-1": 0.0, + "eu-west-1": 4.416, "eu-west-2": 4.416, - "il-central-1": 9.54572, - "me-central-1": 10.98873, - "sa-east-1": 0.0, - "us-east-1": 4.416, + "il-central-1": 4.416, + "me-central-1": 9.98976, + "sa-east-1": 19.6435, + "us-east-1": 13.3744, "us-east-2": 4.416, - "us-west-2": 8.144 + "us-west-2": 0.0 }, "g5.48xlarge": { "ap-northeast-1": 8.832, "ap-northeast-2": 0.0, "ap-south-1": 8.832, "ap-southeast-2": 8.832, - "ap-southeast-3": 22.79672, + "ap-southeast-3": 0.0, "ca-central-1": 8.832, - "eu-central-1": 29.2001, - "eu-north-1": 0.0, + "eu-central-1": 8.832, + "eu-north-1": 17.27564, "eu-west-1": 18.18233, "eu-west-2": 8.832, "il-central-1": 19.09145, "me-central-1": 8.832, - "sa-east-1": 27.68636, - "us-east-1": 16.288, - "us-east-2": 25.12, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 8.832, "us-west-2": 26.7488 }, + "g6.xlarge": { + "us-east-1": 0.88528, + "us-east-2": 0.184, + "us-west-2": 0.8048 + }, + "g6.2xlarge": { + "us-east-1": 0.368, + "us-east-2": 1.44336, + "us-west-2": 0.368 + }, + "g6.4xlarge": { + "us-east-1": 1.45552, + "us-east-2": 1.3232, + "us-west-2": 1.3232 + }, + "g6.8xlarge": { + "us-east-1": 1.472, + "us-east-2": 0.0, + "us-west-2": 2.21584 + }, + "g6.12xlarge": { + "us-east-1": 5.06176, + "us-east-2": 2.208, + "us-west-2": 4.6016 + }, + "g6.16xlarge": { + "us-east-1": 2.944, + "us-east-2": 3.3968, + "us-west-2": 6.3408 + }, + "g6.24xlarge": { + "us-east-1": 6.6752, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "g6.48xlarge": { + "us-east-1": 13.3504, + "us-east-2": 13.3504, + "us-west-2": 0.0 + }, + "gr6.4xlarge": { + "us-east-1": 1.5392, + "us-east-2": 1.5392, + "us-west-2": 1.5392 + }, + "gr6.8xlarge": { + "us-east-1": 2.4464, + "us-east-2": 2.4464, + "us-west-2": 2.4464 + }, "h1.2xlarge": { "eu-west-1": 1.021, "us-east-1": 0.0, - "us-east-2": 0.368, - "us-west-2": 0.468 + "us-east-2": 0.918, + "us-west-2": 0.954 }, "h1.4xlarge": { - "eu-west-1": 1.038, + "eu-west-1": 1.958, "us-east-1": 0.736, - "us-east-2": 0.997, + "us-east-2": 1.907, "us-west-2": 0.736 }, "h1.8xlarge": { - "eu-west-1": 2.076, - "us-east-1": 1.872, + "eu-west-1": 4.084, + "us-east-1": 1.472, "us-east-2": 1.472, - "us-west-2": 1.872 + "us-west-2": 0.0 }, "h1.16xlarge": { "eu-west-1": 2.944, - "us-east-1": 3.744, + "us-east-1": 2.944, "us-east-2": 2.944, - "us-west-2": 3.744 + "us-west-2": 2.944 }, "hpc6a.48xlarge": { "ap-southeast-1": 3.3205, + "ap-southeast-2": 3.7609, "eu-north-1": 3.093, "us-east-2": 2.88, "us-gov-east-1": 7.883, @@ -87870,6 +99966,30 @@ "us-east-2": 8.644, "us-gov-west-1": 6.8544 }, + "hpc7a.12xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.24xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.48xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, + "hpc7a.96xlarge": { + "eu-north-1": 7.7252, + "eu-west-1": 7.7252, + "us-east-2": 7.2, + "us-gov-west-1": 8.6674 + }, "hs1.8xlarge": { "ap-northeast-1": 5.4, "ap-southeast-1": 5.57, @@ -87886,66 +100006,66 @@ "ap-southeast-1": 0.0, "ap-southeast-2": 1.018, "eu-central-1": 1.013, - "eu-west-1": 1.07, + "eu-west-1": 0.184, "sa-east-1": 0.0, "us-east-1": 0.184, - "us-east-2": 0.184, - "us-gov-west-1": 1.023, - "us-west-1": 0.938, + "us-east-2": 0.0, + "us-gov-west-1": 0.184, + "us-west-1": 0.184, "us-west-2": 0.853 }, "i2.2xlarge": { "ap-northeast-1": 2.201, "ap-northeast-2": 2.001, "ap-south-1": 0.368, - "ap-southeast-1": 2.035, - "ap-southeast-2": 2.035, - "eu-central-1": 0.0, - "eu-west-1": 0.368, + "ap-southeast-1": 2.571, + "ap-southeast-2": 2.337, + "eu-central-1": 2.026, + "eu-west-1": 1.876, "sa-east-1": 0.0, - "us-east-1": 0.0, + "us-east-1": 1.705, "us-east-2": 1.705, "us-gov-west-1": 2.515, "us-west-1": 0.0, - "us-west-2": 1.705 + "us-west-2": 0.368 }, "i2.4xlarge": { "ap-northeast-1": 4.002, "ap-northeast-2": 4.002, - "ap-south-1": 0.736, + "ap-south-1": 3.867, "ap-southeast-1": 4.07, - "ap-southeast-2": 4.07, + "ap-southeast-2": 0.736, "eu-central-1": 0.736, - "eu-west-1": 0.736, + "eu-west-1": 3.751, "sa-east-1": 0.0, "us-east-1": 3.751, - "us-east-2": 4.28, + "us-east-2": 0.736, "us-gov-west-1": 0.736, "us-west-1": 3.751, - "us-west-2": 0.0 + "us-west-2": 3.41 }, "i2.8xlarge": { "ap-northeast-1": 8.903, - "ap-northeast-2": 1.472, - "ap-south-1": 0.0, - "ap-southeast-1": 1.472, + "ap-northeast-2": 0.0, + "ap-south-1": 7.733, + "ap-southeast-1": 8.14, "ap-southeast-2": 8.14, "eu-central-1": 8.102, "eu-west-1": 7.502, "sa-east-1": 0.0, - "us-east-1": 0.0, - "us-east-2": 6.82, - "us-gov-west-1": 1.472, + "us-east-1": 1.472, + "us-east-2": 7.782, + "us-gov-west-1": 8.184, "us-west-1": 1.472, "us-west-2": 6.82 }, "i3.large": { "af-south-1": 0.092, "ap-east-1": 0.092, - "ap-northeast-1": 0.092, - "ap-northeast-2": 0.183, + "ap-northeast-1": 0.183, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.092, - "ap-south-1": 0.0, + "ap-south-1": 0.092, "ap-south-2": 0.092, "ap-southeast-1": 0.187, "ap-southeast-2": 0.092, @@ -87956,14 +100076,14 @@ "eu-central-2": 0.092, "eu-north-1": 0.092, "eu-south-1": 0.092, - "eu-south-2": 0.281, - "eu-west-1": 0.172, + "eu-south-2": 0.172, + "eu-west-1": 0.189, "eu-west-2": 0.092, "eu-west-3": 0.181, "il-central-1": 0.181, - "me-central-1": 0.0, + "me-central-1": 0.092, "me-south-1": 0.092, - "sa-east-1": 0.092, + "sa-east-1": 0.341, "us-east-1": 0.156, "us-east-2": 0.156, "us-gov-east-1": 0.092, @@ -87975,31 +100095,31 @@ "af-south-1": 0.184, "ap-east-1": 0.184, "ap-northeast-1": 0.184, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.403, "ap-northeast-3": 0.184, "ap-south-1": 0.184, "ap-south-2": 0.184, "ap-southeast-1": 0.184, "ap-southeast-2": 0.0, - "ap-southeast-3": 0.184, - "ap-southeast-4": 0.0, + "ap-southeast-3": 0.558, + "ap-southeast-4": 0.374, "ca-central-1": 0.184, - "eu-central-1": 0.184, + "eu-central-1": 0.409, "eu-central-2": 0.0, "eu-north-1": 0.184, "eu-south-1": 0.184, - "eu-south-2": 0.184, + "eu-south-2": 0.0, "eu-west-1": 0.344, "eu-west-2": 0.546, - "eu-west-3": 0.398, + "eu-west-3": 0.362, "il-central-1": 0.361, "me-central-1": 0.0, "me-south-1": 0.184, - "sa-east-1": 0.0, - "us-east-1": 0.312, - "us-east-2": 0.184, + "sa-east-1": 0.184, + "us-east-1": 0.496, + "us-east-2": 0.496, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.376, "us-west-1": 0.184, "us-west-2": 0.312 }, @@ -88013,51 +100133,51 @@ "ap-southeast-1": 2.944, "ap-southeast-2": 0.0, "ca-central-1": 8.448, - "eu-central-1": 2.944, - "eu-north-1": 5.216, - "eu-south-1": 0.0, - "eu-west-1": 5.504, + "eu-central-1": 5.952, + "eu-north-1": 2.944, + "eu-south-1": 5.792, + "eu-west-1": 8.448, "eu-west-2": 5.792, "eu-west-3": 5.792, - "me-south-1": 6.054, + "me-south-1": 3.312, "sa-east-1": 2.944, - "us-east-1": 4.992, + "us-east-1": 0.0, "us-east-2": 4.992, "us-gov-east-1": 0.0, "us-gov-west-1": 2.944, "us-west-1": 2.944, - "us-west-2": 4.992 + "us-west-2": 2.944 }, "i3.2xlarge": { "af-south-1": 0.368, "ap-east-1": 0.368, "ap-northeast-1": 0.368, - "ap-northeast-2": 0.732, + "ap-northeast-2": 0.368, "ap-northeast-3": 0.368, "ap-south-1": 0.708, - "ap-south-2": 0.368, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.368, - "ap-southeast-3": 0.368, + "ap-south-2": 0.708, + "ap-southeast-1": 0.368, + "ap-southeast-2": 0.748, + "ap-southeast-3": 1.116, "ap-southeast-4": 0.368, "ca-central-1": 0.688, "eu-central-1": 0.744, - "eu-central-2": 0.0, + "eu-central-2": 0.818, "eu-north-1": 0.368, "eu-south-1": 0.368, - "eu-south-2": 1.125, + "eu-south-2": 1.056, "eu-west-1": 0.368, - "eu-west-2": 0.724, + "eu-west-2": 0.0, "eu-west-3": 0.724, - "il-central-1": 0.368, + "il-central-1": 0.722, "me-central-1": 0.368, "me-south-1": 0.368, "sa-east-1": 0.996, "us-east-1": 0.368, - "us-east-2": 0.624, + "us-east-2": 0.0, "us-gov-east-1": 0.368, - "us-gov-west-1": 1.12, - "us-west-1": 0.0, + "us-gov-west-1": 0.752, + "us-west-1": 0.688, "us-west-2": 0.686 }, "i3.4xlarge": { @@ -88066,11 +100186,11 @@ "ap-northeast-1": 1.464, "ap-northeast-2": 1.464, "ap-northeast-3": 0.736, - "ap-south-1": 1.416, - "ap-south-2": 0.736, + "ap-south-1": 0.736, + "ap-south-2": 0.0, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, - "ap-southeast-3": 0.736, + "ap-southeast-3": 2.382, "ap-southeast-4": 0.736, "ca-central-1": 1.376, "eu-central-1": 0.736, @@ -88079,40 +100199,40 @@ "eu-south-1": 0.736, "eu-south-2": 0.736, "eu-west-1": 0.736, - "eu-west-2": 0.0, + "eu-west-2": 0.736, "eu-west-3": 0.736, "il-central-1": 1.445, "me-central-1": 0.736, "me-south-1": 0.736, - "sa-east-1": 2.191, + "sa-east-1": 2.927, "us-east-1": 1.248, "us-east-2": 0.736, "us-gov-east-1": 0.736, "us-gov-west-1": 0.736, - "us-west-1": 0.0, + "us-west-1": 2.25, "us-west-2": 0.736 }, "i3.8xlarge": { "af-south-1": 1.472, "ap-east-1": 1.472, "ap-northeast-1": 4.693, - "ap-northeast-2": 3.221, + "ap-northeast-2": 1.472, "ap-northeast-3": 1.472, - "ap-south-1": 0.0, + "ap-south-1": 1.472, "ap-south-2": 1.472, - "ap-southeast-1": 1.472, - "ap-southeast-2": 0.0, + "ap-southeast-1": 4.464, + "ap-southeast-2": 2.992, "ap-southeast-3": 1.472, "ap-southeast-4": 1.472, "ca-central-1": 0.0, - "eu-central-1": 0.0, + "eu-central-1": 1.472, "eu-central-2": 1.472, "eu-north-1": 1.472, "eu-south-1": 1.472, "eu-south-2": 1.472, "eu-west-1": 2.752, - "eu-west-2": 2.896, - "eu-west-3": 0.0, + "eu-west-2": 1.472, + "eu-west-3": 1.472, "il-central-1": 2.89, "me-central-1": 4.802, "me-south-1": 1.472, @@ -88122,7 +100242,7 @@ "us-gov-east-1": 1.472, "us-gov-west-1": 4.48, "us-west-1": 1.472, - "us-west-2": 1.472 + "us-west-2": 2.496 }, "i3.16xlarge": { "af-south-1": 2.944, @@ -88131,28 +100251,28 @@ "ap-northeast-2": 2.944, "ap-northeast-3": 2.944, "ap-south-1": 2.944, - "ap-south-2": 2.944, + "ap-south-2": 8.608, "ap-southeast-1": 5.984, "ap-southeast-2": 2.944, "ap-southeast-3": 2.944, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.944, "ca-central-1": 5.504, - "eu-central-1": 5.952, + "eu-central-1": 8.896, "eu-central-2": 2.944, "eu-north-1": 2.944, "eu-south-1": 2.944, "eu-south-2": 2.944, - "eu-west-1": 5.504, + "eu-west-1": 2.944, "eu-west-2": 5.792, "eu-west-3": 2.944, "il-central-1": 5.779, - "me-central-1": 0.0, + "me-central-1": 2.944, "me-south-1": 2.944, "sa-east-1": 2.944, - "us-east-1": 4.992, + "us-east-1": 7.936, "us-east-2": 4.992, "us-gov-east-1": 2.944, - "us-gov-west-1": 2.944, + "us-gov-west-1": 6.016, "us-west-1": 8.448, "us-west-2": 2.944 }, @@ -88161,24 +100281,25 @@ "ap-east-1": 0.092, "ap-northeast-1": 0.092, "ap-northeast-2": 0.092, - "ap-northeast-3": 0.266, + "ap-northeast-3": 0.092, "ap-south-1": 0.092, - "ap-south-2": 0.092, + "ap-south-2": 0.257, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, "ap-southeast-3": 0.092, "ap-southeast-4": 0.271, "ca-central-1": 0.092, + "ca-west-1": 0.092, "eu-central-1": 0.092, "eu-central-2": 0.092, "eu-north-1": 0.092, - "eu-south-1": 0.092, - "eu-south-2": 0.092, - "eu-west-1": 0.358, + "eu-south-1": 0.354, + "eu-south-2": 0.25, + "eu-west-1": 0.0, "eu-west-2": 0.092, "eu-west-3": 0.355, - "il-central-1": 0.28, - "me-central-1": 0.367, + "il-central-1": 0.0, + "me-central-1": 0.293, "me-south-1": 0.092, "sa-east-1": 0.092, "us-east-1": 0.092, @@ -88186,71 +100307,73 @@ "us-gov-east-1": 0.092, "us-gov-west-1": 0.0, "us-west-1": 0.092, - "us-west-2": 0.0, + "us-west-2": 0.092, "us-west-2-lax-1": 0.092 }, "i3en.xlarge": { - "af-south-1": 0.184, + "af-south-1": 0.0, "ap-east-1": 0.184, "ap-northeast-1": 0.184, "ap-northeast-2": 0.184, "ap-northeast-3": 0.184, "ap-south-1": 0.184, - "ap-south-2": 0.698, + "ap-south-2": 0.184, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.542, - "ap-southeast-4": 0.184, + "ap-southeast-3": 0.761, + "ap-southeast-4": 0.761, "ca-central-1": 0.184, + "ca-west-1": 0.184, "eu-central-1": 0.184, "eu-central-2": 0.184, "eu-north-1": 0.184, - "eu-south-1": 0.708, + "eu-south-1": 0.184, "eu-south-2": 0.184, - "eu-west-1": 0.184, + "eu-west-1": 0.5, "eu-west-2": 0.184, "eu-west-3": 0.71, "il-central-1": 0.525, - "me-central-1": 0.184, - "me-south-1": 0.548, + "me-central-1": 0.0, + "me-south-1": 0.184, "sa-east-1": 0.184, "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, "us-gov-west-1": 0.546, "us-west-1": 0.184, - "us-west-2": 0.452, + "us-west-2": 0.481, "us-west-2-lax-1": 0.726 }, "i3en.metal": { - "af-south-1": 18.672, + "af-south-1": 0.0, "ap-east-1": 4.416, "ap-northeast-1": 4.416, "ap-northeast-2": 4.416, "ap-northeast-3": 0.0, "ap-south-1": 4.416, "ap-south-2": 12.336, - "ap-southeast-1": 4.416, + "ap-southeast-1": 17.424, "ap-southeast-2": 4.416, "ap-southeast-3": 13.008, "ap-southeast-4": 4.416, "ca-central-1": 4.416, + "ca-west-1": 12.0, "eu-central-1": 4.416, "eu-central-2": 14.256, "eu-north-1": 4.416, "eu-south-1": 4.416, - "eu-south-2": 12.0, + "eu-south-2": 4.416, "eu-west-1": 16.416, - "eu-west-2": 4.416, + "eu-west-2": 12.624, "eu-west-3": 17.04, "il-central-1": 4.416, "me-central-1": 4.416, - "me-south-1": 4.416, + "me-south-1": 13.142, "sa-east-1": 4.416, "us-east-1": 15.264, "us-east-2": 15.264, "us-gov-east-1": 4.416, - "us-gov-west-1": 13.104, + "us-gov-west-1": 4.416, "us-west-1": 16.416, "us-west-2": 4.416, "us-west-2-lax-1": 4.416 @@ -88268,57 +100391,59 @@ "ap-southeast-3": 1.155, "ap-southeast-4": 0.368, "ca-central-1": 0.368, + "ca-west-1": 0.368, "eu-central-1": 0.368, "eu-central-2": 0.0, "eu-north-1": 0.368, - "eu-south-1": 0.368, + "eu-south-1": 0.0, "eu-south-2": 0.368, "eu-west-1": 0.368, - "eu-west-2": 0.368, + "eu-west-2": 1.052, "eu-west-3": 1.42, - "il-central-1": 1.486, + "il-central-1": 0.368, "me-central-1": 0.368, "me-south-1": 0.368, "sa-east-1": 0.368, "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 1.46, + "us-gov-west-1": 0.368, "us-west-1": 0.368, "us-west-2": 1.331, "us-west-2-lax-1": 1.453 }, "i3en.3xlarge": { - "af-south-1": 2.45, + "af-south-1": 2.334, "ap-east-1": 0.552, "ap-northeast-1": 0.552, "ap-northeast-2": 0.552, "ap-northeast-3": 2.251, "ap-south-1": 0.552, - "ap-south-2": 2.094, + "ap-south-2": 0.0, "ap-southeast-1": 0.552, "ap-southeast-2": 0.552, "ap-southeast-3": 0.552, "ap-southeast-4": 0.552, "ca-central-1": 0.552, + "ca-west-1": 0.552, "eu-central-1": 0.552, "eu-central-2": 0.552, "eu-north-1": 0.552, - "eu-south-1": 0.552, - "eu-south-2": 1.5, - "eu-west-1": 1.5, - "eu-west-2": 0.552, + "eu-south-1": 2.125, + "eu-south-2": 0.552, + "eu-west-1": 1.598, + "eu-west-2": 1.578, "eu-west-3": 2.13, - "il-central-1": 2.127, + "il-central-1": 1.677, "me-central-1": 1.757, - "me-south-1": 1.75, + "me-south-1": 0.552, "sa-east-1": 0.552, "us-east-1": 0.552, "us-east-2": 0.552, "us-gov-east-1": 0.552, "us-gov-west-1": 1.638, "us-west-1": 0.552, - "us-west-2": 0.552, + "us-west-2": 0.0, "us-west-2-lax-1": 2.179 }, "i3en.6xlarge": { @@ -88331,25 +100456,26 @@ "ap-south-2": 0.0, "ap-southeast-1": 1.104, "ap-southeast-2": 1.104, - "ap-southeast-3": 1.104, - "ap-southeast-4": 1.104, + "ap-southeast-3": 3.464, + "ap-southeast-4": 4.356, "ca-central-1": 1.104, + "ca-west-1": 1.104, "eu-central-1": 1.104, - "eu-central-2": 4.9, + "eu-central-2": 1.104, "eu-north-1": 1.104, - "eu-south-1": 1.104, + "eu-south-1": 4.25, "eu-south-2": 1.104, "eu-west-1": 0.0, "eu-west-2": 1.104, "eu-west-3": 4.26, "il-central-1": 1.104, "me-central-1": 4.404, - "me-south-1": 0.0, + "me-south-1": 1.104, "sa-east-1": 1.104, "us-east-1": 1.104, "us-east-2": 1.104, "us-gov-east-1": 1.104, - "us-gov-west-1": 1.104, + "us-gov-west-1": 3.489, "us-west-1": 1.104, "us-west-2": 1.104, "us-west-2-lax-1": 1.104 @@ -88365,26 +100491,27 @@ "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, "ap-southeast-3": 6.928, - "ap-southeast-4": 2.208, + "ap-southeast-4": 0.0, "ca-central-1": 2.208, + "ca-west-1": 6.0, "eu-central-1": 2.208, - "eu-central-2": 9.336, + "eu-central-2": 2.208, "eu-north-1": 2.208, - "eu-south-1": 2.208, - "eu-south-2": 6.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 0.0, - "eu-west-2": 2.208, + "eu-west-2": 6.312, "eu-west-3": 8.52, "il-central-1": 6.3, "me-central-1": 2.208, - "me-south-1": 8.779, + "me-south-1": 0.0, "sa-east-1": 2.208, "us-east-1": 2.208, "us-east-2": 2.208, "us-gov-east-1": 2.208, - "us-gov-west-1": 6.977, + "us-gov-west-1": 6.552, "us-west-1": 2.208, - "us-west-2": 7.984, + "us-west-2": 0.0, "us-west-2-lax-1": 2.208 }, "i3en.24xlarge": { @@ -88394,22 +100521,23 @@ "ap-northeast-2": 4.416, "ap-northeast-3": 4.416, "ap-south-1": 4.416, - "ap-south-2": 12.336, + "ap-south-2": 4.416, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, "ap-southeast-3": 4.416, - "ap-southeast-4": 13.008, + "ap-southeast-4": 4.416, "ca-central-1": 4.416, + "ca-west-1": 12.0, "eu-central-1": 4.416, "eu-central-2": 14.256, "eu-north-1": 4.416, - "eu-south-1": 17.002, + "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 12.0, "eu-west-2": 4.416, "eu-west-3": 17.04, - "il-central-1": 17.016, - "me-central-1": 4.416, + "il-central-1": 4.416, + "me-central-1": 17.616, "me-south-1": 4.416, "sa-east-1": 4.416, "us-east-1": 4.416, @@ -88427,216 +100555,318 @@ "af-south-1": 0.092, "ap-east-1": 0.319, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.092, + "ap-northeast-2": 0.293, "ap-northeast-3": 0.0, "ap-south-1": 0.287, - "ap-southeast-1": 0.092, - "ap-southeast-2": 0.318, - "ap-southeast-4": 0.092, - "ca-central-1": 0.281, + "ap-south-2": 0.195, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.206, + "ap-southeast-4": 0.298, + "ca-central-1": 0.092, + "ca-west-1": 0.092, "eu-central-1": 0.0, - "eu-north-1": 0.092, + "eu-central-2": 0.0, + "eu-north-1": 0.0, "eu-south-1": 0.092, "eu-west-1": 0.208, "eu-west-2": 0.0, "eu-west-3": 0.092, "il-central-1": 0.199, - "me-south-1": 0.092, - "sa-east-1": 0.0, - "us-east-1": 0.092, + "me-central-1": 0.208, + "me-south-1": 0.3, + "sa-east-1": 0.301, + "us-east-1": 0.281, "us-east-2": 0.092, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.227, "us-gov-west-1": 0.319, "us-west-1": 0.0, "us-west-2": 0.092 }, "i4i.xlarge": { "af-south-1": 0.0, - "ap-east-1": 0.499, - "ap-northeast-1": 0.627, + "ap-east-1": 0.683, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.627, - "ap-northeast-3": 0.0, - "ap-south-1": 0.612, - "ap-southeast-1": 0.184, + "ap-northeast-3": 0.184, + "ap-south-1": 0.0, + "ap-south-2": 0.184, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.453, + "ap-southeast-3": 0.411, "ap-southeast-4": 0.0, - "ca-central-1": 0.378, - "eu-central-1": 0.0, + "ca-central-1": 0.6, + "ca-west-1": 0.0, + "eu-central-1": 0.184, + "eu-central-2": 0.184, "eu-north-1": 0.184, "eu-south-1": 0.582, "eu-west-1": 0.184, - "eu-west-2": 0.582, + "eu-west-2": 0.184, "eu-west-3": 0.0, - "il-central-1": 0.397, + "il-central-1": 0.184, + "me-central-1": 0.184, "me-south-1": 0.184, "sa-east-1": 0.603, "us-east-1": 0.0, "us-east-2": 0.184, - "us-gov-east-1": 0.639, - "us-gov-west-1": 0.184, + "us-gov-east-1": 0.414, + "us-gov-west-1": 0.455, "us-west-1": 0.378, "us-west-2": 0.562 }, "i4i.metal": { - "af-south-1": 20.32, + "af-south-1": 5.888, "ap-east-1": 20.39, "ap-northeast-1": 0.0, "ap-northeast-2": 5.888, - "ap-northeast-3": 18.771, - "ap-south-1": 0.0, + "ap-northeast-3": 5.888, + "ap-south-1": 12.461, + "ap-south-2": 5.888, "ap-southeast-1": 19.053, "ap-southeast-2": 5.888, - "ap-southeast-4": 5.888, - "ca-central-1": 5.888, + "ap-southeast-3": 0.0, + "ap-southeast-4": 13.165, + "ca-central-1": 17.997, + "ca-west-1": 5.888, "eu-central-1": 13.094, + "eu-central-2": 5.888, "eu-north-1": 17.363, "eu-south-1": 12.742, - "eu-west-1": 5.888, - "eu-west-2": 18.63, - "eu-west-3": 5.888, - "il-central-1": 12.714, + "eu-west-1": 12.109, + "eu-west-2": 5.888, + "eu-west-3": 12.742, + "il-central-1": 5.888, + "me-central-1": 13.306, "me-south-1": 19.194, - "sa-east-1": 17.53, - "us-east-1": 5.888, + "sa-east-1": 23.418, + "us-east-1": 16.87, "us-east-2": 5.888, "us-gov-east-1": 5.888, - "us-gov-west-1": 5.888, + "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-2": 16.87 }, "i4i.2xlarge": { "af-south-1": 0.368, "ap-east-1": 1.274, "ap-northeast-1": 0.368, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.886, + "ap-northeast-3": 0.0, "ap-south-1": 0.368, + "ap-south-2": 0.368, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "ap-southeast-4": 0.368, - "ca-central-1": 0.0, + "ap-southeast-2": 0.368, + "ap-southeast-3": 0.823, + "ap-southeast-4": 0.905, + "ca-central-1": 0.757, + "ca-west-1": 0.757, "eu-central-1": 0.368, + "eu-central-2": 0.368, "eu-north-1": 0.368, "eu-south-1": 0.368, - "eu-west-1": 0.368, + "eu-west-1": 0.757, "eu-west-2": 0.368, "eu-west-3": 0.368, "il-central-1": 0.795, - "me-south-1": 0.832, - "sa-east-1": 1.205, - "us-east-1": 0.755, - "us-east-2": 1.054, - "us-gov-east-1": 0.0, + "me-central-1": 0.832, + "me-south-1": 0.915, + "sa-east-1": 0.368, + "us-east-1": 0.686, + "us-east-2": 0.686, + "us-gov-east-1": 0.368, "us-gov-west-1": 0.368, "us-west-1": 0.368, "us-west-2": 0.368 }, "i4i.4xlarge": { "af-south-1": 0.736, - "ap-east-1": 0.736, - "ap-northeast-1": 0.0, + "ap-east-1": 1.994, + "ap-northeast-1": 0.736, "ap-northeast-2": 1.61, - "ap-northeast-3": 0.736, - "ap-south-1": 0.736, + "ap-northeast-3": 2.346, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.736, - "ap-southeast-2": 1.81, + "ap-southeast-2": 1.646, + "ap-southeast-3": 1.646, "ap-southeast-4": 0.736, - "ca-central-1": 0.736, + "ca-central-1": 2.401, + "ca-west-1": 0.736, "eu-central-1": 0.736, + "eu-central-2": 0.736, "eu-north-1": 0.736, "eu-south-1": 0.736, - "eu-west-1": 0.736, - "eu-west-2": 0.736, + "eu-west-1": 1.665, + "eu-west-2": 1.593, "eu-west-3": 2.329, "il-central-1": 0.736, + "me-central-1": 1.663, "me-south-1": 0.736, "sa-east-1": 2.927, - "us-east-1": 2.246, + "us-east-1": 2.109, "us-east-2": 2.246, "us-gov-east-1": 0.0, "us-gov-west-1": 2.556, "us-west-1": 0.736, - "us-west-2": 1.373 + "us-west-2": 0.736 }, "i4i.8xlarge": { "af-south-1": 0.0, - "ap-east-1": 3.988, + "ap-east-1": 1.472, "ap-northeast-1": 1.472, "ap-northeast-2": 1.472, "ap-northeast-3": 1.472, "ap-south-1": 1.472, + "ap-south-2": 3.115, "ap-southeast-1": 0.0, - "ap-southeast-2": 4.763, + "ap-southeast-2": 1.472, + "ap-southeast-3": 3.291, "ap-southeast-4": 1.472, - "ca-central-1": 0.0, - "eu-central-1": 4.746, + "ca-central-1": 1.472, + "ca-west-1": 0.0, + "eu-central-1": 3.601, + "eu-central-2": 1.472, "eu-north-1": 1.472, "eu-south-1": 0.0, "eu-west-1": 3.027, "eu-west-2": 0.0, - "eu-west-3": 3.504, + "eu-west-3": 1.472, "il-central-1": 3.179, + "me-central-1": 4.798, "me-south-1": 5.131, "sa-east-1": 0.0, "us-east-1": 1.472, "us-east-2": 1.472, - "us-gov-east-1": 3.309, - "us-gov-west-1": 1.472, - "us-west-1": 3.33, + "us-gov-east-1": 5.112, + "us-gov-west-1": 0.0, + "us-west-1": 1.472, "us-west-2": 1.472 }, + "i4i.12xlarge": { + "af-south-1": 7.62, + "ap-east-1": 8.19, + "ap-northeast-1": 2.208, + "ap-northeast-2": 7.522, + "ap-northeast-3": 4.831, + "ap-south-1": 0.0, + "ap-south-2": 2.208, + "ap-southeast-1": 4.937, + "ap-southeast-2": 0.0, + "ap-southeast-3": 5.43, + "ap-southeast-4": 0.0, + "ca-central-1": 4.995, + "ca-west-1": 4.541, + "eu-central-1": 4.91, + "eu-central-2": 2.208, + "eu-north-1": 4.303, + "eu-south-1": 2.208, + "eu-west-1": 0.0, + "eu-west-2": 4.778, + "eu-west-3": 4.778, + "me-central-1": 4.99, + "me-south-1": 2.208, + "sa-east-1": 6.574, + "us-east-1": 6.738, + "us-east-2": 6.738, + "us-gov-east-1": 4.963, + "us-gov-west-1": 2.208, + "us-west-1": 2.208, + "us-west-2": 4.118 + }, "i4i.16xlarge": { - "af-south-1": 7.938, + "af-south-1": 10.882, "ap-east-1": 2.944, - "ap-northeast-1": 9.386, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.944, "ap-northeast-3": 10.03, - "ap-south-1": 6.23, + "ap-south-1": 2.944, + "ap-south-2": 2.944, "ap-southeast-1": 2.944, "ap-southeast-2": 2.944, - "ap-southeast-4": 9.526, - "ca-central-1": 0.0, - "eu-central-1": 2.944, + "ap-southeast-3": 10.185, + "ap-southeast-4": 2.944, + "ca-central-1": 2.944, + "ca-west-1": 6.054, + "eu-central-1": 6.547, + "eu-central-2": 7.202, "eu-north-1": 6.311, "eu-south-1": 9.952, "eu-west-1": 6.054, "eu-west-2": 2.944, - "eu-west-3": 2.944, + "eu-west-3": 0.0, "il-central-1": 0.0, - "me-south-1": 2.944, + "me-central-1": 2.944, + "me-south-1": 7.318, "sa-east-1": 2.944, - "us-east-1": 5.491, - "us-east-2": 6.04, + "us-east-1": 8.984, + "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 2.944, - "us-west-1": 8.998, + "us-west-1": 0.0, "us-west-2": 8.984 }, + "i4i.24xlarge": { + "af-south-1": 4.416, + "ap-east-1": 10.8768, + "ap-northeast-1": 4.416, + "ap-northeast-2": 15.04464, + "ap-northeast-3": 9.6624, + "ap-south-1": 0.0, + "ap-south-2": 9.3456, + "ap-southeast-1": 9.8736, + "ap-southeast-2": 9.8736, + "ap-southeast-3": 15.27696, + "ap-southeast-4": 9.8736, + "ca-central-1": 9.0816, + "ca-west-1": 9.98976, + "eu-central-1": 9.8208, + "eu-central-2": 16.29917, + "eu-north-1": 4.416, + "eu-south-1": 9.5568, + "eu-west-1": 9.0816, + "eu-west-2": 9.5568, + "eu-west-3": 4.416, + "me-central-1": 9.9792, + "me-south-1": 4.416, + "sa-east-1": 13.1472, + "us-east-1": 8.2368, + "us-east-2": 8.2368, + "us-gov-east-1": 9.9264, + "us-gov-west-1": 4.416, + "us-west-1": 9.0816, + "us-west-2": 8.2368 + }, "i4i.32xlarge": { - "af-south-1": 5.888, - "ap-east-1": 5.888, - "ap-northeast-1": 5.888, + "af-south-1": 20.32, + "ap-east-1": 14.5024, + "ap-northeast-1": 12.8832, "ap-northeast-2": 12.8832, "ap-northeast-3": 12.8832, - "ap-south-1": 12.4608, - "ap-southeast-1": 5.888, + "ap-south-1": 18.3488, + "ap-south-2": 0.0, + "ap-southeast-1": 19.0528, "ap-southeast-2": 5.888, + "ap-southeast-3": 5.888, "ap-southeast-4": 5.888, "ca-central-1": 5.888, + "ca-west-1": 12.1088, "eu-central-1": 0.0, + "eu-central-2": 5.888, "eu-north-1": 17.3632, - "eu-south-1": 12.7424, + "eu-south-1": 18.6304, "eu-west-1": 12.1088, "eu-west-2": 5.888, - "eu-west-3": 0.0, + "eu-west-3": 18.6304, "il-central-1": 0.0, + "me-central-1": 13.3056, "me-south-1": 5.888, "sa-east-1": 0.0, - "us-east-1": 5.888, - "us-east-2": 0.0, - "us-gov-east-1": 5.888, + "us-east-1": 16.8704, + "us-east-2": 5.888, + "us-gov-east-1": 0.0, "us-gov-west-1": 5.888, - "us-west-1": 17.9968, + "us-west-1": 5.888, "us-west-2": 5.888 }, "m1.small": { @@ -88724,252 +100954,255 @@ "eu-central-1": 0.046, "eu-west-1": 0.0, "sa-east-1": 0.095, - "us-east-1": 0.046, - "us-gov-west-1": 0.046, + "us-east-1": 0.067, + "us-gov-west-1": 0.084, "us-west-1": 0.046, "us-west-2": 0.143 }, "m3.large": { - "ap-northeast-1": 0.193, - "ap-northeast-2": 0.201685, + "ap-northeast-1": 0.092, + "ap-northeast-2": 0.275, "ap-southeast-1": 0.092, - "ap-southeast-2": 0.092, - "eu-central-1": 0.092, + "ap-southeast-2": 0.186, + "eu-central-1": 0.158, "eu-west-1": 0.146, "sa-east-1": 0.092, - "us-east-1": 0.133, - "us-gov-west-1": 0.092, + "us-east-1": 0.092, + "us-gov-west-1": 0.185, "us-west-1": 0.0, - "us-west-2": 0.285 + "us-west-2": 0.133 }, "m3.xlarge": { - "ap-northeast-1": 0.583, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, - "eu-central-1": 0.184, - "eu-west-1": 0.0, + "ap-southeast-2": 0.372, + "eu-central-1": 0.567, + "eu-west-1": 0.184, "sa-east-1": 0.381, "us-east-1": 0.266, - "us-gov-west-1": 0.37, - "us-west-1": 0.308, + "us-gov-west-1": 0.0, + "us-west-1": 0.184, "us-west-2": 0.184 }, "m3.2xlarge": { - "ap-northeast-1": 0.368, - "ap-northeast-2": 0.80465, + "ap-northeast-1": 0.77, + "ap-northeast-2": 1.1, "ap-southeast-1": 0.784, "ap-southeast-2": 0.0, - "eu-central-1": 0.632, + "eu-central-1": 0.0, "eu-west-1": 0.585, "sa-east-1": 0.0, - "us-east-1": 0.368, + "us-east-1": 0.0, "us-gov-west-1": 1.294, "us-west-1": 0.368, - "us-west-2": 0.368 + "us-west-2": 0.0 }, "m4.large": { - "ap-northeast-1": 0.129, + "ap-northeast-1": 0.092, "ap-northeast-2": 0.123, - "ap-northeast-3": 0.129, - "ap-south-1": 0.092, + "ap-northeast-3": 0.092, + "ap-south-1": 0.105, "ap-southeast-1": 0.125, "ap-southeast-2": 0.092, - "ca-central-1": 0.2141, + "ca-central-1": 0.111, "eu-central-1": 0.212, - "eu-west-1": 0.111, - "eu-west-2": 0.116, + "eu-west-1": 0.0, + "eu-west-2": 0.1276, "sa-east-1": 0.0, - "us-east-1": 0.1, + "us-east-1": 0.092, "us-east-2": 0.192, "us-gov-west-1": 0.126, - "us-west-1": 0.117, + "us-west-1": 0.092, "us-west-2": 0.0 }, "m4.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.184, + "ap-northeast-2": 0.246, "ap-northeast-3": 0.258, - "ap-south-1": 0.0, - "ap-southeast-1": 0.25, + "ap-south-1": 0.184, + "ap-southeast-1": 0.459, "ap-southeast-2": 0.184, "ca-central-1": 0.222, "eu-central-1": 0.24, - "eu-west-1": 0.222, - "eu-west-2": 0.184, - "sa-east-1": 0.0, - "us-east-1": 0.184, + "eu-west-1": 0.4282, + "eu-west-2": 0.232, + "sa-east-1": 0.184, + "us-east-1": 0.404, "us-east-2": 0.2, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.252, "us-west-1": 0.0, - "us-west-2": 0.404 + "us-west-2": 0.2 }, "m4.2xlarge": { - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.492, + "ap-northeast-1": 0.368, + "ap-northeast-2": 0.368, "ap-northeast-3": 0.0, "ap-south-1": 0.368, "ap-southeast-1": 0.918, - "ap-southeast-2": 0.0, - "ca-central-1": 0.8564, + "ap-southeast-2": 0.55, + "ca-central-1": 0.0, "eu-central-1": 0.48, "eu-west-1": 0.368, "eu-west-2": 0.368, - "sa-east-1": 0.636, + "sa-east-1": 0.368, "us-east-1": 0.4, "us-east-2": 0.4, "us-gov-west-1": 0.872, - "us-west-1": 0.468, - "us-west-2": 0.4 + "us-west-1": 0.368, + "us-west-2": 0.368 }, "m4.4xlarge": { - "ap-northeast-1": 0.736, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.72, - "ap-northeast-3": 0.0, + "ap-northeast-3": 1.8712, "ap-south-1": 0.0, - "ap-southeast-1": 0.736, + "ap-southeast-1": 1.0, "ap-southeast-2": 1.836, "ca-central-1": 0.888, - "eu-central-1": 1.056, - "eu-west-1": 0.0, + "eu-central-1": 0.736, + "eu-west-1": 1.7128, "eu-west-2": 0.736, "sa-east-1": 0.0, "us-east-1": 0.8, "us-east-2": 0.8, "us-gov-west-1": 0.736, "us-west-1": 0.936, - "us-west-2": 0.0 + "us-west-2": 1.616 }, "m4.10xlarge": { - "ap-northeast-1": 2.58, - "ap-northeast-2": 2.46, + "ap-northeast-1": 0.0, + "ap-northeast-2": 1.84, "ap-south-1": 2.1, "ap-southeast-1": 0.0, - "ap-southeast-2": 1.84, + "ap-southeast-2": 2.5, "ca-central-1": 4.06, - "eu-central-1": 1.84, - "eu-west-1": 1.84, + "eu-central-1": 0.0, + "eu-west-1": 0.0, "eu-west-2": 1.84, - "sa-east-1": 1.84, - "us-east-1": 3.84, - "us-east-2": 3.84, + "sa-east-1": 3.18, + "us-east-1": 1.84, + "us-east-2": 0.0, "us-gov-west-1": 1.84, - "us-west-1": 1.84, - "us-west-2": 3.84 + "us-west-1": 2.34, + "us-west-2": 2.0 }, "m4.16xlarge": { "ap-northeast-1": 2.944, "ap-northeast-2": 3.936, "ap-northeast-3": 4.128, - "ap-south-1": 0.0, + "ap-south-1": 2.944, "ap-southeast-1": 4.0, "ap-southeast-2": 2.944, - "ca-central-1": 3.552, + "ca-central-1": 2.944, "eu-central-1": 3.84, "eu-west-1": 3.552, "eu-west-2": 3.712, "sa-east-1": 5.088, "us-east-1": 3.2, - "us-east-2": 6.144, - "us-gov-west-1": 2.944, + "us-east-2": 3.2, + "us-gov-west-1": 4.032, "us-west-1": 3.744, "us-west-2": 3.2 }, "m5.large": { - "af-south-1": 0.127, - "ap-east-1": 0.092, + "af-south-1": 0.092, + "ap-east-1": 0.132, "ap-northeast-1": 0.092, - "ap-northeast-2": 0.125, + "ap-northeast-2": 0.118, "ap-northeast-3": 0.092, - "ap-south-1": 0.193, + "ap-south-1": 0.0, "ap-south-2": 0.092, - "ap-southeast-1": 0.127, - "ap-southeast-2": 0.12, - "ap-southeast-3": 0.092, + "ap-southeast-1": 0.12, + "ap-southeast-2": 0.0, + "ap-southeast-3": 0.0, "ap-southeast-4": 0.092, "ca-central-1": 0.0, - "eu-central-1": 0.115, + "ca-west-1": 0.107, + "eu-central-1": 0.092, "eu-central-2": 0.092, "eu-north-1": 0.0, "eu-south-1": 0.112, - "eu-south-2": 0.205, - "eu-west-1": 0.107, + "eu-south-2": 0.199, + "eu-west-1": 0.114, "eu-west-2": 0.111, "eu-west-3": 0.0, - "il-central-1": 0.124, + "il-central-1": 0.092, "me-central-1": 0.125, "me-south-1": 0.092, "sa-east-1": 0.153, "us-east-1": 0.096, - "us-east-2": 0.102, - "us-gov-east-1": 0.0, + "us-east-2": 0.092, + "us-gov-east-1": 0.121, "us-gov-west-1": 0.0, "us-west-1": 0.112, "us-west-2": 0.092, - "us-west-2-lax-1": 0.207 + "us-west-2-lax-1": 0.092 }, "m5.xlarge": { - "af-south-1": 0.269, + "af-south-1": 0.0, "ap-east-1": 0.184, "ap-northeast-1": 0.248, "ap-northeast-2": 0.236, "ap-northeast-3": 0.248, "ap-south-1": 0.202, - "ap-south-2": 0.0, - "ap-southeast-1": 0.24, + "ap-south-2": 0.398, + "ap-southeast-1": 0.184, "ap-southeast-2": 0.24, "ap-southeast-3": 0.0, "ap-southeast-4": 0.184, "ca-central-1": 0.184, - "eu-central-1": 0.246, - "eu-central-2": 0.452, + "ca-west-1": 0.0, + "eu-central-1": 0.0, + "eu-central-2": 0.0, "eu-north-1": 0.204, - "eu-south-1": 0.224, - "eu-south-2": 0.214, - "eu-west-1": 0.412, + "eu-south-1": 0.184, + "eu-south-2": 0.184, + "eu-west-1": 0.0, "eu-west-2": 0.184, "eu-west-3": 0.184, - "il-central-1": 0.225, + "il-central-1": 0.431, "me-central-1": 0.184, "me-south-1": 0.235, - "sa-east-1": 0.323, + "sa-east-1": 0.184, "us-east-1": 0.192, "us-east-2": 0.0, "us-gov-east-1": 0.242, - "us-gov-west-1": 0.426, + "us-gov-west-1": 0.442, "us-west-1": 0.184, - "us-west-2": 0.192, + "us-west-2": 0.184, "us-west-2-lax-1": 0.414 }, "m5.metal": { - "af-south-1": 10.512, + "af-south-1": 6.096, "ap-east-1": 6.336, - "ap-northeast-1": 4.416, + "ap-northeast-1": 5.952, "ap-northeast-2": 4.416, "ap-northeast-3": 4.416, "ap-south-1": 0.0, "ap-south-2": 4.416, - "ap-southeast-1": 10.176, - "ap-southeast-2": 5.76, + "ap-southeast-1": 5.76, + "ap-southeast-2": 4.416, "ap-southeast-3": 4.416, "ap-southeast-4": 10.176, "ca-central-1": 5.136, + "ca-west-1": 5.136, "eu-central-1": 9.936, - "eu-central-2": 10.488, - "eu-north-1": 9.312, - "eu-south-1": 5.376, + "eu-central-2": 6.072, + "eu-north-1": 4.896, + "eu-south-1": 9.792, "eu-south-2": 4.416, - "eu-west-1": 4.416, + "eu-west-1": 5.136, "eu-west-2": 5.328, "eu-west-3": 5.376, "il-central-1": 5.393, - "me-central-1": 4.416, + "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 4.416, - "us-east-1": 4.608, - "us-east-2": 4.608, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-east-1": 5.808, + "us-gov-west-1": 5.808, "us-west-1": 4.416, "us-west-2": 4.416, "us-west-2-lax-1": 9.946 @@ -88977,85 +101210,88 @@ "m5.2xlarge": { "af-south-1": 0.368, "ap-east-1": 0.528, - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.368, "ap-northeast-2": 0.368, "ap-northeast-3": 0.368, "ap-south-1": 0.404, "ap-south-2": 0.0, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.509, - "ap-southeast-4": 0.48, - "ca-central-1": 0.454, - "eu-central-1": 0.368, - "eu-central-2": 0.506, - "eu-north-1": 0.368, - "eu-south-1": 0.448, + "ap-southeast-3": 0.877, + "ap-southeast-4": 0.368, + "ca-central-1": 0.0, + "ca-west-1": 0.368, + "eu-central-1": 0.46, + "eu-central-2": 0.904, + "eu-north-1": 0.408, + "eu-south-1": 0.368, "eu-south-2": 0.368, - "eu-west-1": 0.368, + "eu-west-1": 0.428, "eu-west-2": 0.0, "eu-west-3": 0.448, - "il-central-1": 0.0, - "me-central-1": 0.368, + "il-central-1": 0.449, + "me-central-1": 0.839, "me-south-1": 0.368, - "sa-east-1": 0.368, - "us-east-1": 0.0, + "sa-east-1": 0.612, + "us-east-1": 0.368, "us-east-2": 0.368, - "us-gov-east-1": 0.484, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.368, "us-west-1": 0.448, "us-west-2": 0.0, "us-west-2-lax-1": 0.829 }, "m5.4xlarge": { - "af-south-1": 0.736, + "af-south-1": 1.016, "ap-east-1": 0.736, - "ap-northeast-1": 0.992, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.736, + "ap-northeast-2": 0.944, "ap-northeast-3": 0.736, "ap-south-1": 0.808, "ap-south-2": 0.736, - "ap-southeast-1": 1.755, - "ap-southeast-2": 0.0, + "ap-southeast-1": 0.736, + "ap-southeast-2": 0.96, "ap-southeast-3": 0.0, "ap-southeast-4": 0.736, "ca-central-1": 0.856, - "eu-central-1": 0.736, + "ca-west-1": 0.856, + "eu-central-1": 0.92, "eu-central-2": 1.748, - "eu-north-1": 0.736, - "eu-south-1": 0.95, + "eu-north-1": 0.871, + "eu-south-1": 0.0, "eu-south-2": 0.736, "eu-west-1": 0.736, "eu-west-2": 0.736, "eu-west-3": 0.896, - "il-central-1": 0.0, + "il-central-1": 1.635, "me-central-1": 0.0, "me-south-1": 0.736, - "sa-east-1": 1.96, - "us-east-1": 0.736, + "sa-east-1": 1.224, + "us-east-1": 0.768, "us-east-2": 0.0, "us-gov-east-1": 0.736, "us-gov-west-1": 0.968, - "us-west-1": 0.736, + "us-west-1": 0.896, "us-west-2": 0.768, "us-west-2-lax-1": 0.736 }, "m5.8xlarge": { - "af-south-1": 1.472, - "ap-east-1": 1.472, + "af-south-1": 2.032, + "ap-east-1": 3.584, "ap-northeast-1": 1.984, - "ap-northeast-2": 3.472, + "ap-northeast-2": 3.36, "ap-northeast-3": 0.0, "ap-south-1": 1.472, "ap-south-2": 1.472, - "ap-southeast-1": 1.92, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.92, - "ap-southeast-3": 0.0, - "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ap-southeast-3": 3.392, + "ap-southeast-4": 3.392, + "ca-central-1": 1.712, + "ca-west-1": 1.883, "eu-central-1": 3.312, "eu-central-2": 2.024, - "eu-north-1": 0.0, + "eu-north-1": 1.632, "eu-south-1": 0.0, "eu-south-2": 0.0, "eu-west-1": 0.0, @@ -89064,36 +101300,37 @@ "il-central-1": 1.798, "me-central-1": 1.472, "me-south-1": 1.883, - "sa-east-1": 3.92, + "sa-east-1": 0.0, "us-east-1": 1.536, - "us-east-2": 1.629, - "us-gov-east-1": 1.472, + "us-east-2": 1.536, + "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, "us-west-1": 1.792, "us-west-2": 1.536, - "us-west-2-lax-1": 3.315 + "us-west-2-lax-1": 1.472 }, "m5.12xlarge": { "af-south-1": 3.231, "ap-east-1": 3.168, "ap-northeast-1": 2.208, - "ap-northeast-2": 0.0, - "ap-northeast-3": 2.976, + "ap-northeast-2": 2.832, + "ap-northeast-3": 5.184, "ap-south-1": 2.424, "ap-south-2": 2.208, - "ap-southeast-1": 3.058, - "ap-southeast-2": 2.208, - "ap-southeast-3": 2.208, - "ap-southeast-4": 3.168, + "ap-southeast-1": 0.0, + "ap-southeast-2": 5.278, + "ap-southeast-3": 0.0, + "ap-southeast-4": 2.88, "ca-central-1": 2.208, + "ca-west-1": 0.0, "eu-central-1": 2.208, - "eu-central-2": 3.036, - "eu-north-1": 2.612, + "eu-central-2": 0.0, + "eu-north-1": 2.208, "eu-south-1": 2.688, - "eu-south-2": 2.208, + "eu-south-2": 2.568, "eu-west-1": 2.208, "eu-west-2": 0.0, - "eu-west-3": 2.688, + "eu-west-3": 2.208, "il-central-1": 2.208, "me-central-1": 2.208, "me-south-1": 0.0, @@ -89101,7 +101338,7 @@ "us-east-1": 0.0, "us-east-2": 2.304, "us-gov-east-1": 3.094, - "us-gov-west-1": 2.208, + "us-gov-west-1": 2.904, "us-west-1": 2.208, "us-west-2": 2.304, "us-west-2-lax-1": 4.973 @@ -89111,65 +101348,67 @@ "ap-east-1": 4.224, "ap-northeast-1": 3.968, "ap-northeast-2": 2.944, - "ap-northeast-3": 3.968, + "ap-northeast-3": 4.206, "ap-south-1": 3.232, "ap-south-2": 0.0, "ap-southeast-1": 3.84, - "ap-southeast-2": 4.093, + "ap-southeast-2": 2.944, "ap-southeast-3": 0.0, "ap-southeast-4": 2.944, - "ca-central-1": 3.424, + "ca-central-1": 0.0, + "ca-west-1": 2.944, "eu-central-1": 2.944, - "eu-central-2": 2.944, - "eu-north-1": 6.426, + "eu-central-2": 4.048, + "eu-north-1": 3.264, "eu-south-1": 3.584, "eu-south-2": 2.944, "eu-west-1": 3.424, "eu-west-2": 3.552, - "eu-west-3": 3.584, + "eu-west-3": 6.528, "il-central-1": 3.595, "me-central-1": 6.936, "me-south-1": 3.766, - "sa-east-1": 2.944, + "sa-east-1": 4.896, "us-east-1": 3.259, "us-east-2": 3.072, - "us-gov-east-1": 3.872, + "us-gov-east-1": 2.944, "us-gov-west-1": 3.872, - "us-west-1": 0.0, + "us-west-1": 6.528, "us-west-2": 3.072, - "us-west-2-lax-1": 2.944 + "us-west-2-lax-1": 6.63 }, "m5.24xlarge": { "af-south-1": 4.416, "ap-east-1": 6.336, "ap-northeast-1": 4.416, - "ap-northeast-2": 5.664, + "ap-northeast-2": 10.08, "ap-northeast-3": 5.952, - "ap-south-1": 0.0, + "ap-south-1": 4.416, "ap-south-2": 4.416, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, - "ap-southeast-3": 0.0, + "ap-southeast-3": 4.416, "ap-southeast-4": 4.416, - "ca-central-1": 9.552, - "eu-central-1": 5.52, - "eu-central-2": 6.072, + "ca-central-1": 5.136, + "ca-west-1": 5.136, + "eu-central-1": 4.416, + "eu-central-2": 4.416, "eu-north-1": 4.896, - "eu-south-1": 4.416, + "eu-south-1": 5.376, "eu-south-2": 4.416, "eu-west-1": 4.416, "eu-west-2": 4.416, "eu-west-3": 5.376, "il-central-1": 5.393, "me-central-1": 4.416, - "me-south-1": 10.066, + "me-south-1": 4.416, "sa-east-1": 7.344, "us-east-1": 4.608, "us-east-2": 4.608, "us-gov-east-1": 0.0, "us-gov-west-1": 5.808, - "us-west-1": 4.416, - "us-west-2": 9.024, + "us-west-1": 9.792, + "us-west-2": 0.0, "us-west-2-lax-1": 9.946 }, "m5a.large": { @@ -89483,21 +101722,22 @@ "ap-northeast-2": 0.092, "ap-northeast-3": 0.092, "ap-south-1": 0.092, - "ap-south-2": 0.122, + "ap-south-2": 0.214, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, "ap-southeast-3": 0.092, - "ap-southeast-4": 0.243, + "ap-southeast-4": 0.151, "ca-central-1": 0.126, + "ca-west-1": 0.126, "eu-central-1": 0.0, - "eu-central-2": 0.092, + "eu-central-2": 0.15, "eu-north-1": 0.092, "eu-south-1": 0.092, "eu-south-2": 0.092, "eu-west-1": 0.0, - "eu-west-2": 0.092, + "eu-west-2": 0.131, "eu-west-3": 0.092, - "il-central-1": 0.092, + "il-central-1": 0.224, "me-central-1": 0.139, "me-south-1": 0.092, "sa-east-1": 0.092, @@ -89515,30 +101755,31 @@ "ap-northeast-2": 0.184, "ap-northeast-3": 0.184, "ap-south-1": 0.184, - "ap-south-2": 0.259, + "ap-south-2": 0.184, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.184, + "ap-southeast-3": 0.483, "ap-southeast-4": 0.184, "ca-central-1": 0.252, + "ca-west-1": 0.184, "eu-central-1": 0.272, - "eu-central-2": 0.184, + "eu-central-2": 0.317, "eu-north-1": 0.184, "eu-south-1": 0.184, - "eu-south-2": 0.0, + "eu-south-2": 0.184, "eu-west-1": 0.269, - "eu-west-2": 0.184, + "eu-west-2": 0.463, "eu-west-3": 0.184, - "il-central-1": 0.184, + "il-central-1": 0.265, "me-central-1": 0.184, "me-south-1": 0.184, "sa-east-1": 0.184, "us-east-1": 0.0, - "us-east-2": 0.424, + "us-east-2": 0.226, "us-gov-east-1": 0.184, "us-gov-west-1": 0.286, "us-west-1": 0.184, - "us-west-2": 0.184 + "us-west-2": 0.24 }, "m5d.metal": { "af-south-1": 4.416, @@ -89553,8 +101794,9 @@ "ap-southeast-3": 4.416, "ap-southeast-4": 4.416, "ca-central-1": 4.416, + "ca-west-1": 10.464, "eu-central-1": 4.416, - "eu-central-2": 7.181, + "eu-central-2": 4.416, "eu-north-1": 4.416, "eu-south-1": 4.416, "eu-south-2": 4.416, @@ -89568,7 +101810,7 @@ "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-east-1": 4.416, - "us-gov-west-1": 6.864, + "us-gov-west-1": 4.416, "us-west-1": 4.416, "us-west-2": 4.416 }, @@ -89582,16 +101824,17 @@ "ap-south-2": 0.368, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.598, + "ap-southeast-3": 0.966, "ap-southeast-4": 0.0, "ca-central-1": 0.368, + "ca-west-1": 0.902, "eu-central-1": 0.544, "eu-central-2": 0.0, "eu-north-1": 0.368, "eu-south-1": 0.368, "eu-south-2": 0.902, "eu-west-1": 0.368, - "eu-west-2": 0.368, + "eu-west-2": 0.555, "eu-west-3": 0.368, "il-central-1": 0.0, "me-central-1": 0.956, @@ -89600,7 +101843,7 @@ "us-east-1": 0.847, "us-east-2": 0.452, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.368, + "us-gov-west-1": 0.609, "us-west-1": 0.532, "us-west-2": 0.368 }, @@ -89614,18 +101857,19 @@ "ap-south-2": 0.736, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, - "ap-southeast-3": 1.932, + "ap-southeast-3": 0.736, "ap-southeast-4": 0.736, "ca-central-1": 0.0, + "ca-west-1": 1.804, "eu-central-1": 0.736, "eu-central-2": 0.0, "eu-north-1": 0.736, "eu-south-1": 0.736, - "eu-south-2": 1.744, - "eu-west-1": 0.736, + "eu-south-2": 0.0, + "eu-west-1": 1.076, "eu-west-2": 0.736, "eu-west-3": 0.736, - "il-central-1": 1.058, + "il-central-1": 1.122, "me-central-1": 1.911, "me-south-1": 0.736, "sa-east-1": 0.736, @@ -89633,7 +101877,7 @@ "us-east-2": 0.736, "us-gov-east-1": 0.736, "us-gov-west-1": 1.219, - "us-west-1": 1.064, + "us-west-1": 1.8, "us-west-2": 0.736 }, "m5d.8xlarge": { @@ -89649,16 +101893,17 @@ "ap-southeast-3": 1.472, "ap-southeast-4": 1.472, "ca-central-1": 1.472, + "ca-west-1": 2.016, "eu-central-1": 3.648, "eu-central-2": 2.394, "eu-north-1": 3.392, "eu-south-1": 1.472, "eu-south-2": 1.472, "eu-west-1": 3.488, - "eu-west-2": 3.568, + "eu-west-2": 3.708, "eu-west-3": 3.584, - "il-central-1": 1.472, - "me-central-1": 1.472, + "il-central-1": 2.117, + "me-central-1": 0.0, "me-south-1": 1.472, "sa-east-1": 1.472, "us-east-1": 3.28, @@ -89675,28 +101920,29 @@ "ap-northeast-2": 2.208, "ap-northeast-3": 2.208, "ap-south-1": 2.208, - "ap-south-2": 5.312, + "ap-south-2": 0.0, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, - "ap-southeast-3": 2.208, - "ap-southeast-4": 3.612, + "ap-southeast-3": 5.592, + "ap-southeast-4": 2.208, "ca-central-1": 2.208, - "eu-central-1": 0.0, - "eu-central-2": 6.014, + "ca-west-1": 2.208, + "eu-central-1": 2.208, + "eu-central-2": 2.208, "eu-north-1": 2.208, "eu-south-1": 2.208, "eu-south-2": 2.208, "eu-west-1": 2.208, - "eu-west-2": 2.208, + "eu-west-2": 3.333, "eu-west-3": 2.208, "il-central-1": 2.208, "me-central-1": 2.208, "me-south-1": 2.208, "sa-east-1": 2.208, - "us-east-1": 2.712, - "us-east-2": 2.208, + "us-east-1": 5.084, + "us-east-2": 2.876, "us-gov-east-1": 2.208, - "us-gov-west-1": 0.0, + "us-gov-west-1": 3.432, "us-west-1": 3.192, "us-west-2": 2.712 }, @@ -89707,22 +101953,23 @@ "ap-northeast-2": 7.392, "ap-northeast-3": 2.944, "ap-south-1": 6.848, - "ap-south-2": 2.944, + "ap-south-2": 0.0, "ap-southeast-1": 7.456, "ap-southeast-2": 2.944, "ap-southeast-3": 2.944, - "ap-southeast-4": 0.0, + "ap-southeast-4": 7.761, "ca-central-1": 2.944, + "ca-west-1": 4.274, "eu-central-1": 7.296, "eu-central-2": 2.944, "eu-north-1": 6.784, "eu-south-1": 2.944, - "eu-south-2": 7.218, + "eu-south-2": 4.274, "eu-west-1": 4.032, - "eu-west-2": 7.136, + "eu-west-2": 0.0, "eu-west-3": 7.168, "il-central-1": 7.432, - "me-central-1": 0.0, + "me-central-1": 7.379, "me-south-1": 2.944, "sa-east-1": 2.944, "us-east-1": 6.56, @@ -89739,26 +101986,27 @@ "ap-northeast-2": 4.416, "ap-northeast-3": 4.416, "ap-south-1": 4.416, - "ap-south-2": 4.416, + "ap-south-2": 0.0, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, "ap-southeast-3": 4.416, "ap-southeast-4": 0.0, "ca-central-1": 10.464, - "eu-central-1": 6.528, - "eu-central-2": 11.597, + "ca-west-1": 10.464, + "eu-central-1": 4.416, + "eu-central-2": 7.181, "eu-north-1": 4.416, "eu-south-1": 4.416, "eu-south-2": 0.0, - "eu-west-1": 4.416, - "eu-west-2": 4.416, + "eu-west-1": 6.048, + "eu-west-2": 6.288, "eu-west-3": 4.416, - "il-central-1": 6.35, - "me-central-1": 4.416, + "il-central-1": 10.766, + "me-central-1": 6.653, "me-south-1": 4.416, "sa-east-1": 4.416, - "us-east-1": 4.416, - "us-east-2": 0.0, + "us-east-1": 5.424, + "us-east-2": 5.424, "us-gov-east-1": 4.416, "us-gov-west-1": 4.416, "us-west-1": 6.384, @@ -89783,7 +102031,7 @@ "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.363, + "us-gov-west-1": 0.184, "us-west-2": 0.184 }, "m5dn.metal": { @@ -89849,7 +102097,7 @@ "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-east-1": 2.944, - "us-gov-west-1": 2.944, + "us-gov-west-1": 8.744, "us-west-2": 2.944 }, "m5dn.24xlarge": { @@ -89871,7 +102119,7 @@ "us-east-1": 0.092, "us-east-2": 0.092, "us-gov-east-1": 0.092, - "us-gov-west-1": 0.092, + "us-gov-west-1": 0.149, "us-west-2": 0.092 }, "m5n.xlarge": { @@ -89882,7 +102130,7 @@ "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.298, "us-west-2": 0.184 }, "m5n.metal": { @@ -89936,7 +102184,7 @@ "us-east-1": 2.208, "us-east-2": 2.208, "us-gov-east-1": 2.208, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.208, "us-west-2": 2.208 }, "m5n.16xlarge": { @@ -89989,7 +102237,7 @@ }, "m5zn.metal": { "ap-northeast-1": 2.208, - "ap-northeast-2": 2.208, + "ap-northeast-2": 0.0, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, "eu-central-1": 2.208, @@ -90002,7 +102250,7 @@ }, "m5zn.2xlarge": { "ap-northeast-1": 0.368, - "ap-northeast-2": 1.18, + "ap-northeast-2": 0.368, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, "eu-central-1": 0.368, @@ -90053,13 +102301,15 @@ "us-west-2": 2.208 }, "m6a.large": { - "ap-northeast-1": 0.092, - "ap-south-1": 0.05555, - "ap-south-2": 0.14755, + "ap-northeast-1": 0.21476, + "ap-south-1": 0.092, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.092, + "ca-central-1": 0.092, "eu-central-1": 0.092, - "eu-west-1": 0.092, + "eu-south-1": 0.092, + "eu-west-1": 0.1883, "eu-west-2": 0.20189, "sa-east-1": 0.2297, "us-east-1": 0.18704, @@ -90068,18 +102318,20 @@ "us-west-2": 0.092 }, "m6a.xlarge": { - "ap-northeast-1": 0.4072, + "ap-northeast-1": 0.0, "ap-south-1": 0.0, "ap-south-2": 0.184, - "ap-southeast-1": 0.4216, - "ap-southeast-2": 0.4, - "eu-central-1": 0.184, - "eu-west-1": 0.21186, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.4216, + "ca-central-1": 0.184, + "eu-central-1": 0.0, + "eu-south-1": 0.184, + "eu-west-1": 0.1926, "eu-west-2": 0.184, "sa-east-1": 0.184, "us-east-1": 0.37408, - "us-east-2": 0.3568, - "us-west-1": 0.2016, + "us-east-2": 0.0, + "us-west-1": 0.184, "us-west-2": 0.0 }, "m6a.metal": { @@ -90088,89 +102340,101 @@ "ap-south-2": 5.3328, "ap-southeast-1": 8.832, "ap-southeast-2": 10.368, + "ca-central-1": 8.832, "eu-central-1": 9.936, + "eu-south-1": 9.6768, "eu-west-1": 9.2448, - "eu-west-2": 0.0, - "sa-east-1": 8.832, - "us-east-1": 0.0, + "eu-west-2": 9.5904, + "sa-east-1": 22.0512, + "us-east-1": 8.2944, "us-east-2": 8.832, - "us-west-1": 18.5088, + "us-west-1": 8.832, "us-west-2": 8.2944 }, "m6a.2xlarge": { - "ap-northeast-1": 0.368, + "ap-northeast-1": 0.49104, "ap-south-1": 0.61242, - "ap-south-2": 0.2222, + "ap-south-2": 0.61242, "ap-southeast-1": 0.368, - "ap-southeast-2": 0.432, + "ap-southeast-2": 0.8, + "ca-central-1": 0.0, "eu-central-1": 0.368, - "eu-west-1": 0.368, - "eu-west-2": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.0, + "eu-south-1": 0.7712, + "eu-west-1": 0.0, + "eu-west-2": 0.7676, + "sa-east-1": 0.9188, + "us-east-1": 0.368, "us-east-2": 0.368, - "us-west-1": 0.4032, + "us-west-1": 0.368, "us-west-2": 0.368 }, "m6a.4xlarge": { "ap-northeast-1": 0.736, "ap-south-1": 0.0, "ap-south-2": 0.4444, - "ap-southeast-1": 1.6864, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, - "eu-central-1": 0.828, - "eu-west-1": 0.736, - "eu-west-2": 0.87912, + "ca-central-1": 0.736, + "eu-central-1": 0.736, + "eu-south-1": 0.736, + "eu-west-1": 0.84744, + "eu-west-2": 0.736, "sa-east-1": 0.736, - "us-east-1": 0.6912, + "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 0.736, "us-west-2": 0.0 }, "m6a.8xlarge": { - "ap-northeast-1": 1.96416, + "ap-northeast-1": 0.0, "ap-south-1": 1.472, "ap-south-2": 1.472, - "ap-southeast-1": 3.3728, - "ap-southeast-2": 0.0, + "ap-southeast-1": 1.472, + "ap-southeast-2": 1.472, + "ca-central-1": 1.5408, "eu-central-1": 1.472, + "eu-south-1": 3.0848, "eu-west-1": 1.472, "eu-west-2": 1.472, - "sa-east-1": 3.6752, - "us-east-1": 1.472, - "us-east-2": 2.8544, - "us-west-1": 3.0848, + "sa-east-1": 1.472, + "us-east-1": 1.52064, + "us-east-2": 1.3824, + "us-west-1": 1.77408, "us-west-2": 1.472 }, "m6a.12xlarge": { - "ap-northeast-1": 2.208, + "ap-northeast-1": 2.6784, "ap-south-1": 0.0, "ap-south-2": 2.208, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, + "ca-central-1": 2.3112, "eu-central-1": 2.208, + "eu-south-1": 4.86912, "eu-west-1": 2.208, "eu-west-2": 2.208, "sa-east-1": 2.208, "us-east-1": 2.208, - "us-east-2": 2.0736, - "us-west-1": 2.4192, - "us-west-2": 2.208 + "us-east-2": 2.208, + "us-west-1": 2.208, + "us-west-2": 2.0736 }, "m6a.16xlarge": { "ap-northeast-1": 2.944, "ap-south-1": 2.944, "ap-south-2": 2.944, - "ap-southeast-1": 3.456, + "ap-southeast-1": 0.0, "ap-southeast-2": 2.944, + "ca-central-1": 0.0, "eu-central-1": 2.944, + "eu-south-1": 2.944, "eu-west-1": 3.0816, - "eu-west-2": 2.944, + "eu-west-2": 3.1968, "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-west-1": 2.944, - "us-west-2": 2.944 + "us-west-2": 5.98528 }, "m6a.24xlarge": { "ap-northeast-1": 0.0, @@ -90178,29 +102442,33 @@ "ap-south-2": 2.6664, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, + "ca-central-1": 5.08464, "eu-central-1": 4.416, + "eu-south-1": 4.8384, "eu-west-1": 4.6224, "eu-west-2": 4.416, - "sa-east-1": 6.6096, + "sa-east-1": 0.0, "us-east-1": 4.416, "us-east-2": 4.416, - "us-west-1": 9.73824, + "us-west-1": 4.416, "us-west-2": 4.416 }, "m6a.32xlarge": { - "ap-northeast-1": 5.888, + "ap-northeast-1": 0.0, "ap-south-1": 5.888, "ap-south-2": 5.888, - "ap-southeast-1": 0.0, + "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-central-1": 5.888, "eu-central-1": 0.0, + "eu-south-1": 6.4512, "eu-west-1": 5.888, - "eu-west-2": 0.0, + "eu-west-2": 7.03296, "sa-east-1": 9.69408, "us-east-1": 5.888, "us-east-2": 5.888, "us-west-1": 6.4512, - "us-west-2": 5.888 + "us-west-2": 11.97056 }, "m6a.48xlarge": { "ap-northeast-1": 8.832, @@ -90208,28 +102476,32 @@ "ap-south-2": 8.832, "ap-southeast-1": 8.832, "ap-southeast-2": 8.832, - "eu-central-1": 8.832, - "eu-west-1": 18.0768, - "eu-west-2": 0.0, + "ca-central-1": 8.832, + "eu-central-1": 9.936, + "eu-south-1": 8.832, + "eu-west-1": 0.0, + "eu-west-2": 8.832, "sa-east-1": 8.832, - "us-east-1": 17.1264, + "us-east-1": 0.0, "us-east-2": 17.1264, - "us-west-1": 18.5088, - "us-west-2": 8.2944 + "us-west-1": 8.832, + "us-west-2": 17.1264 }, "m6i.large": { - "af-south-1": 0.127, + "af-south-1": 0.092, "ap-east-1": 0.092, "ap-northeast-1": 0.216, - "ap-northeast-2": 0.092, - "ap-northeast-3": 0.092, - "ap-south-1": 0.193, - "ap-south-2": 0.092, - "ap-southeast-1": 0.224, - "ap-southeast-2": 0.0, + "ap-northeast-2": 0.1298, + "ap-northeast-3": 0.1364, + "ap-south-1": 0.092, + "ap-south-2": 0.101, + "ap-southeast-1": 0.12, + "ap-southeast-2": 0.092, "ap-southeast-3": 0.092, "ca-central-1": 0.092, - "eu-central-1": 0.092, + "ca-west-1": 0.0, + "eu-central-1": 0.115, + "eu-central-2": 0.092, "eu-north-1": 0.092, "eu-south-1": 0.2152, "eu-west-1": 0.092, @@ -90238,13 +102510,13 @@ "il-central-1": 0.11235, "me-central-1": 0.092, "me-south-1": 0.224, - "sa-east-1": 0.0, + "sa-east-1": 0.1683, "us-east-1": 0.092, "us-east-2": 0.0, "us-gov-east-1": 0.121, - "us-gov-west-1": 0.2251, - "us-west-1": 0.1232, - "us-west-2": 0.188 + "us-gov-west-1": 0.0, + "us-west-1": 0.092, + "us-west-2": 0.1056 }, "m6i.xlarge": { "af-south-1": 0.184, @@ -90256,15 +102528,17 @@ "ap-south-2": 0.184, "ap-southeast-1": 0.424, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.184, + "ap-southeast-3": 0.264, "ca-central-1": 0.184, - "eu-central-1": 0.184, - "eu-north-1": 0.388, + "ca-west-1": 0.184, + "eu-central-1": 0.437, + "eu-central-2": 0.184, + "eu-north-1": 0.2244, "eu-south-1": 0.184, - "eu-west-1": 0.214, + "eu-west-1": 0.398, "eu-west-2": 0.2442, - "eu-west-3": 0.408, - "il-central-1": 0.2247, + "eu-west-3": 0.184, + "il-central-1": 0.4087, "me-central-1": 0.184, "me-south-1": 0.0, "sa-east-1": 0.184, @@ -90277,58 +102551,62 @@ }, "m6i.metal": { "af-south-1": 8.128, - "ap-east-1": 8.448, + "ap-east-1": 5.888, "ap-northeast-1": 13.824, "ap-northeast-2": 13.44, - "ap-northeast-3": 0.0, - "ap-south-1": 6.464, + "ap-northeast-3": 13.824, + "ap-south-1": 5.888, "ap-south-2": 5.888, - "ap-southeast-1": 5.888, + "ap-southeast-1": 13.568, "ap-southeast-2": 5.888, "ap-southeast-3": 5.888, "ca-central-1": 6.848, + "ca-west-1": 5.888, "eu-central-1": 5.888, + "eu-central-2": 0.0, "eu-north-1": 0.0, - "eu-south-1": 7.168, + "eu-south-1": 13.056, "eu-west-1": 6.848, "eu-west-2": 7.104, "eu-west-3": 5.888, "il-central-1": 7.1904, - "me-central-1": 5.888, - "me-south-1": 5.888, + "me-central-1": 7.5328, + "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 5.888, - "us-east-2": 12.032, + "us-east-2": 5.888, "us-gov-east-1": 5.888, "us-gov-west-1": 5.888, "us-west-1": 5.888, "us-west-2": 5.888 }, "m6i.2xlarge": { - "af-south-1": 0.368, + "af-south-1": 0.9268, "ap-east-1": 0.368, "ap-northeast-1": 0.864, - "ap-northeast-2": 0.84, + "ap-northeast-2": 0.368, "ap-northeast-3": 0.864, "ap-south-1": 0.0, - "ap-south-2": 0.368, + "ap-south-2": 0.404, "ap-southeast-1": 0.368, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0, + "ap-southeast-2": 0.896, + "ap-southeast-3": 0.368, "ca-central-1": 0.368, + "ca-west-1": 0.368, "eu-central-1": 0.368, - "eu-north-1": 0.776, - "eu-south-1": 0.448, + "eu-central-2": 0.368, + "eu-north-1": 0.368, + "eu-south-1": 0.368, "eu-west-1": 0.4708, "eu-west-2": 0.368, - "eu-west-3": 0.368, + "eu-west-3": 0.8608, "il-central-1": 0.4494, - "me-central-1": 0.368, + "me-central-1": 0.0, "me-south-1": 0.528, "sa-east-1": 0.612, - "us-east-1": 0.384, + "us-east-1": 0.368, "us-east-2": 0.368, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.368, "us-gov-west-1": 0.368, "us-west-1": 0.0, "us-west-2": 0.0 @@ -90338,79 +102616,85 @@ "ap-east-1": 0.736, "ap-northeast-1": 1.8272, "ap-northeast-2": 0.736, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.736, "ap-south-1": 1.6248, "ap-south-2": 0.8888, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, "ap-southeast-3": 0.736, "ca-central-1": 0.736, + "ca-west-1": 0.856, "eu-central-1": 0.0, - "eu-north-1": 0.736, + "eu-central-2": 0.736, + "eu-north-1": 0.8976, "eu-south-1": 0.736, "eu-west-1": 0.0, "eu-west-2": 0.736, - "eu-west-3": 0.896, + "eu-west-3": 0.9856, "il-central-1": 0.8988, "me-central-1": 0.736, - "me-south-1": 0.0, - "sa-east-1": 0.0, - "us-east-1": 0.736, - "us-east-2": 0.768, - "us-gov-east-1": 0.736, + "me-south-1": 1.792, + "sa-east-1": 2.0824, + "us-east-1": 0.768, + "us-east-2": 0.0, + "us-gov-east-1": 0.968, "us-gov-west-1": 1.0648, "us-west-1": 0.0, "us-west-2": 0.736 }, "m6i.8xlarge": { - "af-south-1": 2.2352, - "ap-east-1": 3.7952, + "af-south-1": 0.0, + "ap-east-1": 1.472, "ap-northeast-1": 1.472, "ap-northeast-2": 1.472, "ap-northeast-3": 1.984, - "ap-south-1": 3.2496, - "ap-south-2": 0.0, - "ap-southeast-1": 1.92, + "ap-south-1": 1.472, + "ap-south-2": 1.472, + "ap-southeast-1": 3.584, "ap-southeast-2": 1.472, "ap-southeast-3": 0.0, - "ca-central-1": 3.184, + "ca-central-1": 1.712, + "ca-west-1": 1.472, "eu-central-1": 0.0, - "eu-north-1": 3.104, + "eu-central-2": 1.472, + "eu-north-1": 0.0, "eu-south-1": 1.472, - "eu-west-1": 1.712, + "eu-west-1": 1.472, "eu-west-2": 3.248, - "eu-west-3": 0.0, + "eu-west-3": 3.4432, "il-central-1": 1.472, "me-central-1": 1.472, - "me-south-1": 1.472, - "sa-east-1": 0.0, + "me-south-1": 2.3232, + "sa-east-1": 1.472, "us-east-1": 3.1616, - "us-east-2": 1.472, - "us-gov-east-1": 0.0, + "us-east-2": 3.1616, + "us-gov-east-1": 1.936, "us-gov-west-1": 1.472, "us-west-1": 1.472, - "us-west-2": 1.6896 + "us-west-2": 1.472 }, "m6i.12xlarge": { - "af-south-1": 3.3528, - "ap-east-1": 3.4848, - "ap-northeast-1": 2.208, + "af-south-1": 2.208, + "ap-east-1": 2.208, + "ap-northeast-1": 0.0, "ap-northeast-2": 2.208, - "ap-northeast-3": 2.208, - "ap-south-1": 2.424, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0, "ap-south-2": 2.208, - "ap-southeast-1": 2.208, - "ap-southeast-2": 5.376, + "ap-southeast-1": 5.088, + "ap-southeast-2": 0.0, "ap-southeast-3": 2.208, "ca-central-1": 2.8248, + "ca-west-1": 2.208, "eu-central-1": 2.208, - "eu-north-1": 2.208, + "eu-central-2": 2.208, + "eu-north-1": 0.0, "eu-south-1": 5.1648, - "eu-west-1": 2.208, - "eu-west-2": 5.1384, - "eu-west-3": 2.208, - "il-central-1": 2.208, - "me-central-1": 2.208, + "eu-west-1": 2.8248, + "eu-west-2": 2.208, + "eu-west-3": 5.1648, + "il-central-1": 2.6964, + "me-central-1": 5.31528, "me-south-1": 5.6928, "sa-east-1": 2.208, "us-east-1": 2.208, @@ -90421,59 +102705,63 @@ "us-west-2": 4.512 }, "m6i.16xlarge": { - "af-south-1": 4.064, + "af-south-1": 2.944, "ap-east-1": 2.944, "ap-northeast-1": 6.912, - "ap-northeast-2": 2.944, + "ap-northeast-2": 3.776, "ap-northeast-3": 2.944, "ap-south-1": 2.944, "ap-south-2": 2.944, - "ap-southeast-1": 0.0, + "ap-southeast-1": 2.944, "ap-southeast-2": 0.0, - "ap-southeast-3": 2.944, - "ca-central-1": 2.944, + "ap-southeast-3": 3.84, + "ca-central-1": 3.7664, + "ca-west-1": 2.944, "eu-central-1": 2.944, - "eu-north-1": 2.944, + "eu-central-2": 4.048, + "eu-north-1": 6.5344, "eu-south-1": 2.944, - "eu-west-1": 2.944, + "eu-west-1": 3.424, "eu-west-2": 2.944, "eu-west-3": 2.944, "il-central-1": 6.5392, - "me-central-1": 0.0, + "me-central-1": 2.944, "me-south-1": 4.224, - "sa-east-1": 2.944, + "sa-east-1": 8.3296, "us-east-1": 2.944, - "us-east-2": 0.0, - "us-gov-east-1": 0.0, - "us-gov-west-1": 2.944, + "us-east-2": 2.944, + "us-gov-east-1": 2.944, + "us-gov-west-1": 3.872, "us-west-1": 6.528, - "us-west-2": 0.0 + "us-west-2": 2.944 }, "m6i.24xlarge": { - "af-south-1": 0.0, - "ap-east-1": 4.416, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "af-south-1": 10.512, + "ap-east-1": 10.752, + "ap-northeast-1": 4.416, + "ap-northeast-2": 10.08, "ap-northeast-3": 4.416, "ap-south-1": 4.416, - "ap-south-2": 5.3328, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 4.416, - "ap-southeast-3": 10.752, + "ap-southeast-3": 0.0, "ca-central-1": 4.416, - "eu-central-1": 10.488, - "eu-north-1": 4.416, + "ca-west-1": 4.416, + "eu-central-1": 0.0, + "eu-central-2": 4.416, + "eu-north-1": 4.896, "eu-south-1": 10.3296, - "eu-west-1": 5.136, + "eu-west-1": 5.6496, "eu-west-2": 5.8608, - "eu-west-3": 4.416, - "il-central-1": 5.3928, + "eu-west-3": 5.376, + "il-central-1": 5.93208, "me-central-1": 6.21456, - "me-south-1": 4.416, - "sa-east-1": 4.416, + "me-south-1": 0.0, + "sa-east-1": 8.0784, "us-east-1": 5.0688, "us-east-2": 4.416, - "us-gov-east-1": 4.416, + "us-gov-east-1": 6.3888, "us-gov-west-1": 4.416, "us-west-1": 9.792, "us-west-2": 0.0 @@ -90481,460 +102769,994 @@ "m6i.32xlarge": { "af-south-1": 5.888, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, + "ap-northeast-1": 14.6176, "ap-northeast-2": 0.0, "ap-northeast-3": 5.888, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 6.464, "ap-southeast-1": 13.568, - "ap-southeast-2": 13.568, + "ap-southeast-2": 7.68, "ap-southeast-3": 5.888, - "ca-central-1": 12.736, - "eu-central-1": 5.888, - "eu-north-1": 6.528, + "ca-central-1": 5.888, + "ca-west-1": 6.848, + "eu-central-1": 13.248, + "eu-central-2": 8.096, + "eu-north-1": 12.416, "eu-south-1": 0.0, - "eu-west-1": 5.888, + "eu-west-1": 7.5328, "eu-west-2": 5.888, "eu-west-3": 5.888, "il-central-1": 5.888, "me-central-1": 5.888, - "me-south-1": 14.336, - "sa-east-1": 10.7712, - "us-east-1": 12.6464, + "me-south-1": 8.448, + "sa-east-1": 5.888, + "us-east-1": 6.7584, "us-east-2": 12.6464, - "us-gov-east-1": 13.632, + "us-gov-east-1": 5.888, "us-gov-west-1": 7.744, - "us-west-1": 5.888, + "us-west-1": 13.056, "us-west-2": 6.144 }, "m6id.large": { - "ap-northeast-1": 0.092, + "ap-northeast-1": 0.16863, + "ap-northeast-2": 0.14595, + "ap-south-1": 0.092, + "ap-southeast-1": 0.0, "ap-southeast-2": 0.092, - "eu-central-1": 0.2348, + "ca-central-1": 0.092, + "ca-west-1": 0.092, + "eu-central-1": 0.15708, + "eu-central-2": 0.15708, "eu-west-1": 0.14553, + "eu-west-2": 0.092, "il-central-1": 0.13892, + "sa-east-1": 0.092, "us-east-1": 0.11865, "us-east-2": 0.0, - "us-gov-west-1": 0.1502, + "us-gov-west-1": 0.25722, "us-west-2": 0.22252 }, "m6id.xlarge": { "ap-northeast-1": 0.184, + "ap-northeast-2": 0.184, + "ap-south-1": 0.2562, + "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "eu-central-1": 0.31416, - "eu-west-1": 0.47506, - "il-central-1": 0.48962, - "us-east-1": 0.44503, - "us-east-2": 0.4213, + "ca-central-1": 0.184, + "ca-west-1": 0.2646, + "eu-central-1": 0.184, + "eu-central-2": 0.184, + "eu-west-1": 0.2646, + "eu-west-2": 0.0, + "il-central-1": 0.0, + "sa-east-1": 0.5998, + "us-east-1": 0.184, + "us-east-2": 0.44503, "us-gov-west-1": 0.4844, "us-west-2": 0.184 }, "m6id.metal": { "ap-northeast-1": 5.888, - "ap-southeast-2": 5.888, + "ap-northeast-2": 9.3408, + "ap-south-1": 8.1984, + "ap-southeast-1": 9.4752, + "ap-southeast-2": 15.4304, + "ca-central-1": 8.4672, + "ca-west-1": 8.4672, "eu-central-1": 0.0, - "eu-west-1": 8.4672, + "eu-central-2": 5.888, + "eu-west-1": 5.888, + "eu-west-2": 5.888, "il-central-1": 5.888, - "us-east-1": 0.0, + "sa-east-1": 12.096, + "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-west-1": 5.888, "us-west-2": 13.4816 }, "m6id.2xlarge": { "ap-northeast-1": 1.04252, - "ap-southeast-2": 0.368, - "eu-central-1": 0.62832, + "ap-northeast-2": 0.5838, + "ap-south-1": 0.368, + "ap-southeast-1": 0.65142, + "ap-southeast-2": 0.9644, + "ca-central-1": 0.368, + "ca-west-1": 0.5292, + "eu-central-1": 0.0, + "eu-central-2": 0.62832, "eu-west-1": 0.368, - "il-central-1": 0.55568, - "us-east-1": 0.52206, - "us-east-2": 0.368, - "us-gov-west-1": 0.0, - "us-west-2": 0.8426 + "eu-west-2": 0.5502, + "il-central-1": 0.368, + "sa-east-1": 0.756, + "us-east-1": 0.0, + "us-east-2": 0.4746, + "us-gov-west-1": 0.368, + "us-west-2": 0.4746 }, "m6id.4xlarge": { - "ap-northeast-1": 0.736, - "ap-southeast-2": 0.736, - "eu-central-1": 1.8784, + "ap-northeast-1": 1.9624, + "ap-northeast-2": 1.1676, + "ap-south-1": 0.0, + "ap-southeast-1": 0.736, + "ap-southeast-2": 2.04808, + "ca-central-1": 0.736, + "ca-west-1": 0.736, + "eu-central-1": 0.736, + "eu-central-2": 2.1183, "eu-west-1": 1.0584, + "eu-west-2": 0.0, "il-central-1": 1.9585, - "us-east-1": 0.736, - "us-east-2": 0.736, + "sa-east-1": 0.736, + "us-east-1": 0.9492, + "us-east-2": 1.6852, "us-gov-west-1": 0.736, "us-west-2": 1.6852 }, "m6id.8xlarge": { "ap-northeast-1": 1.472, - "ap-southeast-2": 0.0, + "ap-northeast-2": 2.56872, + "ap-south-1": 3.5216, + "ap-southeast-1": 2.3688, + "ap-southeast-2": 4.09616, + "ca-central-1": 1.472, + "ca-west-1": 2.1168, "eu-central-1": 1.472, + "eu-central-2": 2.51328, "eu-west-1": 2.1168, - "il-central-1": 1.472, - "us-east-1": 1.472, + "eu-west-2": 2.2008, + "il-central-1": 2.22272, + "sa-east-1": 1.472, + "us-east-1": 0.0, "us-east-2": 1.472, "us-gov-west-1": 1.472, "us-west-2": 1.472 }, "m6id.12xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-2": 2.208, + "ap-northeast-1": 6.25512, + "ap-northeast-2": 2.208, + "ap-south-1": 5.2824, + "ap-southeast-1": 5.7612, + "ap-southeast-2": 0.0, + "ca-central-1": 2.208, + "ca-west-1": 3.1752, "eu-central-1": 0.0, + "eu-central-2": 2.208, "eu-west-1": 3.1752, - "il-central-1": 2.208, + "eu-west-2": 3.3012, + "il-central-1": 3.33408, + "sa-east-1": 4.536, "us-east-1": 5.0556, "us-east-2": 2.208, - "us-gov-west-1": 0.0, + "us-gov-west-1": 2.208, "us-west-2": 2.208 }, "m6id.16xlarge": { "ap-northeast-1": 2.944, + "ap-northeast-2": 4.6704, + "ap-south-1": 7.45312, + "ap-southeast-1": 5.21136, "ap-southeast-2": 2.944, + "ca-central-1": 4.2336, + "ca-west-1": 2.944, "eu-central-1": 7.5136, + "eu-central-2": 2.944, "eu-west-1": 7.1776, + "eu-west-2": 2.944, "il-central-1": 4.44544, - "us-east-1": 0.0, - "us-east-2": 7.12048, + "sa-east-1": 6.048, + "us-east-1": 2.944, + "us-east-2": 2.944, "us-gov-west-1": 5.28704, "us-west-2": 3.7968 }, "m6id.24xlarge": { "ap-northeast-1": 8.09424, + "ap-northeast-2": 7.70616, + "ap-south-1": 4.416, + "ap-southeast-1": 4.416, "ap-southeast-2": 0.0, + "ca-central-1": 4.416, + "ca-west-1": 6.3504, "eu-central-1": 4.416, + "eu-central-2": 4.416, "eu-west-1": 6.3504, + "eu-west-2": 4.416, "il-central-1": 4.416, + "sa-east-1": 0.0, "us-east-1": 4.416, - "us-east-2": 4.416, - "us-gov-west-1": 11.6256, + "us-east-2": 0.0, + "us-gov-west-1": 7.2096, "us-west-2": 6.26472 }, "m6id.32xlarge": { "ap-northeast-1": 5.888, + "ap-northeast-2": 9.3408, + "ap-south-1": 5.888, + "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-central-1": 0.0, + "ca-west-1": 5.888, "eu-central-1": 5.888, - "eu-west-1": 0.0, - "il-central-1": 8.89088, + "eu-central-2": 5.888, + "eu-west-1": 14.3552, + "eu-west-2": 8.8032, + "il-central-1": 5.888, + "sa-east-1": 5.888, "us-east-1": 5.888, "us-east-2": 5.888, - "us-gov-west-1": 9.6128, + "us-gov-west-1": 5.888, "us-west-2": 5.888 }, "m6idn.large": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, + "ap-southeast-2": 0.092, "eu-central-1": 0.28154, - "eu-west-1": 0.092, - "us-east-1": 0.15912, - "us-east-2": 0.0, + "eu-north-1": 0.092, + "eu-south-2": 0.092, + "eu-west-1": 0.19562, + "us-east-1": 0.0, + "us-east-2": 0.092, "us-gov-west-1": 0.092, + "us-west-1": 0.0, "us-west-2": 0.15912 }, "m6idn.xlarge": { "ap-northeast-1": 0.184, - "ap-southeast-1": 0.184, - "eu-central-1": 0.184, + "ap-southeast-1": 0.42986, + "ap-southeast-2": 0.184, + "eu-central-1": 0.41699, + "eu-north-1": 0.184, + "eu-south-2": 0.34836, "eu-west-1": 0.35568, "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-west-1": 0.44015, + "us-west-1": 0.36688, "us-west-2": 0.50224 }, "m6idn.metal": { "ap-northeast-1": 5.888, "ap-southeast-1": 5.888, + "ap-southeast-2": 12.87936, "eu-central-1": 5.888, - "eu-west-1": 11.38176, + "eu-north-1": 0.0, + "eu-south-2": 5.888, + "eu-west-1": 5.888, "us-east-1": 5.888, "us-east-2": 5.888, - "us-gov-west-1": 5.888, + "us-gov-west-1": 0.0, + "us-west-1": 5.888, "us-west-2": 5.888 }, "m6idn.2xlarge": { "ap-northeast-1": 0.368, - "ap-southeast-1": 0.0, - "eu-central-1": 1.12616, + "ap-southeast-1": 0.368, + "ap-southeast-2": 0.88546, + "eu-central-1": 0.75816, + "eu-north-1": 0.664, + "eu-south-2": 0.76639, "eu-west-1": 0.7825, "us-east-1": 0.0, "us-east-2": 0.368, - "us-gov-west-1": 1.24831, + "us-gov-west-1": 1.16828, + "us-west-1": 0.0, "us-west-2": 0.368 }, "m6idn.4xlarge": { "ap-northeast-1": 2.5378, "ap-southeast-1": 0.736, - "eu-central-1": 0.736, + "ap-southeast-2": 1.77091, + "eu-central-1": 1.66795, + "eu-north-1": 0.0, + "eu-south-2": 0.0, "eu-west-1": 1.42272, "us-east-1": 0.736, - "us-east-2": 2.13626, - "us-gov-west-1": 1.60056, - "us-west-2": 1.40026 + "us-east-2": 0.736, + "us-gov-west-1": 0.736, + "us-west-1": 1.46752, + "us-west-2": 0.0 }, "m6idn.8xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 4.59824, - "eu-central-1": 3.03264, - "eu-west-1": 2.84544, + "ap-southeast-1": 1.472, + "ap-southeast-2": 3.21984, + "eu-central-1": 1.472, + "eu-north-1": 1.472, + "eu-south-2": 2.78688, + "eu-west-1": 1.472, "us-east-1": 1.472, "us-east-2": 1.472, "us-gov-west-1": 0.0, - "us-west-2": 2.80051 + "us-west-1": 2.93504, + "us-west-2": 4.01792 }, "m6idn.12xlarge": { "ap-northeast-1": 2.208, "ap-southeast-1": 2.208, - "eu-central-1": 5.00386, + "ap-southeast-2": 5.31274, + "eu-central-1": 0.0, + "eu-north-1": 6.192, + "eu-south-2": 4.18032, "eu-west-1": 4.26816, - "us-east-1": 6.02688, + "us-east-1": 4.20077, "us-east-2": 2.208, "us-gov-west-1": 2.208, - "us-west-2": 0.0 + "us-west-1": 0.0, + "us-west-2": 3.81888 }, "m6idn.16xlarge": { - "ap-northeast-1": 9.496, + "ap-northeast-1": 2.944, "ap-southeast-1": 0.0, - "eu-central-1": 2.944, + "ap-southeast-2": 7.08365, + "eu-central-1": 9.61581, + "eu-north-1": 2.944, + "eu-south-2": 2.944, "eu-west-1": 6.25997, "us-east-1": 8.03584, "us-east-2": 0.0, - "us-gov-west-1": 0.0, - "us-west-2": 8.54502 + "us-gov-west-1": 9.98646, + "us-west-1": 2.944, + "us-west-2": 2.944 }, "m6idn.24xlarge": { "ap-northeast-1": 4.416, - "ap-southeast-1": 9.37872, - "eu-central-1": 4.416, - "eu-west-1": 8.53632, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.416, + "eu-central-1": 10.00771, + "eu-north-1": 4.416, + "eu-south-2": 0.0, + "eu-west-1": 4.416, "us-east-1": 4.416, - "us-east-2": 12.05376, + "us-east-2": 4.416, "us-gov-west-1": 4.416, - "us-west-2": 12.81754 + "us-west-1": 8.80512, + "us-west-2": 4.416 }, "m6idn.32xlarge": { - "ap-northeast-1": 18.992, + "ap-northeast-1": 13.104, "ap-southeast-1": 5.888, + "ap-southeast-2": 5.888, "eu-central-1": 5.888, + "eu-north-1": 5.888, + "eu-south-2": 17.03552, "eu-west-1": 5.888, - "us-east-1": 5.888, - "us-east-2": 10.18368, - "us-gov-west-1": 5.888, + "us-east-1": 10.18368, + "us-east-2": 5.888, + "us-gov-west-1": 12.80448, + "us-west-1": 5.888, "us-west-2": 5.888 }, "m6in.large": { - "ap-northeast-1": 0.28891, - "ap-southeast-1": 0.26282, + "ap-northeast-1": 0.19691, + "ap-southeast-1": 0.092, + "ap-southeast-2": 0.1755, "eu-central-1": 0.27347, - "eu-west-1": 0.092, + "eu-north-1": 0.148, + "eu-south-2": 0.15518, + "eu-west-1": 0.15561, "us-east-1": 0.24515, "us-east-2": 0.23123, "us-gov-west-1": 0.092, + "us-west-1": 0.27068, "us-west-2": 0.13923 }, "m6in.xlarge": { "ap-northeast-1": 0.184, "ap-southeast-1": 0.184, + "ap-southeast-2": 0.351, "eu-central-1": 0.184, - "eu-west-1": 0.0, + "eu-north-1": 0.3256, + "eu-south-2": 0.3414, + "eu-west-1": 0.31122, "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-west-1": 0.184, + "us-west-1": 0.50888, "us-west-2": 0.184 }, "m6in.metal": { "ap-northeast-1": 11.45664, - "ap-southeast-1": 5.888, + "ap-southeast-1": 10.93248, + "ap-southeast-2": 11.232, "eu-central-1": 5.888, - "eu-west-1": 5.888, - "us-east-1": 0.0, + "eu-north-1": 9.472, + "eu-south-2": 9.93152, + "eu-west-1": 0.0, + "us-east-1": 14.79872, "us-east-2": 5.888, "us-gov-west-1": 5.888, + "us-west-1": 5.888, "us-west-2": 5.888 }, "m6in.2xlarge": { "ap-northeast-1": 0.368, "ap-southeast-1": 1.11961, - "eu-central-1": 1.02788, + "ap-southeast-2": 0.368, + "eu-central-1": 0.368, + "eu-north-1": 0.592, + "eu-south-2": 0.0, "eu-west-1": 0.368, - "us-east-1": 0.0, - "us-east-2": 0.368, + "us-east-1": 0.368, + "us-east-2": 0.55692, "us-gov-west-1": 0.368, + "us-west-1": 0.368, "us-west-2": 0.368 }, "m6in.4xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.736, "ap-southeast-1": 0.736, + "ap-southeast-2": 1.404, "eu-central-1": 0.736, - "eu-west-1": 1.24488, + "eu-north-1": 0.736, + "eu-south-2": 1.24144, + "eu-west-1": 1.36937, "us-east-1": 0.736, "us-east-2": 0.736, "us-gov-west-1": 0.736, - "us-west-2": 0.0 + "us-west-1": 1.29952, + "us-west-2": 0.736 }, "m6in.8xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 0.0, - "eu-central-1": 1.472, - "eu-west-1": 1.472, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 1.472, + "eu-south-2": 1.472, + "eu-west-1": 2.48976, "us-east-1": 1.472, - "us-east-2": 2.45045, + "us-east-2": 2.22768, "us-gov-west-1": 1.472, - "us-west-2": 3.92245 + "us-west-1": 1.472, + "us-west-2": 1.472 }, "m6in.12xlarge": { "ap-northeast-1": 2.208, "ap-southeast-1": 2.208, - "eu-central-1": 2.208, + "ap-southeast-2": 4.6332, + "eu-central-1": 3.95928, + "eu-north-1": 3.552, + "eu-south-2": 0.0, "eu-west-1": 3.73464, - "us-east-1": 5.54952, + "us-east-1": 2.208, "us-east-2": 2.208, "us-gov-west-1": 6.81031, + "us-west-1": 3.89856, "us-west-2": 2.208 }, "m6in.16xlarge": { "ap-northeast-1": 5.72832, "ap-southeast-1": 2.944, - "eu-central-1": 8.22304, - "eu-west-1": 0.0, + "ap-southeast-2": 2.944, + "eu-central-1": 5.80694, + "eu-north-1": 4.736, + "eu-south-2": 4.96576, + "eu-west-1": 2.944, "us-east-1": 0.0, "us-east-2": 2.944, - "us-gov-west-1": 5.57856, + "us-gov-west-1": 2.944, + "us-west-1": 5.71789, "us-west-2": 0.0 }, "m6in.24xlarge": { "ap-northeast-1": 13.86773, - "ap-southeast-1": 4.416, - "eu-central-1": 4.416, - "eu-west-1": 7.46928, + "ap-southeast-1": 9.0193, + "ap-southeast-2": 8.424, + "eu-central-1": 13.12642, + "eu-north-1": 7.104, + "eu-south-2": 4.416, + "eu-west-1": 8.21621, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-west-1": 4.416, + "us-west-1": 4.416, "us-west-2": 7.35134 }, "m6in.32xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 5.888, + "ap-southeast-2": 11.232, "eu-central-1": 5.888, + "eu-north-1": 9.472, + "eu-south-2": 9.93152, "eu-west-1": 9.95904, - "us-east-1": 14.79872, + "us-east-1": 5.888, "us-east-2": 14.79872, - "us-gov-west-1": 11.15712, - "us-west-2": 8.91072 + "us-gov-west-1": 5.888, + "us-west-1": 10.39616, + "us-west-2": 5.888 }, - "m7i.large": { + "m7a.medium": { + "ap-northeast-1": 0.07487, + "eu-central-1": 0.046, + "eu-north-1": 0.046, + "eu-south-2": 0.046, + "eu-west-1": 0.046, + "us-east-1": 0.05796, + "us-east-2": 0.046, + "us-west-2": 0.0 + }, + "m7a.large": { + "ap-northeast-1": 0.14973, + "eu-central-1": 0.13886, + "eu-north-1": 0.092, + "eu-south-2": 0.14212, + "eu-west-1": 0.092, + "us-east-1": 0.11592, + "us-east-2": 0.092, + "us-west-2": 0.092 + }, + "m7a.xlarge": { + "ap-northeast-1": 0.51341, + "eu-central-1": 0.184, + "eu-north-1": 0.24632, + "eu-south-2": 0.2584, + "eu-west-1": 0.2584, + "us-east-1": 0.0, + "us-east-2": 0.184, + "us-west-2": 0.23184 + }, + "m7a.metal-48xl": { + "ap-northeast-1": 14.37408, + "eu-central-1": 13.33056, + "eu-north-1": 11.82336, + "eu-south-2": 12.4032, + "eu-west-1": 8.832, + "us-east-1": 11.12832, + "us-east-2": 0.0, + "us-west-2": 11.12832 + }, + "m7a.2xlarge": { + "ap-northeast-1": 0.65881, + "eu-central-1": 0.55544, + "eu-north-1": 0.368, + "eu-south-2": 0.5168, "eu-west-1": 0.0, + "us-east-1": 0.368, + "us-east-2": 0.46368, + "us-west-2": 0.368 + }, + "m7a.4xlarge": { + "ap-northeast-1": 1.19784, + "eu-central-1": 1.22197, + "eu-north-1": 1.08381, + "eu-south-2": 0.736, + "eu-west-1": 1.0336, + "us-east-1": 0.92736, + "us-east-2": 0.92736, + "us-west-2": 0.92736 + }, + "m7a.8xlarge": { + "ap-northeast-1": 1.472, + "eu-central-1": 2.22176, + "eu-north-1": 1.97056, + "eu-south-2": 2.0672, + "eu-west-1": 2.0672, + "us-east-1": 0.0, + "us-east-2": 1.472, + "us-west-2": 3.32672 + }, + "m7a.12xlarge": { + "ap-northeast-1": 2.208, + "eu-central-1": 3.33264, + "eu-north-1": 2.95584, + "eu-south-2": 3.1008, + "eu-west-1": 5.61888, + "us-east-1": 2.78208, + "us-east-2": 2.208, + "us-west-2": 2.78208 + }, + "m7a.16xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 4.44352, + "eu-north-1": 0.0, + "eu-south-2": 0.0, + "eu-west-1": 4.54784, + "us-east-1": 3.70944, + "us-east-2": 2.944, + "us-west-2": 3.70944 + }, + "m7a.24xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 4.416, + "eu-north-1": 5.91168, + "eu-south-2": 0.0, + "eu-west-1": 6.2016, + "us-east-1": 5.56416, + "us-east-2": 4.416, + "us-west-2": 4.416 + }, + "m7a.32xlarge": { + "ap-northeast-1": 5.888, + "eu-central-1": 14.77504, + "eu-north-1": 7.88224, + "eu-south-2": 8.2688, + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 5.888, + "us-west-2": 14.04877 + }, + "m7a.48xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 8.832, + "eu-north-1": 11.82336, + "eu-south-2": 8.832, + "eu-west-1": 8.832, + "us-east-1": 11.12832, + "us-east-2": 11.12832, + "us-west-2": 11.12832 + }, + "m7i.large": { + "ap-northeast-1": 0.2222, + "ap-northeast-2": 0.22829, + "ap-south-1": 0.092, + "ap-southeast-1": 0.092, + "ap-southeast-2": 0.1386, + "ca-central-1": 0.11235, + "eu-central-1": 0.12075, + "eu-north-1": 0.092, + "eu-south-2": 0.21559, + "eu-west-1": 0.12359, + "eu-west-2": 0.092, + "eu-west-3": 0.0, + "sa-east-1": 0.092, "us-east-1": 0.092, "us-east-2": 0.092, - "us-west-2": 0.092 + "us-gov-east-1": 0.092, + "us-gov-west-1": 0.12705, + "us-west-1": 0.092, + "us-west-2": 0.11088 }, "m7i.xlarge": { - "eu-west-1": 0.184, - "us-east-1": 0.22176, - "us-east-2": 0.2016, - "us-west-2": 0.184 + "ap-northeast-1": 0.47044, + "ap-northeast-2": 0.2478, + "ap-south-1": 0.184, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.0, + "ca-central-1": 0.24717, + "eu-central-1": 0.184, + "eu-north-1": 0.2142, + "eu-south-2": 0.24717, + "eu-west-1": 0.2247, + "eu-west-2": 0.2331, + "eu-west-3": 0.0, + "sa-east-1": 0.184, + "us-east-1": 0.0, + "us-east-2": 0.3856, + "us-gov-east-1": 0.184, + "us-gov-west-1": 0.2541, + "us-west-1": 0.25872, + "us-west-2": 0.2016 }, - "m7i.2xlarge": { + "m7i.metal-24xl": { + "ap-northeast-1": 6.87456, + "ap-northeast-2": 4.416, + "ap-south-1": 4.416, + "ap-southeast-1": 6.048, + "ap-southeast-2": 4.416, + "ca-central-1": 4.416, + "eu-central-1": 0.0, + "eu-north-1": 4.416, + "eu-south-2": 4.416, "eu-west-1": 0.0, + "eu-west-2": 4.416, + "eu-west-3": 4.416, + "sa-east-1": 4.416, + "us-east-1": 4.416, + "us-east-2": 4.416, + "us-gov-east-1": 6.0984, + "us-gov-west-1": 11.12424, + "us-west-1": 5.6448, + "us-west-2": 0.0 + }, + "m7i.metal-48xl": { + "ap-northeast-1": 8.832, + "ap-northeast-2": 8.832, + "ap-south-1": 10.1808, + "ap-southeast-1": 8.832, + "ap-southeast-2": 8.832, + "ca-central-1": 8.832, + "eu-central-1": 8.832, + "eu-north-1": 10.2816, + "eu-south-2": 0.0, + "eu-west-1": 10.7856, + "eu-west-2": 8.832, + "eu-west-3": 8.832, + "sa-east-1": 8.832, + "us-east-1": 9.6768, + "us-east-2": 8.832, + "us-gov-east-1": 8.832, + "us-gov-west-1": 8.832, + "us-west-1": 0.0, + "us-west-2": 18.5088 + }, + "m7i.2xlarge": { + "ap-northeast-1": 0.5208, + "ap-northeast-2": 0.4956, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.368, + "ca-central-1": 0.4494, + "eu-central-1": 0.0, + "eu-north-1": 0.4284, + "eu-south-2": 0.49434, + "eu-west-1": 0.368, + "eu-west-2": 0.368, + "eu-west-3": 0.368, + "sa-east-1": 0.0, "us-east-1": 0.368, "us-east-2": 0.4032, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.92702, + "us-west-1": 0.4704, "us-west-2": 0.368 }, "m7i.4xlarge": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.9912, + "ap-south-1": 0.8484, + "ap-southeast-1": 1.744, + "ap-southeast-2": 1.008, + "ca-central-1": 0.736, + "eu-central-1": 1.702, + "eu-north-1": 0.0, + "eu-south-2": 0.8988, "eu-west-1": 0.8988, + "eu-west-2": 0.736, + "eu-west-3": 0.9408, + "sa-east-1": 0.736, "us-east-1": 0.8064, "us-east-2": 0.736, + "us-gov-east-1": 1.11804, + "us-gov-west-1": 0.736, + "us-west-1": 1.77088, "us-west-2": 0.8064 }, "m7i.8xlarge": { + "ap-northeast-1": 2.0832, + "ap-northeast-2": 0.0, + "ap-south-1": 1.472, + "ap-southeast-1": 2.2176, + "ap-southeast-2": 2.016, + "ca-central-1": 1.7976, + "eu-central-1": 2.1252, + "eu-north-1": 1.7136, + "eu-south-2": 0.0, "eu-west-1": 1.472, - "us-east-1": 1.77408, + "eu-west-2": 1.472, + "eu-west-3": 1.8816, + "sa-east-1": 1.472, + "us-east-1": 1.472, "us-east-2": 1.472, - "us-west-2": 1.472 + "us-gov-east-1": 1.472, + "us-gov-west-1": 2.0328, + "us-west-1": 1.472, + "us-west-2": 1.77408 }, "m7i.12xlarge": { - "eu-west-1": 4.9044, + "ap-northeast-1": 2.208, + "ap-northeast-2": 5.1816, + "ap-south-1": 2.208, + "ap-southeast-1": 0.0, + "ap-southeast-2": 3.024, + "ca-central-1": 2.6964, + "eu-central-1": 0.0, + "eu-north-1": 2.5704, + "eu-south-2": 2.96604, + "eu-west-1": 2.6964, + "eu-west-2": 2.7972, + "eu-west-3": 2.8224, + "sa-east-1": 3.8556, "us-east-1": 2.4192, - "us-east-2": 0.0, + "us-east-2": 2.208, + "us-gov-east-1": 3.35412, + "us-gov-west-1": 3.0492, + "us-west-1": 2.208, "us-west-2": 2.4192 }, "m7i.16xlarge": { + "ap-northeast-1": 4.58304, + "ap-northeast-2": 3.9648, + "ap-south-1": 6.3376, + "ap-southeast-1": 2.944, + "ap-southeast-2": 4.032, + "ca-central-1": 3.5952, + "eu-central-1": 3.864, + "eu-north-1": 2.944, + "eu-south-2": 2.944, "eu-west-1": 3.5952, - "us-east-1": 0.0, + "eu-west-2": 3.7296, + "eu-west-3": 6.7072, + "sa-east-1": 5.1408, + "us-east-1": 3.2256, "us-east-2": 3.2256, + "us-gov-east-1": 2.944, + "us-gov-west-1": 2.944, + "us-west-1": 2.944, "us-west-2": 2.944 }, "m7i.24xlarge": { + "ap-northeast-1": 4.416, + "ap-northeast-2": 4.416, + "ap-south-1": 0.0, + "ap-southeast-1": 6.6528, + "ap-southeast-2": 6.048, + "ca-central-1": 5.3928, + "eu-central-1": 5.796, + "eu-north-1": 5.1408, + "eu-south-2": 4.416, "eu-west-1": 4.416, + "eu-west-2": 4.416, + "eu-west-3": 4.416, + "sa-east-1": 4.416, "us-east-1": 4.416, "us-east-2": 4.416, - "us-west-2": 4.416 + "us-gov-east-1": 11.12424, + "us-gov-west-1": 4.416, + "us-west-1": 0.0, + "us-west-2": 9.2544 }, "m7i.48xlarge": { + "ap-northeast-1": 8.832, + "ap-northeast-2": 11.8944, + "ap-south-1": 8.832, + "ap-southeast-1": 8.832, + "ap-southeast-2": 12.096, + "ca-central-1": 19.6176, + "eu-central-1": 11.592, + "eu-north-1": 8.832, + "eu-south-2": 19.6176, "eu-west-1": 8.832, + "eu-west-2": 11.1888, + "eu-west-3": 11.2896, + "sa-east-1": 15.4224, "us-east-1": 9.6768, - "us-east-2": 8.832, + "us-east-2": 9.6768, + "us-gov-east-1": 8.832, + "us-gov-west-1": 12.1968, + "us-west-1": 8.832, "us-west-2": 8.832 }, "m7i-flex.large": { + "ap-northeast-1": 0.12369, + "ap-northeast-2": 0.11771, + "ap-south-1": 0.10075, + "ap-southeast-1": 0.1197, + "ap-southeast-2": 0.1197, + "ca-central-1": 0.10673, + "eu-central-1": 0.11471, + "eu-north-1": 0.10175, + "eu-south-2": 0.10673, "eu-west-1": 0.10673, + "eu-west-2": 0.11072, + "eu-west-3": 0.11172, + "sa-east-1": 0.15262, "us-east-1": 0.09576, "us-east-2": 0.09576, - "us-west-2": 0.18316 + "us-gov-east-1": 0.1207, + "us-gov-west-1": 0.1207, + "us-west-1": 0.11172, + "us-west-2": 0.09576 }, "m7i-flex.xlarge": { + "ap-northeast-1": 0.24738, + "ap-northeast-2": 0.23542, + "ap-south-1": 0.2015, + "ap-southeast-1": 0.2394, + "ap-southeast-2": 0.2394, + "ca-central-1": 0.21346, + "eu-central-1": 0.22942, + "eu-north-1": 0.2035, + "eu-south-2": 0.21346, "eu-west-1": 0.21346, + "eu-west-2": 0.22144, + "eu-west-3": 0.22344, + "sa-east-1": 0.30524, "us-east-1": 0.19152, "us-east-2": 0.19152, + "us-gov-east-1": 0.2414, + "us-gov-west-1": 0.2414, + "us-west-1": 0.22344, "us-west-2": 0.19152 }, "m7i-flex.2xlarge": { + "ap-northeast-1": 0.49476, + "ap-northeast-2": 0.47084, + "ap-south-1": 0.403, + "ap-southeast-1": 0.4788, + "ap-southeast-2": 0.4788, + "ca-central-1": 0.42692, + "eu-central-1": 0.45884, + "eu-north-1": 0.407, + "eu-south-2": 0.42692, "eu-west-1": 0.42692, + "eu-west-2": 0.44288, + "eu-west-3": 0.44688, + "sa-east-1": 0.61048, "us-east-1": 0.38304, "us-east-2": 0.38304, + "us-gov-east-1": 0.4828, + "us-gov-west-1": 0.4828, + "us-west-1": 0.44688, "us-west-2": 0.38304 }, "m7i-flex.4xlarge": { + "ap-northeast-1": 0.98952, + "ap-northeast-2": 0.94168, + "ap-south-1": 0.806, + "ap-southeast-1": 0.9576, + "ap-southeast-2": 0.9576, + "ca-central-1": 0.85384, + "eu-central-1": 0.91768, + "eu-north-1": 0.814, + "eu-south-2": 0.85384, "eu-west-1": 0.85384, + "eu-west-2": 0.88576, + "eu-west-3": 0.89376, + "sa-east-1": 1.22096, "us-east-1": 0.76608, "us-east-2": 0.76608, - "us-west-2": 1.46528 + "us-gov-east-1": 0.9656, + "us-gov-west-1": 0.9656, + "us-west-1": 0.89376, + "us-west-2": 0.76608 }, "m7i-flex.8xlarge": { + "ap-northeast-1": 1.97904, + "ap-northeast-2": 1.88336, + "ap-south-1": 1.612, + "ap-southeast-1": 1.9152, + "ap-southeast-2": 1.9152, + "ca-central-1": 1.70768, + "eu-central-1": 1.83536, + "eu-north-1": 1.628, + "eu-south-2": 1.70768, "eu-west-1": 1.70768, + "eu-west-2": 1.77152, + "eu-west-3": 1.78752, + "sa-east-1": 2.44192, "us-east-1": 1.53216, "us-east-2": 1.53216, - "us-west-2": 2.93056 + "us-gov-east-1": 1.9312, + "us-gov-west-1": 1.9312, + "us-west-1": 1.78752, + "us-west-2": 1.53216 }, "p2.xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 1.649, + "ap-northeast-2": 0.184, "ap-south-1": 0.184, "ap-southeast-1": 0.184, - "ap-southeast-2": 1.88, + "ap-southeast-2": 0.0, "eu-central-1": 1.326, "eu-west-1": 0.972, "us-east-1": 0.0, "us-east-2": 0.184, "us-gov-west-1": 0.184, - "us-west-2": 0.0 + "us-west-2": 0.9 }, "p2.8xlarge": { "ap-northeast-1": 12.336, - "ap-northeast-2": 11.72, + "ap-northeast-2": 1.472, "ap-south-1": 0.0, - "ap-southeast-1": 13.744, + "ap-southeast-1": 1.472, "ap-southeast-2": 1.472, "eu-central-1": 10.608, "eu-west-1": 9.248, - "us-east-1": 7.2, + "us-east-1": 1.472, "us-east-2": 1.472, "us-gov-west-1": 8.64, "us-west-2": 1.472 }, "p2.16xlarge": { - "ap-northeast-1": 24.672, - "ap-northeast-2": 2.944, - "ap-south-1": 0.0, + "ap-northeast-1": 27.616, + "ap-northeast-2": 23.44, + "ap-south-1": 2.944, "ap-southeast-1": 27.488, "ap-southeast-2": 0.0, "eu-central-1": 2.944, - "eu-west-1": 15.552, + "eu-west-1": 2.944, "us-east-1": 14.4, "us-east-2": 14.4, "us-gov-west-1": 17.28, @@ -90942,40 +103764,40 @@ }, "p3.2xlarge": { "ap-northeast-1": 0.0, - "ap-northeast-2": 0.368, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.368, - "ap-southeast-2": 0.0, - "ca-central-1": 0.0, + "ap-southeast-2": 0.368, + "ca-central-1": 3.953, "eu-central-1": 0.368, "eu-west-1": 3.305, "eu-west-2": 0.368, - "us-east-1": 3.428, - "us-east-2": 3.06, - "us-gov-west-1": 0.368, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.368 }, "p3.8xlarge": { "ap-northeast-1": 16.776, "ap-northeast-2": 16.936, - "ap-southeast-1": 1.472, + "ap-southeast-1": 0.0, "ap-southeast-2": 1.472, - "ca-central-1": 0.0, + "ca-central-1": 13.464, "eu-central-1": 15.292, - "eu-west-1": 15.554, + "eu-west-1": 14.082, "eu-west-2": 14.356, - "us-east-1": 1.472, + "us-east-1": 14.508, "us-east-2": 12.24, - "us-gov-west-1": 16.16, + "us-gov-west-1": 0.0, "us-west-2": 12.24 }, "p3.16xlarge": { "ap-northeast-1": 33.552, "ap-northeast-2": 33.872, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-1": 2.944, + "ap-southeast-2": 33.872, "ca-central-1": 2.944, "eu-central-1": 30.584, - "eu-west-1": 29.384, + "eu-west-1": 26.44, "eu-west-2": 0.0, "us-east-1": 2.944, "us-east-2": 0.0, @@ -90987,53 +103809,53 @@ "eu-west-1": 4.416, "us-east-1": 4.416, "us-gov-east-1": 41.87, - "us-gov-west-1": 0.0, + "us-gov-west-1": 4.416, "us-west-2": 4.416 }, "r3.large": { - "ap-northeast-1": 0.092, + "ap-northeast-1": 0.2, "ap-northeast-2": 0.2, - "ap-south-1": 0.092, + "ap-south-1": 0.19, "ap-southeast-1": 0.0, "ap-southeast-2": 0.2, "eu-central-1": 0.0, - "eu-west-1": 0.092, - "sa-east-1": 0.092, + "eu-west-1": 0.204, + "sa-east-1": 0.0, "us-east-1": 0.092, "us-east-2": 0.092, "us-gov-west-1": 0.0, "us-west-1": 0.0, - "us-west-2": 0.166 + "us-west-2": 0.183 }, "r3.xlarge": { "ap-northeast-1": 0.0, "ap-northeast-2": 0.399, "ap-south-1": 0.0, - "ap-southeast-1": 0.439, - "ap-southeast-2": 0.399, - "eu-central-1": 0.4, - "eu-west-1": 0.184, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.439, + "eu-central-1": 0.184, + "eu-west-1": 0.371, "sa-east-1": 0.884, "us-east-1": 0.333, "us-east-2": 0.184, "us-gov-west-1": 0.649, - "us-west-1": 0.371, - "us-west-2": 0.184 + "us-west-1": 0.0, + "us-west-2": 0.366 }, "r3.2xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.368, "ap-northeast-2": 0.0, "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.368, - "eu-central-1": 0.368, - "eu-west-1": 0.368, - "sa-east-1": 0.368, + "eu-central-1": 1.18, + "eu-west-1": 0.815, + "sa-east-1": 1.399, "us-east-1": 0.732, "us-east-2": 0.368, "us-gov-west-1": 0.368, "us-west-1": 1.247, - "us-west-2": 0.368 + "us-west-2": 0.665 }, "r3.4xlarge": { "ap-northeast-1": 0.736, @@ -91041,29 +103863,29 @@ "ap-south-1": 0.736, "ap-southeast-1": 1.596, "ap-southeast-2": 1.596, - "eu-central-1": 0.736, - "eu-west-1": 0.0, - "sa-east-1": 0.0, + "eu-central-1": 0.0, + "eu-west-1": 0.736, + "sa-east-1": 2.799, "us-east-1": 1.463, "us-east-2": 1.463, "us-gov-west-1": 1.596, "us-west-1": 0.736, - "us-west-2": 0.0 + "us-west-2": 0.736 }, "r3.8xlarge": { - "ap-northeast-1": 3.192, - "ap-northeast-2": 3.192, - "ap-south-1": 4.504, - "ap-southeast-1": 0.0, - "ap-southeast-2": 1.472, - "eu-central-1": 1.472, - "eu-west-1": 1.472, + "ap-northeast-1": 4.25, + "ap-northeast-2": 1.472, + "ap-south-1": 0.0, + "ap-southeast-1": 1.472, + "ap-southeast-2": 3.192, + "eu-central-1": 3.201, + "eu-west-1": 2.964, "sa-east-1": 5.597, "us-east-1": 1.472, "us-east-2": 1.472, - "us-gov-west-1": 1.472, + "us-gov-west-1": 4.06, "us-west-1": 2.964, - "us-west-2": 0.0 + "us-west-2": 2.66 }, "r4.large": { "ap-northeast-1": 0.252, @@ -91073,62 +103895,62 @@ "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, "ca-central-1": 0.092, - "eu-central-1": 0.092, + "eu-central-1": 0.16005, "eu-west-1": 0.092, "eu-west-2": 0.0, "eu-west-3": 0.092, - "sa-east-1": 0.092, - "us-east-1": 0.238, + "sa-east-1": 0.28, + "us-east-1": 0.0, "us-east-2": 0.133, "us-gov-west-1": 0.1596, - "us-west-1": 0.092, + "us-west-1": 0.1482, "us-west-2": 0.225 }, "r4.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.352, "ap-northeast-2": 0.184, - "ap-northeast-3": 0.184, - "ap-south-1": 0.274, + "ap-northeast-3": 0.32, + "ap-south-1": 0.3014, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.351, + "ap-southeast-2": 0.184, "ca-central-1": 0.184, - "eu-central-1": 0.352, + "eu-central-1": 0.536, "eu-west-1": 0.0, - "eu-west-2": 0.312, - "eu-west-3": 0.184, + "eu-west-2": 0.527, + "eu-west-3": 0.312, "sa-east-1": 0.56, - "us-east-1": 0.266, + "us-east-1": 0.184, "us-east-2": 0.0, - "us-gov-west-1": 0.3192, + "us-gov-west-1": 0.535, "us-west-1": 0.4804, - "us-west-2": 0.293 + "us-west-2": 0.0 }, "r4.2xlarge": { "ap-northeast-1": 0.368, "ap-northeast-2": 0.64, - "ap-northeast-3": 0.704, - "ap-south-1": 0.548, + "ap-northeast-3": 0.64, + "ap-south-1": 0.6028, "ap-southeast-1": 0.64, "ap-southeast-2": 1.0064, "ca-central-1": 0.368, - "eu-central-1": 0.6402, + "eu-central-1": 1.072, "eu-west-1": 0.5928, "eu-west-2": 0.0, - "eu-west-3": 0.368, + "eu-west-3": 0.624, "sa-east-1": 0.368, "us-east-1": 0.0, - "us-east-2": 0.532, - "us-gov-west-1": 0.6384, - "us-west-1": 1.02, - "us-west-2": 0.0 + "us-east-2": 0.585, + "us-gov-west-1": 0.0, + "us-west-1": 0.5928, + "us-west-2": 0.368 }, "r4.4xlarge": { "ap-northeast-1": 0.736, - "ap-northeast-2": 1.28, - "ap-northeast-3": 0.736, + "ap-northeast-2": 0.736, + "ap-northeast-3": 1.28, "ap-south-1": 0.736, - "ap-southeast-1": 1.408, - "ap-southeast-2": 0.0, + "ap-southeast-1": 1.28, + "ap-southeast-2": 1.2768, "ca-central-1": 0.736, "eu-central-1": 2.144, "eu-west-1": 0.0, @@ -91137,112 +103959,114 @@ "sa-east-1": 0.736, "us-east-1": 0.736, "us-east-2": 1.064, - "us-gov-west-1": 0.736, + "us-gov-west-1": 1.2768, "us-west-1": 0.0, "us-west-2": 1.064 }, "r4.8xlarge": { - "ap-northeast-1": 1.472, - "ap-northeast-2": 2.56, + "ap-northeast-1": 4.288, + "ap-northeast-2": 1.472, "ap-northeast-3": 1.472, - "ap-south-1": 3.664, - "ap-southeast-1": 0.0, + "ap-south-1": 0.0, + "ap-southeast-1": 2.56, "ap-southeast-2": 2.5536, "ca-central-1": 2.336, - "eu-central-1": 4.289, + "eu-central-1": 2.5608, "eu-west-1": 1.472, - "eu-west-2": 3.968, + "eu-west-2": 1.472, "eu-west-3": 1.472, - "sa-east-1": 4.928, - "us-east-1": 1.472, + "sa-east-1": 0.0, + "us-east-1": 2.128, "us-east-2": 0.0, "us-gov-west-1": 2.5536, - "us-west-1": 4.08, - "us-west-2": 3.6 + "us-west-1": 1.472, + "us-west-2": 1.472 }, "r4.16xlarge": { "ap-northeast-1": 5.12, "ap-northeast-2": 8.064, "ap-northeast-3": 5.12, "ap-south-1": 4.384, - "ap-southeast-1": 5.12, - "ap-southeast-2": 2.944, - "ca-central-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "ca-central-1": 4.672, "eu-central-1": 0.0, - "eu-west-1": 2.944, + "eu-west-1": 4.742, "eu-west-2": 2.944, "eu-west-3": 2.944, - "sa-east-1": 0.0, + "sa-east-1": 2.944, "us-east-1": 0.0, - "us-east-2": 2.944, + "us-east-2": 4.256, "us-gov-west-1": 5.1072, - "us-west-1": 2.944, + "us-west-1": 0.0, "us-west-2": 2.944 }, "r5.large": { "af-south-1": 0.27, "ap-east-1": 0.167, - "ap-northeast-1": 0.152, + "ap-northeast-1": 0.161, "ap-northeast-2": 0.092, "ap-northeast-3": 0.092, "ap-south-1": 0.092, "ap-south-2": 0.092, "ap-southeast-1": 0.152, "ap-southeast-2": 0.151, - "ap-southeast-3": 0.244, + "ap-southeast-3": 0.152, "ap-southeast-4": 0.092, "ca-central-1": 0.0, - "eu-central-1": 0.244, + "ca-west-1": 0.138, + "eu-central-1": 0.152, "eu-central-2": 0.092, "eu-north-1": 0.0, - "eu-south-1": 0.148, + "eu-south-1": 0.092, "eu-south-2": 0.092, "eu-west-1": 0.149, - "eu-west-2": 0.24, - "eu-west-3": 0.0, + "eu-west-2": 0.0, + "eu-west-3": 0.148, "il-central-1": 0.148, "me-central-1": 0.0, "me-south-1": 0.092, "sa-east-1": 0.092, - "us-east-1": 0.226, + "us-east-1": 0.126, "us-east-2": 0.134, "us-gov-east-1": 0.151, "us-gov-west-1": 0.092, - "us-west-1": 0.148, + "us-west-1": 0.092, "us-west-2": 0.126, "us-west-2-lax-1": 0.243 }, "r5.xlarge": { "af-south-1": 0.184, "ap-east-1": 0.334, - "ap-northeast-1": 0.184, - "ap-northeast-2": 0.0, - "ap-northeast-3": 0.304, - "ap-south-1": 0.26, - "ap-south-2": 0.0, - "ap-southeast-1": 0.0, - "ap-southeast-2": 0.302, + "ap-northeast-1": 0.304, + "ap-northeast-2": 0.184, + "ap-northeast-3": 0.506, + "ap-south-1": 0.276, + "ap-south-2": 0.184, + "ap-southeast-1": 0.184, + "ap-southeast-2": 0.0, "ap-southeast-3": 0.184, "ap-southeast-4": 0.184, - "ca-central-1": 0.184, + "ca-central-1": 0.293, + "ca-west-1": 0.184, "eu-central-1": 0.322, - "eu-central-2": 0.184, - "eu-north-1": 0.468, + "eu-central-2": 0.334, + "eu-north-1": 0.284, "eu-south-1": 0.0, - "eu-south-2": 0.0, + "eu-south-2": 0.282, "eu-west-1": 0.299, "eu-west-2": 0.0, "eu-west-3": 0.184, - "il-central-1": 0.296, + "il-central-1": 0.314, "me-central-1": 0.0, "me-south-1": 0.31, "sa-east-1": 0.184, - "us-east-1": 0.252, + "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.302, "us-gov-west-1": 0.184, - "us-west-1": 0.28, - "us-west-2": 0.0, + "us-west-1": 0.184, + "us-west-2": 0.252, "us-west-2-lax-1": 0.486 }, "r5.metal": { @@ -91251,134 +104075,138 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-northeast-3": 7.296, - "ap-south-1": 0.0, - "ap-south-2": 6.24, + "ap-south-1": 4.416, + "ap-south-2": 4.416, "ap-southeast-1": 0.0, - "ap-southeast-2": 0.0, + "ap-southeast-2": 11.664, "ap-southeast-3": 4.416, "ap-southeast-4": 4.416, "ca-central-1": 6.624, + "ca-west-1": 4.416, "eu-central-1": 7.296, "eu-central-2": 8.026, - "eu-north-1": 0.0, - "eu-south-1": 7.104, - "eu-south-2": 4.416, - "eu-west-1": 4.416, + "eu-north-1": 6.432, + "eu-south-1": 0.0, + "eu-south-2": 11.184, + "eu-west-1": 0.0, "eu-west-2": 7.104, "eu-west-3": 7.104, "il-central-1": 7.106, - "me-central-1": 0.0, - "me-south-1": 7.445, + "me-central-1": 11.861, + "me-south-1": 4.416, "sa-east-1": 9.648, "us-east-1": 6.048, "us-east-2": 0.0, "us-gov-east-1": 4.416, "us-gov-west-1": 7.248, - "us-west-1": 11.136, + "us-west-1": 4.416, "us-west-2": 4.416, "us-west-2-lax-1": 11.674 }, "r5.2xlarge": { - "af-south-1": 1.04, + "af-south-1": 0.672, "ap-east-1": 0.668, "ap-northeast-1": 0.368, "ap-northeast-2": 0.976, - "ap-northeast-3": 0.368, - "ap-south-1": 0.368, - "ap-south-2": 0.368, + "ap-northeast-3": 0.608, + "ap-south-1": 0.52, + "ap-south-2": 0.0, "ap-southeast-1": 0.644, "ap-southeast-2": 0.604, "ap-southeast-3": 0.976, "ap-southeast-4": 0.368, - "ca-central-1": 0.552, + "ca-central-1": 0.0, + "ca-west-1": 0.552, "eu-central-1": 0.608, - "eu-central-2": 1.037, - "eu-north-1": 0.0, + "eu-central-2": 1.077, + "eu-north-1": 0.368, "eu-south-1": 0.592, - "eu-south-2": 0.0, - "eu-west-1": 0.368, - "eu-west-2": 0.368, - "eu-west-3": 0.996, + "eu-south-2": 0.368, + "eu-west-1": 0.564, + "eu-west-2": 0.996, + "eu-west-3": 0.368, "il-central-1": 0.592, - "me-central-1": 0.0, - "me-south-1": 0.368, + "me-central-1": 0.988, + "me-south-1": 0.988, "sa-east-1": 0.804, "us-east-1": 0.0, "us-east-2": 0.504, - "us-gov-east-1": 0.0, - "us-gov-west-1": 0.0, + "us-gov-east-1": 0.368, + "us-gov-west-1": 0.604, "us-west-1": 0.928, - "us-west-2": 0.368, + "us-west-2": 0.504, "us-west-2-lax-1": 0.973 }, "r5.4xlarge": { "af-south-1": 2.08, - "ap-east-1": 2.152, - "ap-northeast-1": 1.216, - "ap-northeast-2": 1.289, + "ap-east-1": 0.0, + "ap-northeast-1": 0.736, + "ap-northeast-2": 0.0, "ap-northeast-3": 1.216, "ap-south-1": 1.102, - "ap-south-2": 1.04, - "ap-southeast-1": 1.952, - "ap-southeast-2": 0.736, + "ap-south-2": 1.776, + "ap-southeast-1": 1.289, + "ap-southeast-2": 2.016, "ap-southeast-3": 1.289, "ap-southeast-4": 0.736, "ca-central-1": 1.104, + "ca-west-1": 1.104, "eu-central-1": 0.736, - "eu-central-2": 0.736, + "eu-central-2": 1.418, "eu-north-1": 1.072, "eu-south-1": 0.736, - "eu-south-2": 0.736, + "eu-south-2": 1.864, "eu-west-1": 1.128, - "eu-west-2": 0.736, - "eu-west-3": 0.736, + "eu-west-2": 1.184, + "eu-west-3": 1.92, "il-central-1": 0.736, - "me-central-1": 1.977, + "me-central-1": 0.0, "me-south-1": 1.241, - "sa-east-1": 1.704, - "us-east-1": 1.008, + "sa-east-1": 0.736, + "us-east-1": 0.0, "us-east-2": 0.736, - "us-gov-east-1": 2.016, + "us-gov-east-1": 1.208, "us-gov-west-1": 0.736, - "us-west-1": 1.187, + "us-west-1": 1.12, "us-west-2": 0.736, "us-west-2-lax-1": 1.946 }, "r5.8xlarge": { - "af-south-1": 1.472, - "ap-east-1": 1.472, - "ap-northeast-1": 2.432, - "ap-northeast-2": 2.432, + "af-south-1": 2.688, + "ap-east-1": 2.672, + "ap-northeast-1": 4.05, + "ap-northeast-2": 1.472, "ap-northeast-3": 2.432, - "ap-south-1": 2.204, + "ap-south-1": 2.08, "ap-south-2": 1.472, - "ap-southeast-1": 2.432, + "ap-southeast-1": 1.472, "ap-southeast-2": 1.472, "ap-southeast-3": 1.472, - "ap-southeast-4": 0.0, + "ap-southeast-4": 2.416, "ca-central-1": 0.0, + "ca-west-1": 1.472, "eu-central-1": 2.578, - "eu-central-2": 1.472, + "eu-central-2": 2.836, "eu-north-1": 0.0, "eu-south-1": 2.51, - "eu-south-2": 1.472, + "eu-south-2": 3.863, "eu-west-1": 2.391, - "eu-west-2": 0.0, - "eu-west-3": 2.368, + "eu-west-2": 1.472, + "eu-west-3": 2.51, "il-central-1": 2.369, - "me-central-1": 2.63, + "me-central-1": 0.0, "me-south-1": 2.482, - "sa-east-1": 0.0, + "sa-east-1": 3.216, "us-east-1": 0.0, "us-east-2": 2.016, "us-gov-east-1": 1.472, "us-gov-west-1": 1.472, - "us-west-1": 2.374, + "us-west-1": 1.472, "us-west-2": 1.472, - "us-west-2-lax-1": 1.472 + "us-west-2-lax-1": 3.891 }, "r5.12xlarge": { - "af-south-1": 0.0, + "af-south-1": 4.274, "ap-east-1": 4.008, "ap-northeast-1": 3.648, "ap-northeast-2": 2.208, @@ -91386,26 +104214,27 @@ "ap-south-1": 3.12, "ap-south-2": 5.514, "ap-southeast-1": 2.208, - "ap-southeast-2": 3.624, + "ap-southeast-2": 2.208, "ap-southeast-3": 0.0, - "ap-southeast-4": 5.832, - "ca-central-1": 0.0, - "eu-central-1": 0.0, - "eu-central-2": 4.013, - "eu-north-1": 2.208, - "eu-south-1": 2.208, + "ap-southeast-4": 0.0, + "ca-central-1": 2.208, + "ca-west-1": 3.511, + "eu-central-1": 2.208, + "eu-central-2": 6.462, + "eu-north-1": 5.617, + "eu-south-1": 0.0, "eu-south-2": 2.208, - "eu-west-1": 2.208, - "eu-west-2": 0.0, - "eu-west-3": 2.208, + "eu-west-1": 3.587, + "eu-west-2": 3.552, + "eu-west-3": 0.0, "il-central-1": 3.553, - "me-central-1": 0.0, + "me-central-1": 6.154, "me-south-1": 3.722, - "sa-east-1": 7.321, + "sa-east-1": 0.0, "us-east-1": 3.024, - "us-east-2": 5.413, - "us-gov-east-1": 3.624, - "us-gov-west-1": 3.841, + "us-east-2": 3.024, + "us-gov-east-1": 6.049, + "us-gov-west-1": 2.208, "us-west-1": 3.36, "us-west-2": 3.024, "us-west-2-lax-1": 5.837 @@ -91415,47 +104244,49 @@ "ap-east-1": 5.344, "ap-northeast-1": 4.864, "ap-northeast-2": 2.944, - "ap-northeast-3": 2.944, - "ap-south-1": 7.104, + "ap-northeast-3": 4.864, + "ap-south-1": 0.0, "ap-south-2": 2.944, "ap-southeast-1": 2.944, - "ap-southeast-2": 2.944, - "ap-southeast-3": 5.156, + "ap-southeast-2": 7.776, + "ap-southeast-3": 7.808, "ap-southeast-4": 2.944, - "ca-central-1": 2.944, - "eu-central-1": 4.864, + "ca-central-1": 4.416, + "ca-west-1": 4.416, + "eu-central-1": 2.944, "eu-central-2": 2.944, "eu-north-1": 2.944, "eu-south-1": 4.736, "eu-south-2": 2.944, - "eu-west-1": 2.944, - "eu-west-2": 2.944, + "eu-west-1": 4.512, + "eu-west-2": 7.964, "eu-west-3": 2.944, - "il-central-1": 2.944, + "il-central-1": 4.738, "me-central-1": 2.944, "me-south-1": 4.963, "sa-east-1": 6.432, "us-east-1": 2.944, - "us-east-2": 0.0, - "us-gov-east-1": 4.832, - "us-gov-west-1": 4.832, + "us-east-2": 7.218, + "us-gov-east-1": 7.776, + "us-gov-west-1": 5.122, "us-west-1": 2.944, - "us-west-2": 2.944, + "us-west-2": 4.032, "us-west-2-lax-1": 2.944 }, "r5.24xlarge": { "af-south-1": 4.416, - "ap-east-1": 4.416, - "ap-northeast-1": 4.416, + "ap-east-1": 12.432, + "ap-northeast-1": 7.296, "ap-northeast-2": 4.416, - "ap-northeast-3": 0.0, - "ap-south-1": 4.416, - "ap-south-2": 4.416, - "ap-southeast-1": 0.0, - "ap-southeast-2": 7.248, - "ap-southeast-3": 0.0, - "ap-southeast-4": 7.248, + "ap-northeast-3": 7.296, + "ap-south-1": 6.24, + "ap-south-2": 10.656, + "ap-southeast-1": 7.296, + "ap-southeast-2": 4.416, + "ap-southeast-3": 11.712, + "ap-southeast-4": 11.664, "ca-central-1": 4.416, + "ca-west-1": 11.04, "eu-central-1": 4.416, "eu-central-2": 4.416, "eu-north-1": 6.432, @@ -91466,14 +104297,14 @@ "eu-west-3": 0.0, "il-central-1": 7.106, "me-central-1": 7.445, - "me-south-1": 11.861, + "me-south-1": 0.0, "sa-east-1": 9.648, "us-east-1": 4.416, - "us-east-2": 4.416, + "us-east-2": 6.048, "us-gov-east-1": 7.248, "us-gov-west-1": 7.248, - "us-west-1": 4.416, - "us-west-2": 4.416, + "us-west-1": 6.72, + "us-west-2": 6.048, "us-west-2-lax-1": 4.416 }, "r5a.large": { @@ -91782,15 +104613,15 @@ }, "r5b.large": { "ap-northeast-1": 0.092, - "ap-northeast-2": 0.092, + "ap-northeast-2": 0.1958, "ap-southeast-1": 0.092, "ap-southeast-2": 0.273, "ca-central-1": 0.092, "eu-central-1": 0.092, - "eu-north-1": 0.092, + "eu-north-1": 0.0, "eu-south-1": 0.092, - "eu-west-1": 0.167, - "eu-west-2": 0.092, + "eu-west-1": 0.092, + "eu-west-2": 0.2845, "sa-east-1": 0.092, "us-east-1": 0.092, "us-east-2": 0.092, @@ -91798,28 +104629,28 @@ }, "r5b.xlarge": { "ap-northeast-1": 0.184, - "ap-northeast-2": 0.5756, + "ap-northeast-2": 0.356, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.546, - "ca-central-1": 0.5426, + "ap-southeast-2": 0.184, + "ca-central-1": 0.184, "eu-central-1": 0.184, - "eu-north-1": 0.0, + "eu-north-1": 0.184, "eu-south-1": 0.184, "eu-west-1": 0.184, "eu-west-2": 0.184, - "sa-east-1": 0.7054, - "us-east-1": 0.184, + "sa-east-1": 0.0, + "us-east-1": 0.0, "us-east-2": 0.184, "us-west-2": 0.184 }, "r5b.metal": { "ap-northeast-1": 4.416, - "ap-northeast-2": 4.416, + "ap-northeast-2": 13.8144, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, "ca-central-1": 4.416, "eu-central-1": 4.416, - "eu-north-1": 4.416, + "eu-north-1": 7.58112, "eu-south-1": 4.416, "eu-west-1": 8.016, "eu-west-2": 4.416, @@ -91830,47 +104661,47 @@ }, "r5b.2xlarge": { "ap-northeast-1": 0.368, - "ap-northeast-2": 1.1512, + "ap-northeast-2": 0.0, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ca-central-1": 1.0852, + "ca-central-1": 0.368, "eu-central-1": 0.368, "eu-north-1": 0.368, "eu-south-1": 0.368, "eu-west-1": 0.668, "eu-west-2": 0.7, - "sa-east-1": 0.0, - "us-east-1": 0.368, + "sa-east-1": 0.368, + "us-east-1": 0.0, "us-east-2": 0.368, "us-west-2": 0.368 }, "r5b.4xlarge": { "ap-northeast-1": 0.736, - "ap-northeast-2": 0.736, + "ap-northeast-2": 2.16, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, - "ca-central-1": 2.1704, + "ca-central-1": 1.304, "eu-central-1": 0.736, "eu-north-1": 0.736, "eu-south-1": 0.736, "eu-west-1": 0.736, "eu-west-2": 0.736, - "sa-east-1": 1.896, + "sa-east-1": 0.736, "us-east-1": 0.736, "us-east-2": 0.736, "us-west-2": 0.736 }, "r5b.8xlarge": { - "ap-northeast-1": 3.1856, - "ap-northeast-2": 4.32, + "ap-northeast-1": 4.368, + "ap-northeast-2": 0.0, "ap-southeast-1": 1.472, "ap-southeast-2": 1.472, - "ca-central-1": 4.3408, + "ca-central-1": 1.472, "eu-central-1": 1.472, - "eu-north-1": 0.0, + "eu-north-1": 1.472, "eu-south-1": 1.472, - "eu-west-1": 4.4112, - "eu-west-2": 3.08, + "eu-west-1": 1.472, + "eu-west-2": 1.472, "sa-east-1": 1.472, "us-east-1": 1.472, "us-east-2": 1.472, @@ -91884,8 +104715,8 @@ "ca-central-1": 2.208, "eu-central-1": 2.208, "eu-north-1": 2.208, - "eu-south-1": 2.208, - "eu-west-1": 4.008, + "eu-south-1": 0.0, + "eu-west-1": 2.208, "eu-west-2": 2.208, "sa-east-1": 2.208, "us-east-1": 6.1416, @@ -91893,33 +104724,33 @@ "us-west-2": 2.208 }, "r5b.16xlarge": { - "ap-northeast-1": 5.792, - "ap-northeast-2": 0.0, + "ap-northeast-1": 9.3152, + "ap-northeast-2": 8.64, "ap-southeast-1": 2.944, "ap-southeast-2": 9.3152, "ca-central-1": 2.944, "eu-central-1": 2.944, "eu-north-1": 2.944, "eu-south-1": 2.944, - "eu-west-1": 5.8784, + "eu-west-1": 5.344, "eu-west-2": 9.104, "sa-east-1": 2.944, - "us-east-1": 2.944, + "us-east-1": 0.0, "us-east-2": 2.944, "us-west-2": 2.944 }, "r5b.24xlarge": { - "ap-northeast-1": 13.104, + "ap-northeast-1": 13.9728, "ap-northeast-2": 4.416, "ap-southeast-1": 4.416, "ap-southeast-2": 0.0, - "ca-central-1": 7.824, + "ca-central-1": 4.416, "eu-central-1": 8.544, - "eu-north-1": 4.416, - "eu-south-1": 12.816, - "eu-west-1": 4.416, - "eu-west-2": 0.0, - "sa-east-1": 4.416, + "eu-north-1": 0.0, + "eu-south-1": 4.416, + "eu-west-1": 8.016, + "eu-west-2": 4.416, + "sa-east-1": 16.9296, "us-east-1": 4.416, "us-east-2": 4.416, "us-west-2": 4.416 @@ -91931,30 +104762,30 @@ "ap-northeast-2": 0.092, "ap-northeast-3": 0.092, "ap-south-1": 0.092, - "ap-south-2": 0.252, + "ap-south-2": 0.092, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, "ap-southeast-3": 0.174, "ap-southeast-4": 0.092, "ca-central-1": 0.092, "eu-central-1": 0.092, - "eu-central-2": 0.294, + "eu-central-2": 0.0, "eu-north-1": 0.092, "eu-south-1": 0.092, "eu-south-2": 0.092, "eu-west-1": 0.16, - "eu-west-2": 0.092, + "eu-west-2": 0.169, "eu-west-3": 0.092, "il-central-1": 0.168, - "me-central-1": 0.092, + "me-central-1": 0.187, "me-south-1": 0.092, "sa-east-1": 0.092, - "us-east-1": 0.0, - "us-east-2": 0.144, + "us-east-1": 0.144, + "us-east-2": 0.153, "us-gov-east-1": 0.092, "us-gov-west-1": 0.0, "us-west-1": 0.092, - "us-west-2": 0.245, + "us-west-2": 0.0, "us-west-2-lax-1": 0.092 }, "r5d.xlarge": { @@ -91964,30 +104795,30 @@ "ap-northeast-2": 0.184, "ap-northeast-3": 0.184, "ap-south-1": 0.184, - "ap-south-2": 0.504, + "ap-south-2": 0.0, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, - "ap-southeast-3": 0.184, + "ap-southeast-3": 0.553, "ap-southeast-4": 0.184, "ca-central-1": 0.184, "eu-central-1": 0.184, "eu-central-2": 0.587, "eu-north-1": 0.184, "eu-south-1": 0.184, - "eu-south-2": 0.184, + "eu-south-2": 0.339, "eu-west-1": 0.32, - "eu-west-2": 0.184, + "eu-west-2": 0.522, "eu-west-3": 0.184, - "il-central-1": 0.184, - "me-central-1": 0.0, + "il-central-1": 0.52, + "me-central-1": 0.557, "me-south-1": 0.184, "sa-east-1": 0.184, "us-east-1": 0.0, - "us-east-2": 0.0, + "us-east-2": 0.305, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.0, "us-west-1": 0.184, - "us-west-2": 0.184, + "us-west-2": 0.288, "us-west-2-lax-1": 0.53 }, "r5d.metal": { @@ -92011,8 +104842,8 @@ "eu-west-1": 7.68, "eu-west-2": 4.416, "eu-west-3": 4.416, - "il-central-1": 0.0, - "me-central-1": 4.416, + "il-central-1": 8.064, + "me-central-1": 0.0, "me-south-1": 4.416, "sa-east-1": 4.416, "us-east-1": 4.416, @@ -92033,7 +104864,7 @@ "ap-south-2": 0.368, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, - "ap-southeast-3": 0.0, + "ap-southeast-3": 0.368, "ap-southeast-4": 0.738, "ca-central-1": 0.368, "eu-central-1": 0.368, @@ -92042,13 +104873,13 @@ "eu-south-1": 0.368, "eu-south-2": 0.0, "eu-west-1": 1.047, - "eu-west-2": 0.368, + "eu-west-2": 0.717, "eu-west-3": 0.368, "il-central-1": 0.368, - "me-central-1": 0.0, + "me-central-1": 0.368, "me-south-1": 0.368, "sa-east-1": 0.368, - "us-east-1": 0.944, + "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, "us-gov-west-1": 0.692, @@ -92063,26 +104894,26 @@ "ap-northeast-2": 0.736, "ap-northeast-3": 0.736, "ap-south-1": 0.736, - "ap-south-2": 2.016, + "ap-south-2": 0.736, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, "ap-southeast-3": 0.736, - "ap-southeast-4": 0.736, + "ap-southeast-4": 1.476, "ca-central-1": 0.736, "eu-central-1": 0.736, "eu-central-2": 1.522, "eu-north-1": 0.736, "eu-south-1": 0.736, - "eu-south-2": 2.093, + "eu-south-2": 0.736, "eu-west-1": 0.736, - "eu-west-2": 0.736, + "eu-west-2": 1.352, "eu-west-3": 0.736, "il-central-1": 0.736, "me-central-1": 0.736, "me-south-1": 0.736, "sa-east-1": 0.736, "us-east-1": 1.152, - "us-east-2": 0.0, + "us-east-2": 0.736, "us-gov-east-1": 0.736, "us-gov-west-1": 1.384, "us-west-1": 0.736, @@ -92107,10 +104938,10 @@ "eu-north-1": 3.904, "eu-south-1": 1.472, "eu-south-2": 0.0, - "eu-west-1": 0.0, - "eu-west-2": 4.176, + "eu-west-1": 2.56, + "eu-west-2": 1.472, "eu-west-3": 4.176, - "il-central-1": 2.849, + "il-central-1": 2.688, "me-central-1": 1.472, "me-south-1": 1.472, "sa-east-1": 1.472, @@ -92129,7 +104960,7 @@ "ap-northeast-2": 2.208, "ap-northeast-3": 2.208, "ap-south-1": 2.208, - "ap-south-2": 3.624, + "ap-south-2": 3.841, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, "ap-southeast-3": 2.208, @@ -92139,7 +104970,7 @@ "eu-central-2": 0.0, "eu-north-1": 2.208, "eu-south-1": 2.208, - "eu-south-2": 2.208, + "eu-south-2": 0.0, "eu-west-1": 3.84, "eu-west-2": 2.208, "eu-west-3": 2.208, @@ -92169,15 +105000,15 @@ "ap-southeast-4": 8.512, "ca-central-1": 2.944, "eu-central-1": 8.48, - "eu-central-2": 0.0, + "eu-central-2": 2.944, "eu-north-1": 7.808, "eu-south-1": 2.944, "eu-south-2": 8.064, "eu-west-1": 2.944, - "eu-west-2": 8.352, + "eu-west-2": 0.0, "eu-west-3": 8.352, "il-central-1": 5.699, - "me-central-1": 2.944, + "me-central-1": 5.97, "me-south-1": 2.944, "sa-east-1": 2.944, "us-east-1": 7.552, @@ -92186,7 +105017,7 @@ "us-gov-west-1": 2.944, "us-west-1": 8.128, "us-west-2": 7.552, - "us-west-2-lax-1": 8.474 + "us-west-2-lax-1": 2.944 }, "r5d.24xlarge": { "af-south-1": 4.416, @@ -92202,48 +105033,48 @@ "ap-southeast-4": 4.416, "ca-central-1": 4.416, "eu-central-1": 4.416, - "eu-central-2": 13.55, + "eu-central-2": 4.416, "eu-north-1": 4.416, "eu-south-1": 4.416, "eu-south-2": 12.096, - "eu-west-1": 7.68, - "eu-west-2": 4.416, + "eu-west-1": 12.096, + "eu-west-2": 0.0, "eu-west-3": 4.416, - "il-central-1": 8.064, - "me-central-1": 12.864, + "il-central-1": 4.416, + "me-central-1": 0.0, "me-south-1": 4.416, "sa-east-1": 4.416, - "us-east-1": 0.0, + "us-east-1": 6.912, "us-east-2": 4.416, "us-gov-east-1": 4.416, "us-gov-west-1": 4.416, "us-west-1": 4.416, - "us-west-2": 6.912, + "us-west-2": 0.0, "us-west-2-lax-1": 12.71 }, "r5dn.large": { - "af-south-1": 0.32626, + "af-south-1": 0.313, "ap-northeast-1": 0.092, "ap-northeast-2": 0.092, "ap-southeast-1": 0.092, - "ap-southeast-2": 0.296, + "ap-southeast-2": 0.0, "eu-central-1": 0.092, "eu-north-1": 0.0, - "eu-south-1": 0.29976, + "eu-south-1": 0.20776, "eu-west-1": 0.092, - "eu-west-3": 0.196, + "eu-west-3": 0.20776, "us-east-1": 0.092, "us-east-2": 0.092, "us-gov-east-1": 0.092, - "us-gov-west-1": 0.201, + "us-gov-west-1": 0.305, "us-west-2": 0.092 }, "r5dn.xlarge": { - "af-south-1": 0.626, + "af-south-1": 0.46852, "ap-northeast-1": 0.184, - "ap-northeast-2": 0.398, + "ap-northeast-2": 0.60588, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.592, + "ap-southeast-2": 0.61648, "eu-central-1": 0.184, "eu-north-1": 0.184, "eu-south-1": 0.184, @@ -92252,20 +105083,20 @@ "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.0, + "us-gov-west-1": 0.184, "us-west-2": 0.184 }, "r5dn.metal": { - "af-south-1": 4.416, + "af-south-1": 15.024, "ap-northeast-1": 4.416, - "ap-northeast-2": 9.552, + "ap-northeast-2": 4.416, "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, "eu-central-1": 4.416, "eu-north-1": 4.416, - "eu-south-1": 4.416, + "eu-south-1": 0.0, "eu-west-1": 4.416, - "eu-west-3": 9.408, + "eu-west-3": 13.824, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-east-1": 4.416, @@ -92275,12 +105106,12 @@ "r5dn.2xlarge": { "af-south-1": 0.368, "ap-northeast-1": 0.368, - "ap-northeast-2": 0.0, + "ap-northeast-2": 0.84376, "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, "eu-central-1": 0.368, - "eu-north-1": 1.076, - "eu-south-1": 0.0, + "eu-north-1": 0.708, + "eu-south-1": 0.368, "eu-west-1": 0.368, "eu-west-3": 0.83104, "us-east-1": 0.368, @@ -92290,31 +105121,31 @@ "us-west-2": 0.368 }, "r5dn.4xlarge": { - "af-south-1": 1.768, + "af-south-1": 1.87408, "ap-northeast-1": 0.736, "ap-northeast-2": 0.736, "ap-southeast-1": 0.736, - "ap-southeast-2": 1.72992, + "ap-southeast-2": 0.736, "eu-central-1": 0.736, "eu-north-1": 0.736, - "eu-south-1": 0.0, + "eu-south-1": 2.304, "eu-west-1": 0.736, "eu-west-3": 1.66208, "us-east-1": 0.736, "us-east-2": 0.736, "us-gov-east-1": 0.736, - "us-gov-west-1": 2.344, + "us-gov-west-1": 0.0, "us-west-2": 0.736 }, "r5dn.8xlarge": { - "af-south-1": 5.008, + "af-south-1": 1.472, "ap-northeast-1": 1.472, - "ap-northeast-2": 3.184, + "ap-northeast-2": 0.0, "ap-southeast-1": 1.472, "ap-southeast-2": 3.45984, "eu-central-1": 1.472, "eu-north-1": 4.47392, - "eu-south-1": 0.0, + "eu-south-1": 1.472, "eu-west-1": 1.472, "eu-west-3": 1.472, "us-east-1": 1.472, @@ -92324,20 +105155,20 @@ "us-west-2": 1.472 }, "r5dn.12xlarge": { - "af-south-1": 5.62224, + "af-south-1": 2.208, "ap-northeast-1": 2.208, "ap-northeast-2": 7.27056, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, "eu-central-1": 2.208, "eu-north-1": 2.208, - "eu-south-1": 4.704, + "eu-south-1": 4.98624, "eu-west-1": 2.208, - "eu-west-3": 6.912, + "eu-west-3": 2.208, "us-east-1": 2.208, "us-east-2": 2.208, "us-gov-east-1": 2.208, - "us-gov-west-1": 5.113, + "us-gov-west-1": 4.824, "us-west-2": 2.208 }, "r5dn.16xlarge": { @@ -92348,19 +105179,19 @@ "ap-southeast-2": 9.86368, "eu-central-1": 2.944, "eu-north-1": 2.944, - "eu-south-1": 2.944, + "eu-south-1": 0.0, "eu-west-1": 2.944, "eu-west-3": 6.64832, "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-east-1": 2.944, - "us-gov-west-1": 2.944, + "us-gov-west-1": 6.818, "us-west-2": 2.944 }, "r5dn.24xlarge": { "af-south-1": 4.416, "ap-northeast-1": 4.416, - "ap-northeast-2": 4.416, + "ap-northeast-2": 13.968, "ap-southeast-1": 4.416, "ap-southeast-2": 14.208, "eu-central-1": 4.416, @@ -92376,324 +105207,370 @@ }, "r5n.large": { "af-south-1": 0.092, - "ap-east-1": 0.202, - "ap-northeast-1": 0.092, + "ap-east-1": 0.092, + "ap-northeast-1": 0.284, "ap-northeast-2": 0.178, - "ap-south-1": 0.153, + "ap-south-1": 0.0, "ap-southeast-1": 0.092, - "ap-southeast-2": 0.181, - "ca-central-1": 0.255, + "ap-southeast-2": 0.0, + "ca-central-1": 0.092, "eu-central-1": 0.092, - "eu-north-1": 0.251, + "eu-north-1": 0.092, "eu-south-1": 0.092, "eu-west-1": 0.167, - "eu-west-2": 0.267, - "eu-west-3": 0.175, + "eu-west-2": 0.186, + "eu-west-3": 0.0, "sa-east-1": 0.328, "us-east-1": 0.092, - "us-east-2": 0.092, - "us-gov-east-1": 0.092, - "us-gov-west-1": 0.0, - "us-west-1": 0.169, + "us-east-2": 0.0, + "us-gov-east-1": 0.282, + "us-gov-west-1": 0.19, + "us-west-1": 0.092, "us-west-2": 0.092 }, "r5n.xlarge": { "af-south-1": 0.184, - "ap-east-1": 0.404, - "ap-northeast-1": 0.184, - "ap-northeast-2": 0.184, - "ap-south-1": 0.306, + "ap-east-1": 0.612, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.377, + "ap-south-1": 0.49, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.546, - "ca-central-1": 0.326, + "ap-southeast-2": 0.0, + "ca-central-1": 0.346, "eu-central-1": 0.184, - "eu-north-1": 0.318, + "eu-north-1": 0.184, "eu-south-1": 0.371, - "eu-west-1": 0.334, + "eu-west-1": 0.0, "eu-west-2": 0.35, - "eu-west-3": 0.35, - "sa-east-1": 0.472, + "eu-west-3": 0.0, + "sa-east-1": 0.184, "us-east-1": 0.184, "us-east-2": 0.184, "us-gov-east-1": 0.184, "us-gov-west-1": 0.358, - "us-west-1": 0.338, - "us-west-2": 0.184 + "us-west-1": 0.358, + "us-west-2": 0.0 }, "r5n.metal": { - "af-south-1": 9.536, - "ap-east-1": 9.696, - "ap-northeast-1": 4.416, + "af-south-1": 4.416, + "ap-east-1": 0.0, + "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, - "ap-south-1": 11.76, + "ap-south-1": 4.416, "ap-southeast-1": 4.416, - "ap-southeast-2": 8.688, - "ca-central-1": 7.824, + "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 4.416, - "eu-north-1": 12.048, + "eu-north-1": 4.416, "eu-south-1": 4.416, - "eu-west-1": 4.416, - "eu-west-2": 8.4, - "eu-west-3": 12.816, - "sa-east-1": 11.328, + "eu-west-1": 8.016, + "eu-west-2": 0.0, + "eu-west-3": 4.416, + "sa-east-1": 4.416, "us-east-1": 4.416, "us-east-2": 4.416, - "us-gov-east-1": 4.416, + "us-gov-east-1": 0.0, "us-gov-west-1": 4.416, - "us-west-1": 8.112, + "us-west-1": 0.0, "us-west-2": 4.416 }, "r5n.2xlarge": { "af-south-1": 0.368, "ap-east-1": 0.808, - "ap-northeast-1": 0.368, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.08, - "ap-south-1": 0.612, + "ap-south-1": 0.649, "ap-southeast-1": 0.368, - "ap-southeast-2": 1.092, - "ca-central-1": 1.02, + "ap-southeast-2": 0.767, + "ca-central-1": 0.0, "eu-central-1": 0.368, - "eu-north-1": 0.636, - "eu-south-1": 0.368, + "eu-north-1": 1.042, + "eu-south-1": 0.0, "eu-west-1": 0.668, "eu-west-2": 0.7, - "eu-west-3": 0.7, - "sa-east-1": 0.944, + "eu-west-3": 0.368, + "sa-east-1": 0.0, "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 0.368, - "us-west-1": 0.676, - "us-west-2": 0.368 + "us-gov-west-1": 0.716, + "us-west-1": 0.0, + "us-west-2": 1.0 }, "r5n.4xlarge": { - "af-south-1": 0.736, - "ap-east-1": 1.616, - "ap-northeast-1": 0.736, - "ap-northeast-2": 0.0, - "ap-south-1": 1.96, - "ap-southeast-1": 0.736, - "ap-southeast-2": 1.448, - "ca-central-1": 1.304, - "eu-central-1": 0.736, - "eu-north-1": 2.008, - "eu-south-1": 1.484, - "eu-west-1": 0.736, - "eu-west-2": 1.4, - "eu-west-3": 1.4, - "sa-east-1": 1.888, - "us-east-1": 0.736, - "us-east-2": 0.736, - "us-gov-east-1": 0.736, - "us-gov-west-1": 2.254, - "us-west-1": 1.352, - "us-west-2": 0.736 + "af-south-1": 2.421, + "ap-east-1": 0.736, + "ap-northeast-1": 2.273, + "ap-northeast-2": 2.245, + "ap-south-1": 1.224, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.736, + "ca-central-1": 0.736, + "eu-central-1": 2.16, + "eu-north-1": 0.736, + "eu-south-1": 0.736, + "eu-west-1": 1.416, + "eu-west-2": 0.736, + "eu-west-3": 0.736, + "sa-east-1": 0.736, + "us-east-1": 2.0, + "us-east-2": 0.0, + "us-gov-east-1": 2.254, + "us-gov-west-1": 0.736, + "us-west-1": 1.433, + "us-west-2": 2.0 }, "r5n.8xlarge": { - "af-south-1": 0.0, - "ap-east-1": 3.232, - "ap-northeast-1": 1.472, - "ap-northeast-2": 1.472, - "ap-south-1": 3.92, + "af-south-1": 4.841, + "ap-east-1": 3.426, + "ap-northeast-1": 4.368, + "ap-northeast-2": 4.491, + "ap-south-1": 1.472, "ap-southeast-1": 1.472, - "ap-southeast-2": 2.896, - "ca-central-1": 2.608, - "eu-central-1": 1.472, - "eu-north-1": 2.544, + "ap-southeast-2": 0.0, + "ca-central-1": 1.472, + "eu-central-1": 4.493, + "eu-north-1": 4.168, "eu-south-1": 0.0, - "eu-west-1": 2.672, - "eu-west-2": 2.8, - "eu-west-3": 4.272, - "sa-east-1": 3.776, + "eu-west-1": 0.0, + "eu-west-2": 1.472, + "eu-west-3": 0.0, + "sa-east-1": 1.472, "us-east-1": 1.472, "us-east-2": 1.472, "us-gov-east-1": 1.472, - "us-gov-west-1": 2.864, - "us-west-1": 2.704, + "us-gov-west-1": 1.472, + "us-west-1": 1.472, "us-west-2": 1.472 }, "r5n.12xlarge": { "af-south-1": 0.0, - "ap-east-1": 4.848, + "ap-east-1": 2.208, "ap-northeast-1": 2.208, - "ap-northeast-2": 6.736, - "ap-south-1": 3.672, + "ap-northeast-2": 4.528, + "ap-south-1": 0.0, "ap-southeast-1": 2.208, - "ap-southeast-2": 4.344, - "ca-central-1": 3.912, + "ap-southeast-2": 2.208, + "ca-central-1": 6.355, "eu-central-1": 2.208, - "eu-north-1": 3.816, - "eu-south-1": 4.2, - "eu-west-1": 2.208, - "eu-west-2": 6.408, + "eu-north-1": 2.208, + "eu-south-1": 2.208, + "eu-west-1": 0.0, + "eu-west-2": 2.208, "eu-west-3": 4.2, - "sa-east-1": 7.872, - "us-east-1": 2.208, + "sa-east-1": 2.208, + "us-east-1": 5.999, "us-east-2": 2.208, "us-gov-east-1": 2.208, "us-gov-west-1": 4.296, - "us-west-1": 6.264, + "us-west-1": 0.0, "us-west-2": 2.208 }, "r5n.16xlarge": { - "af-south-1": 0.0, - "ap-east-1": 6.464, + "af-south-1": 6.357, + "ap-east-1": 2.944, "ap-northeast-1": 2.944, "ap-northeast-2": 2.944, - "ap-south-1": 4.896, + "ap-south-1": 2.944, "ap-southeast-1": 2.944, "ap-southeast-2": 5.792, - "ca-central-1": 5.216, - "eu-central-1": 2.944, - "eu-north-1": 5.088, - "eu-south-1": 8.881, + "ca-central-1": 2.944, + "eu-central-1": 8.985, + "eu-north-1": 8.336, + "eu-south-1": 5.937, "eu-west-1": 5.344, - "eu-west-2": 8.544, - "eu-west-3": 5.6, - "sa-east-1": 10.496, - "us-east-1": 2.944, - "us-east-2": 2.944, - "us-gov-east-1": 2.944, - "us-gov-west-1": 8.672, - "us-west-1": 5.408, - "us-west-2": 2.944 + "eu-west-2": 2.944, + "eu-west-3": 2.944, + "sa-east-1": 7.552, + "us-east-1": 0.0, + "us-east-2": 7.712, + "us-gov-east-1": 0.0, + "us-gov-west-1": 5.728, + "us-west-1": 2.944, + "us-west-2": 7.712 }, "r5n.24xlarge": { "af-south-1": 4.416, - "ap-east-1": 9.696, - "ap-northeast-1": 4.416, - "ap-northeast-2": 12.96, - "ap-south-1": 7.344, + "ap-east-1": 4.416, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 4.416, "ap-southeast-1": 4.416, - "ap-southeast-2": 8.688, + "ap-southeast-2": 13.104, "ca-central-1": 7.824, "eu-central-1": 4.416, - "eu-north-1": 7.632, + "eu-north-1": 4.416, "eu-south-1": 0.0, - "eu-west-1": 8.016, - "eu-west-2": 8.4, - "eu-west-3": 8.4, - "sa-east-1": 15.744, + "eu-west-1": 4.416, + "eu-west-2": 4.416, + "eu-west-3": 4.416, + "sa-east-1": 0.0, "us-east-1": 4.416, - "us-east-2": 4.416, + "us-east-2": 11.568, "us-gov-east-1": 4.416, "us-gov-west-1": 8.592, - "us-west-1": 8.112, + "us-west-1": 4.416, "us-west-2": 4.416 }, "r6a.large": { + "ap-northeast-1": 0.1368, "ap-south-1": 0.092, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 0.15048, - "eu-west-1": 0.092, + "eu-west-1": 0.23159, "us-east-1": 0.092, "us-east-2": 0.092, + "us-west-1": 0.092, "us-west-2": 0.1134 }, "r6a.xlarge": { - "ap-south-1": 0.0, + "ap-northeast-1": 0.2736, + "ap-south-1": 0.143, + "ap-southeast-1": 0.2736, + "ap-southeast-2": 0.184, "eu-central-1": 0.184, - "eu-west-1": 0.2538, - "us-east-1": 0.0, + "eu-west-1": 0.46318, + "us-east-1": 0.43348, "us-east-2": 0.4108, - "us-west-2": 0.4108 + "us-west-1": 0.252, + "us-west-2": 0.2268 }, "r6a.metal": { - "ap-south-1": 15.696, + "ap-northeast-1": 13.1328, + "ap-south-1": 0.0, + "ap-southeast-1": 8.832, + "ap-southeast-2": 8.832, "eu-central-1": 8.832, - "eu-west-1": 8.832, + "eu-west-1": 12.1824, "us-east-1": 0.0, "us-east-2": 10.8864, - "us-west-2": 10.8864 + "us-west-1": 12.096, + "us-west-2": 0.0 }, "r6a.2xlarge": { + "ap-northeast-1": 0.5472, "ap-south-1": 0.368, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, "eu-central-1": 0.368, - "eu-west-1": 0.0, + "eu-west-1": 0.368, "us-east-1": 0.4536, - "us-east-2": 0.368, - "us-west-2": 0.8216 + "us-east-2": 0.4536, + "us-west-1": 0.0, + "us-west-2": 0.49896 }, "r6a.4xlarge": { + "ap-northeast-1": 1.0944, "ap-south-1": 0.572, + "ap-southeast-1": 0.736, + "ap-southeast-2": 1.0872, "eu-central-1": 1.20384, - "eu-west-1": 0.736, - "us-east-1": 0.0, + "eu-west-1": 0.0, + "us-east-1": 0.9072, "us-east-2": 0.736, + "us-west-1": 1.744, "us-west-2": 0.9072 }, "r6a.8xlarge": { + "ap-northeast-1": 1.472, "ap-south-1": 1.472, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.472, "eu-central-1": 1.472, "eu-west-1": 1.472, - "us-east-1": 1.472, + "us-east-1": 0.0, "us-east-2": 1.472, + "us-west-1": 2.2176, "us-west-2": 1.472 }, "r6a.12xlarge": { - "ap-south-1": 1.8876, + "ap-northeast-1": 3.2832, + "ap-south-1": 2.208, + "ap-southeast-1": 2.208, + "ap-southeast-2": 3.2616, "eu-central-1": 0.0, "eu-west-1": 2.208, "us-east-1": 5.20176, "us-east-2": 2.208, - "us-west-2": 2.208 + "us-west-1": 2.208, + "us-west-2": 2.7216 }, "r6a.16xlarge": { - "ap-south-1": 2.944, - "eu-central-1": 2.944, + "ap-northeast-1": 4.3776, + "ap-south-1": 5.4608, + "ap-southeast-1": 0.0, + "ap-southeast-2": 4.3488, + "eu-central-1": 0.0, "eu-west-1": 2.944, - "us-east-1": 3.99168, - "us-east-2": 3.99168, - "us-west-2": 6.5728 + "us-east-1": 0.0, + "us-east-2": 2.944, + "us-west-1": 4.032, + "us-west-2": 6.93568 }, "r6a.24xlarge": { + "ap-northeast-1": 11.63904, "ap-south-1": 0.0, - "eu-central-1": 11.63904, + "ap-southeast-1": 6.5664, + "ap-southeast-2": 6.5232, + "eu-central-1": 6.5664, "eu-west-1": 0.0, "us-east-1": 4.416, "us-east-2": 4.416, - "us-west-2": 10.40352 + "us-west-1": 6.6528, + "us-west-2": 4.416 }, "r6a.32xlarge": { - "ap-south-1": 10.9216, - "eu-central-1": 14.6432, - "eu-west-1": 8.1216, - "us-east-1": 7.98336, - "us-east-2": 7.2576, + "ap-northeast-1": 15.51872, + "ap-south-1": 4.576, + "ap-southeast-1": 8.7552, + "ap-southeast-2": 5.888, + "eu-central-1": 5.888, + "eu-west-1": 0.0, + "us-east-1": 13.1456, + "us-east-2": 13.87136, + "us-west-1": 8.064, "us-west-2": 5.888 }, "r6a.48xlarge": { + "ap-northeast-1": 13.1328, "ap-south-1": 8.832, + "ap-southeast-1": 8.832, + "ap-southeast-2": 13.0464, "eu-central-1": 0.0, - "eu-west-1": 0.0, + "eu-west-1": 12.1824, "us-east-1": 8.832, "us-east-2": 8.832, + "us-west-1": 8.832, "us-west-2": 0.0 }, "r6i.large": { - "af-south-1": 0.0, + "af-south-1": 0.26, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.2592, - "ap-northeast-3": 0.1672, - "ap-south-1": 0.092, - "ap-south-2": 0.143, + "ap-northeast-1": 0.244, + "ap-northeast-2": 0.152, + "ap-northeast-3": 0.0, + "ap-south-1": 0.13, + "ap-south-2": 0.235, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, "ca-central-1": 0.092, + "ca-west-1": 0.138, "eu-central-1": 0.092, - "eu-north-1": 0.226, + "eu-central-2": 0.092, + "eu-north-1": 0.134, "eu-south-1": 0.24, "eu-west-1": 0.141, - "eu-west-2": 0.092, + "eu-west-2": 0.0, "eu-west-3": 0.092, "il-central-1": 0.14805, - "me-central-1": 0.1551, + "me-central-1": 0.092, "me-south-1": 0.092, "sa-east-1": 0.092, - "us-east-1": 0.1386, + "us-east-1": 0.0, "us-east-2": 0.0, - "us-gov-east-1": 0.092, - "us-gov-west-1": 0.243, + "us-gov-east-1": 0.2581, + "us-gov-west-1": 0.2581, "us-west-1": 0.092, "us-west-2": 0.2306 }, @@ -92702,218 +105579,234 @@ "ap-east-1": 0.184, "ap-northeast-1": 0.184, "ap-northeast-2": 0.184, - "ap-northeast-3": 0.488, + "ap-northeast-3": 0.5184, "ap-south-1": 0.184, "ap-south-2": 0.184, "ap-southeast-1": 0.184, - "ap-southeast-2": 0.184, - "ca-central-1": 0.184, - "eu-central-1": 0.0, - "eu-north-1": 0.184, - "eu-south-1": 0.3256, - "eu-west-1": 0.3102, + "ap-southeast-2": 0.0, + "ca-central-1": 0.3036, + "ca-west-1": 0.0, + "eu-central-1": 0.184, + "eu-central-2": 0.3344, + "eu-north-1": 0.0, + "eu-south-1": 0.5096, + "eu-west-1": 0.184, "eu-west-2": 0.184, "eu-west-3": 0.184, "il-central-1": 0.184, "me-central-1": 0.184, "me-south-1": 0.184, - "sa-east-1": 0.0, - "us-east-1": 0.252, + "sa-east-1": 0.402, + "us-east-1": 0.436, "us-east-2": 0.184, "us-gov-east-1": 0.184, - "us-gov-west-1": 0.5162, - "us-west-1": 0.28, - "us-west-2": 0.252 + "us-gov-west-1": 0.3322, + "us-west-1": 0.184, + "us-west-2": 0.0 }, "r6i.metal": { "af-south-1": 16.64, "ap-east-1": 5.888, "ap-northeast-1": 15.616, - "ap-northeast-2": 15.616, - "ap-northeast-3": 15.616, - "ap-south-1": 5.888, + "ap-northeast-2": 9.728, + "ap-northeast-3": 0.0, + "ap-south-1": 8.32, "ap-south-2": 5.888, "ap-southeast-1": 5.888, "ap-southeast-2": 15.552, "ca-central-1": 5.888, + "ca-west-1": 5.888, "eu-central-1": 15.616, - "eu-north-1": 0.0, + "eu-central-2": 16.5888, + "eu-north-1": 8.576, "eu-south-1": 0.0, "eu-west-1": 5.888, "eu-west-2": 5.888, "eu-west-3": 5.888, "il-central-1": 9.4752, "me-central-1": 15.8144, - "me-south-1": 5.888, + "me-south-1": 0.0, "sa-east-1": 5.888, - "us-east-1": 13.952, + "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-east-1": 5.888, - "us-gov-west-1": 0.0, + "us-gov-west-1": 5.888, "us-west-1": 0.0, "us-west-2": 8.064 }, "r6i.2xlarge": { - "af-south-1": 0.7392, + "af-south-1": 0.0, "ap-east-1": 0.368, "ap-northeast-1": 0.0, "ap-northeast-2": 0.368, - "ap-northeast-3": 0.6688, - "ap-south-1": 0.368, - "ap-south-2": 0.94, - "ap-southeast-1": 0.368, - "ap-southeast-2": 0.368, - "ca-central-1": 0.552, + "ap-northeast-3": 0.976, + "ap-south-1": 0.52, + "ap-south-2": 0.368, + "ap-southeast-1": 1.0368, + "ap-southeast-2": 0.6644, + "ca-central-1": 0.368, + "ca-west-1": 0.552, "eu-central-1": 0.0, + "eu-central-2": 0.368, "eu-north-1": 0.536, "eu-south-1": 0.368, - "eu-west-1": 0.9884, + "eu-west-1": 0.368, "eu-west-2": 0.368, - "eu-west-3": 0.368, + "eu-west-3": 0.96, "il-central-1": 0.5922, - "me-central-1": 0.368, - "me-south-1": 0.368, - "sa-east-1": 1.2524, + "me-central-1": 0.68244, + "me-south-1": 0.6204, + "sa-east-1": 1.172, "us-east-1": 0.9224, "us-east-2": 0.0, - "us-gov-east-1": 0.368, + "us-gov-east-1": 0.604, "us-gov-west-1": 0.368, "us-west-1": 0.368, "us-west-2": 0.0 }, "r6i.4xlarge": { - "af-south-1": 0.736, + "af-south-1": 0.0, "ap-east-1": 0.736, - "ap-northeast-1": 1.3376, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.3376, - "ap-northeast-3": 0.736, - "ap-south-1": 1.144, + "ap-northeast-3": 0.0, + "ap-south-1": 0.736, "ap-south-2": 0.736, "ap-southeast-1": 1.3376, - "ap-southeast-2": 2.0648, + "ap-southeast-2": 1.3288, "ca-central-1": 0.736, + "ca-west-1": 0.736, "eu-central-1": 0.736, - "eu-north-1": 1.1792, + "eu-central-2": 1.47136, + "eu-north-1": 0.736, "eu-south-1": 1.3024, "eu-west-1": 0.736, "eu-west-2": 0.736, "eu-west-3": 0.736, - "il-central-1": 0.736, + "il-central-1": 1.1844, "me-central-1": 0.736, "me-south-1": 0.736, "sa-east-1": 1.7688, - "us-east-1": 1.8448, + "us-east-1": 0.0, "us-east-2": 0.736, "us-gov-east-1": 0.0, - "us-gov-west-1": 2.0648, - "us-west-1": 1.12, - "us-west-2": 0.736 + "us-gov-west-1": 0.0, + "us-west-1": 0.736, + "us-west-2": 0.0 }, "r6i.8xlarge": { - "af-south-1": 1.472, - "ap-east-1": 4.4112, + "af-south-1": 2.9568, + "ap-east-1": 0.0, "ap-northeast-1": 3.904, "ap-northeast-2": 1.472, "ap-northeast-3": 1.472, "ap-south-1": 1.472, - "ap-south-2": 2.288, + "ap-south-2": 1.472, "ap-southeast-1": 4.1472, - "ap-southeast-2": 4.1296, + "ap-southeast-2": 1.472, "ca-central-1": 1.472, - "eu-central-1": 4.1472, + "ca-west-1": 2.208, + "eu-central-1": 0.0, + "eu-central-2": 2.94272, "eu-north-1": 1.472, "eu-south-1": 1.472, "eu-west-1": 2.256, "eu-west-2": 2.368, - "eu-west-3": 3.84, - "il-central-1": 2.3688, + "eu-west-3": 4.0768, + "il-central-1": 0.0, "me-central-1": 2.4816, - "me-south-1": 1.472, - "sa-east-1": 1.472, - "us-east-1": 2.016, + "me-south-1": 3.9536, + "sa-east-1": 4.688, + "us-east-1": 1.472, "us-east-2": 1.472, - "us-gov-east-1": 2.6576, + "us-gov-east-1": 1.472, "us-gov-west-1": 0.0, - "us-west-1": 2.464, + "us-west-1": 0.0, "us-west-2": 1.472 }, "r6i.12xlarge": { - "af-south-1": 6.24, + "af-south-1": 2.208, "ap-east-1": 6.216, "ap-northeast-1": 2.208, "ap-northeast-2": 2.208, "ap-northeast-3": 2.208, "ap-south-1": 2.208, - "ap-south-2": 2.208, + "ap-south-2": 5.328, "ap-southeast-1": 2.208, "ap-southeast-2": 2.208, - "ca-central-1": 3.312, - "eu-central-1": 4.0128, - "eu-north-1": 3.5376, - "eu-south-1": 3.552, - "eu-west-1": 3.384, + "ca-central-1": 2.208, + "ca-west-1": 0.0, + "eu-central-1": 6.2208, + "eu-central-2": 2.208, + "eu-north-1": 5.7456, + "eu-south-1": 0.0, + "eu-west-1": 5.592, "eu-west-2": 2.208, - "eu-west-3": 2.208, - "il-central-1": 2.208, + "eu-west-3": 3.552, + "il-central-1": 3.5532, "me-central-1": 2.208, "me-south-1": 0.0, "sa-east-1": 0.0, "us-east-1": 2.208, - "us-east-2": 2.208, + "us-east-2": 3.024, "us-gov-east-1": 0.0, "us-gov-west-1": 2.208, "us-west-1": 2.208, - "us-west-2": 5.232 + "us-west-2": 2.208 }, "r6i.16xlarge": { "af-south-1": 2.944, - "ap-east-1": 5.8784, - "ap-northeast-1": 5.3504, + "ap-east-1": 2.944, + "ap-northeast-1": 2.944, "ap-northeast-2": 7.808, "ap-northeast-3": 5.3504, "ap-south-1": 2.944, "ap-south-2": 2.944, - "ap-southeast-1": 8.2944, + "ap-southeast-1": 2.944, "ap-southeast-2": 2.944, "ca-central-1": 2.944, + "ca-west-1": 7.8016, "eu-central-1": 2.944, - "eu-north-1": 4.7168, - "eu-south-1": 4.736, - "eu-west-1": 2.944, + "eu-central-2": 8.2944, + "eu-north-1": 4.288, + "eu-south-1": 2.944, + "eu-west-1": 4.512, "eu-west-2": 4.736, "eu-west-3": 2.944, "il-central-1": 2.944, - "me-central-1": 2.944, + "me-central-1": 5.45952, "me-south-1": 0.0, - "sa-east-1": 10.0192, - "us-east-1": 4.4352, - "us-east-2": 2.944, - "us-gov-east-1": 2.944, - "us-gov-west-1": 2.944, - "us-west-1": 7.424, - "us-west-2": 2.944 + "sa-east-1": 2.944, + "us-east-1": 6.976, + "us-east-2": 7.3792, + "us-gov-east-1": 8.2592, + "us-gov-west-1": 8.2592, + "us-west-1": 4.48, + "us-west-2": 0.0 }, "r6i.24xlarge": { "af-south-1": 4.416, "ap-east-1": 4.416, - "ap-northeast-1": 8.0256, + "ap-northeast-1": 0.0, "ap-northeast-2": 4.416, "ap-northeast-3": 0.0, "ap-south-1": 4.416, "ap-south-2": 4.416, - "ap-southeast-1": 0.0, + "ap-southeast-1": 4.416, "ap-southeast-2": 4.416, "ca-central-1": 4.416, - "eu-central-1": 4.416, + "ca-west-1": 11.04, + "eu-central-1": 0.0, + "eu-central-2": 12.4416, "eu-north-1": 4.416, - "eu-south-1": 4.416, + "eu-south-1": 7.8144, "eu-west-1": 7.4448, "eu-west-2": 7.8144, "eu-west-3": 4.416, - "il-central-1": 7.1064, - "me-central-1": 4.416, + "il-central-1": 4.416, + "me-central-1": 0.0, "me-south-1": 0.0, - "sa-east-1": 14.064, + "sa-east-1": 15.0288, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-east-1": 0.0, @@ -92922,114 +105815,122 @@ "us-west-2": 4.416 }, "r6i.32xlarge": { - "af-south-1": 5.888, - "ap-east-1": 16.576, + "af-south-1": 10.752, + "ap-east-1": 10.688, "ap-northeast-1": 15.616, "ap-northeast-2": 9.728, - "ap-northeast-3": 0.0, + "ap-northeast-3": 15.616, "ap-south-1": 5.888, "ap-south-2": 5.888, "ap-southeast-1": 9.728, - "ap-southeast-2": 5.888, + "ap-southeast-2": 15.552, "ca-central-1": 5.888, + "ca-west-1": 8.832, "eu-central-1": 5.888, + "eu-central-2": 10.7008, "eu-north-1": 8.576, "eu-south-1": 9.472, "eu-west-1": 5.888, "eu-west-2": 5.888, "eu-west-3": 0.0, "il-central-1": 5.888, - "me-central-1": 0.0, + "me-central-1": 9.9264, "me-south-1": 15.8144, "sa-east-1": 18.752, "us-east-1": 8.064, "us-east-2": 5.888, - "us-gov-east-1": 5.888, - "us-gov-west-1": 9.664, - "us-west-1": 5.888, + "us-gov-east-1": 0.0, + "us-gov-west-1": 5.888, + "us-west-1": 8.96, "us-west-2": 5.888 }, "r6id.large": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.20097, "ap-northeast-2": 0.092, "ap-south-1": 0.092, "ap-southeast-1": 0.092, "ap-southeast-2": 0.092, + "ca-west-1": 0.18249, "eu-central-1": 0.29182, - "eu-west-1": 0.168, - "eu-west-2": 0.092, - "il-central-1": 0.19404, + "eu-west-1": 0.2768, + "eu-west-2": 0.0, + "il-central-1": 0.28604, "us-east-1": 0.2432, - "us-east-2": 0.0, + "us-east-2": 0.1512, "us-gov-west-1": 0.1817, - "us-west-2": 0.0 + "us-west-2": 0.25832 }, "r6id.xlarge": { "ap-northeast-1": 0.184, "ap-northeast-2": 0.184, - "ap-south-1": 0.184, + "ap-south-1": 0.53292, "ap-southeast-1": 0.184, "ap-southeast-2": 0.184, + "ca-west-1": 0.3318, "eu-central-1": 0.184, "eu-west-1": 0.0, - "eu-west-2": 0.184, - "il-central-1": 0.3528, + "eu-west-2": 0.0, + "il-central-1": 0.38808, "us-east-1": 0.4864, "us-east-2": 0.184, - "us-gov-west-1": 0.184, + "us-gov-west-1": 0.3634, "us-west-2": 0.51664 }, "r6id.metal": { - "ap-northeast-1": 17.5808, + "ap-northeast-1": 5.888, "ap-northeast-2": 5.888, - "ap-south-1": 16.0384, + "ap-south-1": 5.888, "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-west-1": 0.0, "eu-central-1": 5.888, "eu-west-1": 5.888, "eu-west-2": 17.2448, "il-central-1": 5.888, - "us-east-1": 15.5648, + "us-east-1": 5.888, "us-east-2": 9.6768, "us-gov-west-1": 0.0, "us-west-2": 5.888 }, "r6id.2xlarge": { "ap-northeast-1": 0.368, - "ap-northeast-2": 0.7268, + "ap-northeast-2": 1.16748, "ap-south-1": 0.368, - "ap-southeast-1": 0.7308, + "ap-southeast-1": 0.368, "ap-southeast-2": 0.0, + "ca-west-1": 0.368, "eu-central-1": 0.368, - "eu-west-1": 0.672, + "eu-west-1": 0.368, "eu-west-2": 0.368, "il-central-1": 0.7056, - "us-east-1": 0.66528, - "us-east-2": 0.6048, - "us-gov-west-1": 0.7268, + "us-east-1": 0.6048, + "us-east-2": 0.0, + "us-gov-west-1": 0.368, "us-west-2": 1.03328 }, "r6id.4xlarge": { "ap-northeast-1": 0.736, - "ap-northeast-2": 0.0, + "ap-northeast-2": 2.1896, "ap-south-1": 0.736, "ap-southeast-1": 1.60776, "ap-southeast-2": 0.736, + "ca-west-1": 1.3272, "eu-central-1": 0.736, - "eu-west-1": 2.2144, + "eu-west-1": 1.344, "eu-west-2": 0.736, "il-central-1": 0.0, "us-east-1": 2.06656, "us-east-2": 2.06656, "us-gov-west-1": 0.736, - "us-west-2": 1.2096 + "us-west-2": 0.736 }, "r6id.8xlarge": { "ap-northeast-1": 4.3952, "ap-northeast-2": 1.472, - "ap-south-1": 1.472, - "ap-southeast-1": 3.21552, + "ap-south-1": 4.26336, + "ap-southeast-1": 0.0, "ap-southeast-2": 4.256, + "ca-west-1": 2.6544, "eu-central-1": 1.472, "eu-west-1": 2.688, "eu-west-2": 2.8392, @@ -93045,9 +105946,10 @@ "ap-south-1": 2.208, "ap-southeast-1": 0.0, "ap-southeast-2": 6.384, - "eu-central-1": 6.5676, + "ca-west-1": 3.9816, + "eu-central-1": 4.79556, "eu-west-1": 2.208, - "eu-west-2": 2.208, + "eu-west-2": 4.2588, "il-central-1": 2.208, "us-east-1": 2.208, "us-east-2": 0.0, @@ -93055,46 +105957,49 @@ "us-west-2": 2.208 }, "r6id.16xlarge": { - "ap-northeast-1": 2.944, - "ap-northeast-2": 0.0, - "ap-south-1": 0.0, + "ap-northeast-1": 8.7904, + "ap-northeast-2": 2.944, + "ap-south-1": 2.944, "ap-southeast-1": 0.0, "ap-southeast-2": 2.944, + "ca-west-1": 5.83968, "eu-central-1": 9.33808, "eu-west-1": 5.376, "eu-west-2": 2.944, - "il-central-1": 5.6448, + "il-central-1": 9.15328, "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-west-1": 2.944, "us-west-2": 4.8384 }, "r6id.24xlarge": { - "ap-northeast-1": 4.416, - "ap-northeast-2": 4.416, - "ap-south-1": 0.0, - "ap-southeast-1": 8.7696, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, + "ap-south-1": 12.79008, + "ap-southeast-1": 13.1856, "ap-southeast-2": 4.416, + "ca-west-1": 12.3792, "eu-central-1": 4.416, "eu-west-1": 8.064, - "eu-west-2": 13.78536, + "eu-west-2": 4.416, "il-central-1": 8.4672, - "us-east-1": 4.416, - "us-east-2": 4.416, - "us-gov-west-1": 4.416, - "us-west-2": 11.6736 + "us-east-1": 7.2576, + "us-east-2": 12.39936, + "us-gov-west-1": 13.1376, + "us-west-2": 7.98336 }, "r6id.32xlarge": { - "ap-northeast-1": 5.888, - "ap-northeast-2": 0.0, + "ap-northeast-1": 11.6928, + "ap-northeast-2": 11.6288, "ap-south-1": 5.888, "ap-southeast-1": 11.6928, - "ap-southeast-2": 0.0, + "ap-southeast-2": 17.024, + "ca-west-1": 10.6176, "eu-central-1": 5.888, "eu-west-1": 5.888, - "eu-west-2": 11.3568, + "eu-west-2": 5.888, "il-central-1": 5.888, - "us-east-1": 15.5648, + "us-east-1": 0.0, "us-east-2": 9.6768, "us-gov-west-1": 0.0, "us-west-2": 5.888 @@ -93103,6 +106008,7 @@ "ap-northeast-1": 0.32951, "ap-southeast-1": 0.092, "eu-central-1": 0.092, + "eu-north-1": 0.20709, "eu-west-1": 0.30962, "us-east-1": 0.28739, "us-east-2": 0.092, @@ -93113,19 +106019,21 @@ "ap-northeast-1": 0.184, "ap-southeast-1": 0.6988, "eu-central-1": 0.51223, + "eu-north-1": 0.184, "eu-west-1": 0.184, "us-east-1": 0.0, "us-east-2": 0.184, "us-gov-west-1": 0.184, - "us-west-2": 0.61386 + "us-west-2": 0.184 }, "r6idn.metal": { "ap-northeast-1": 5.888, "ap-southeast-1": 5.888, - "eu-central-1": 20.78912, + "eu-central-1": 5.888, + "eu-north-1": 0.0, "eu-west-1": 5.888, - "us-east-1": 18.39296, - "us-east-2": 18.39296, + "us-east-1": 0.0, + "us-east-2": 5.888, "us-gov-west-1": 20.93888, "us-west-2": 5.888 }, @@ -93133,28 +106041,31 @@ "ap-northeast-1": 0.95004, "ap-southeast-1": 0.368, "eu-central-1": 0.368, - "eu-west-1": 0.87048, + "eu-north-1": 1.2792, + "eu-west-1": 0.95753, "us-east-1": 1.22772, "us-east-2": 0.368, "us-gov-west-1": 0.368, - "us-west-2": 0.85972 + "us-west-2": 0.0 }, "r6idn.4xlarge": { - "ap-northeast-1": 0.736, - "ap-southeast-1": 1.872, + "ap-northeast-1": 1.90008, + "ap-southeast-1": 0.736, "eu-central-1": 0.736, - "eu-west-1": 1.74096, + "eu-north-1": 1.65672, + "eu-west-1": 0.0, "us-east-1": 0.736, - "us-east-2": 0.736, + "us-east-2": 2.29912, "us-gov-west-1": 1.88136, "us-west-2": 0.736 }, "r6idn.8xlarge": { - "ap-northeast-1": 5.65218, + "ap-northeast-1": 1.472, "ap-southeast-1": 1.472, "eu-central-1": 0.0, - "eu-west-1": 5.30211, - "us-east-1": 0.0, + "eu-north-1": 3.31344, + "eu-west-1": 3.83011, + "us-east-1": 3.12624, "us-east-2": 1.472, "us-gov-west-1": 1.472, "us-west-2": 1.472 @@ -93163,26 +106074,29 @@ "ap-northeast-1": 0.0, "ap-southeast-1": 2.208, "eu-central-1": 2.208, + "eu-north-1": 0.0, "eu-west-1": 5.22288, "us-east-1": 2.208, - "us-east-2": 2.208, - "us-gov-west-1": 5.64408, + "us-east-2": 4.68936, + "us-gov-west-1": 0.0, "us-west-2": 2.208 }, "r6idn.16xlarge": { "ap-northeast-1": 2.944, - "ap-southeast-1": 2.944, + "ap-southeast-1": 8.2368, "eu-central-1": 2.944, - "eu-west-1": 2.944, - "us-east-1": 0.0, + "eu-north-1": 6.62688, + "eu-west-1": 0.0, + "us-east-1": 2.944, "us-east-2": 0.0, - "us-gov-west-1": 8.27798, + "us-gov-west-1": 2.944, "us-west-2": 2.944 }, "r6idn.24xlarge": { "ap-northeast-1": 4.416, - "ap-southeast-1": 16.7712, - "eu-central-1": 4.416, + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 10.93435, "eu-west-1": 4.416, "us-east-1": 0.0, "us-east-2": 4.416, @@ -93191,18 +106105,20 @@ }, "r6idn.32xlarge": { "ap-northeast-1": 0.0, - "ap-southeast-1": 20.864, - "eu-central-1": 5.888, + "ap-southeast-1": 14.976, + "eu-central-1": 20.78912, + "eu-north-1": 5.888, "eu-west-1": 5.888, - "us-east-1": 0.0, + "us-east-1": 5.888, "us-east-2": 0.0, - "us-gov-west-1": 5.888, + "us-gov-west-1": 0.0, "us-west-2": 5.888 }, "r6in.large": { - "ap-northeast-1": 0.32495, - "ap-southeast-1": 0.22909, + "ap-northeast-1": 0.0, + "ap-southeast-1": 0.32109, "eu-central-1": 0.092, + "eu-north-1": 0.18603, "eu-west-1": 0.19539, "us-east-1": 0.092, "us-east-2": 0.092, @@ -93212,37 +106128,41 @@ "r6in.xlarge": { "ap-northeast-1": 0.46589, "ap-southeast-1": 0.0, - "eu-central-1": 0.41652, - "eu-west-1": 0.0, - "us-east-1": 0.184, + "eu-central-1": 0.0, + "eu-north-1": 0.0, + "eu-west-1": 0.39078, + "us-east-1": 0.0, "us-east-2": 0.34866, - "us-gov-west-1": 0.64475, + "us-gov-west-1": 0.60286, "us-west-2": 0.184 }, "r6in.metal": { - "ap-northeast-1": 19.44128, - "ap-southeast-1": 5.888, + "ap-northeast-1": 13.55328, + "ap-southeast-1": 13.32864, "eu-central-1": 13.32864, + "eu-north-1": 5.888, "eu-west-1": 12.50496, - "us-east-1": 0.0, - "us-east-2": 17.04512, + "us-east-1": 11.15712, + "us-east-2": 0.0, "us-gov-west-1": 5.888, - "us-west-2": 5.888 + "us-west-2": 17.04512 }, "r6in.2xlarge": { - "ap-northeast-1": 0.0, - "ap-southeast-1": 0.368, - "eu-central-1": 0.91634, + "ap-northeast-1": 0.368, + "ap-southeast-1": 1.28434, + "eu-central-1": 0.83304, + "eu-north-1": 0.368, "eu-west-1": 0.0, - "us-east-1": 0.368, - "us-east-2": 1.06532, - "us-gov-west-1": 0.92149, + "us-east-1": 1.06532, + "us-east-2": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 0.368 }, "r6in.4xlarge": { "ap-northeast-1": 2.59958, "ap-southeast-1": 0.736, "eu-central-1": 1.83269, + "eu-north-1": 1.48824, "eu-west-1": 1.56312, "us-east-1": 0.0, "us-east-2": 0.0, @@ -93252,52 +106172,499 @@ "r6in.8xlarge": { "ap-northeast-1": 0.0, "ap-southeast-1": 1.472, - "eu-central-1": 1.472, + "eu-central-1": 3.33216, + "eu-north-1": 2.97648, "eu-west-1": 4.91086, "us-east-1": 0.0, - "us-east-2": 4.54021, + "us-east-2": 1.472, "us-gov-west-1": 1.472, "us-west-2": 3.06821 }, "r6in.12xlarge": { "ap-northeast-1": 2.208, "ap-southeast-1": 2.208, - "eu-central-1": 2.208, + "eu-central-1": 0.0, + "eu-north-1": 4.46472, "eu-west-1": 2.208, "us-east-1": 0.0, - "us-east-2": 6.81031, + "us-east-2": 2.208, "us-gov-west-1": 2.208, - "us-west-2": 6.81031 + "us-west-2": 6.39192 }, "r6in.16xlarge": { - "ap-northeast-1": 10.3983, + "ap-northeast-1": 0.0, "ap-southeast-1": 9.60832, "eu-central-1": 2.944, + "eu-north-1": 2.944, "eu-west-1": 6.25248, "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-west-1": 9.64576, + "us-east-2": 2.944, + "us-gov-west-1": 2.944, "us-west-2": 8.52256 }, "r6in.24xlarge": { - "ap-northeast-1": 15.59746, + "ap-northeast-1": 0.0, "ap-southeast-1": 14.41248, - "eu-central-1": 0.0, - "eu-west-1": 4.416, - "us-east-1": 4.416, + "eu-central-1": 4.416, + "eu-north-1": 9.82238, + "eu-west-1": 10.31659, + "us-east-1": 9.20462, "us-east-2": 9.20462, "us-gov-west-1": 10.05264, - "us-west-2": 4.416 + "us-west-2": 9.20462 }, "r6in.32xlarge": { - "ap-northeast-1": 19.44128, - "ap-southeast-1": 19.21664, + "ap-northeast-1": 5.888, + "ap-southeast-1": 5.888, "eu-central-1": 5.888, + "eu-north-1": 11.90592, "eu-west-1": 5.888, - "us-east-1": 17.04512, + "us-east-1": 5.888, "us-east-2": 5.888, - "us-gov-west-1": 5.888, - "us-west-2": 11.15712 + "us-gov-west-1": 13.40352, + "us-west-2": 0.0 + }, + "r7a.medium": { + "ap-northeast-1": 0.0, + "eu-central-1": 0.09177, + "eu-north-1": 0.046, + "eu-south-2": 0.0, + "eu-west-1": 0.13113, + "us-east-1": 0.07608, + "us-east-2": 0.08368, + "us-west-2": 0.046 + }, + "r7a.large": { + "ap-northeast-1": 0.092, + "eu-central-1": 0.092, + "eu-north-1": 0.17798, + "eu-south-2": 0.092, + "eu-west-1": 0.17026, + "us-east-1": 0.092, + "us-east-2": 0.15215, + "us-west-2": 0.092 + }, + "r7a.xlarge": { + "ap-northeast-1": 0.36708, + "eu-central-1": 0.36708, + "eu-north-1": 0.3236, + "eu-south-2": 0.55857, + "eu-west-1": 0.184, + "us-east-1": 0.184, + "us-east-2": 0.4883, + "us-west-2": 0.184 + }, + "r7a.metal-48xl": { + "ap-northeast-1": 17.61984, + "eu-central-1": 8.832, + "eu-north-1": 0.0, + "eu-south-2": 16.34496, + "eu-west-1": 8.832, + "us-east-1": 0.0, + "us-east-2": 14.6064, + "us-west-2": 14.6064 + }, + "r7a.2xlarge": { + "ap-northeast-1": 0.73416, + "eu-central-1": 0.73416, + "eu-north-1": 0.71192, + "eu-south-2": 0.68104, + "eu-west-1": 0.68104, + "us-east-1": 0.9766, + "us-east-2": 0.6086, + "us-west-2": 0.0 + }, + "r7a.4xlarge": { + "ap-northeast-1": 1.61515, + "eu-central-1": 1.46832, + "eu-north-1": 0.736, + "eu-south-2": 2.23429, + "eu-west-1": 1.36208, + "us-east-1": 0.736, + "us-east-2": 1.33892, + "us-west-2": 0.736 + }, + "r7a.8xlarge": { + "ap-northeast-1": 1.472, + "eu-central-1": 2.93664, + "eu-north-1": 1.472, + "eu-south-2": 2.72416, + "eu-west-1": 2.72416, + "us-east-1": 3.9064, + "us-east-2": 4.14984, + "us-west-2": 2.4344 + }, + "r7a.12xlarge": { + "ap-northeast-1": 4.40496, + "eu-central-1": 4.40496, + "eu-north-1": 4.27152, + "eu-south-2": 2.208, + "eu-west-1": 0.0, + "us-east-1": 3.6516, + "us-east-2": 3.6516, + "us-west-2": 4.01676 + }, + "r7a.16xlarge": { + "ap-northeast-1": 5.87328, + "eu-central-1": 2.944, + "eu-north-1": 5.1776, + "eu-south-2": 5.44832, + "eu-west-1": 2.944, + "us-east-1": 2.944, + "us-east-2": 2.944, + "us-west-2": 2.944 + }, + "r7a.24xlarge": { + "ap-northeast-1": 14.10691, + "eu-central-1": 8.80992, + "eu-north-1": 7.7664, + "eu-south-2": 0.0, + "eu-west-1": 8.17248, + "us-east-1": 8.03352, + "us-east-2": 7.3032, + "us-west-2": 7.3032 + }, + "r7a.32xlarge": { + "ap-northeast-1": 5.888, + "eu-central-1": 17.63456, + "eu-north-1": 17.27872, + "eu-south-2": 5.888, + "eu-west-1": 10.89664, + "us-east-1": 0.0, + "us-east-2": 0.0, + "us-west-2": 15.6256 + }, + "r7a.48xlarge": { + "ap-northeast-1": 17.61984, + "eu-central-1": 26.45184, + "eu-north-1": 15.5328, + "eu-south-2": 16.34496, + "eu-west-1": 25.17696, + "us-east-1": 14.6064, + "us-east-2": 14.6064, + "us-west-2": 14.6064 + }, + "r7i.large": { + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.092, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.15855, + "ap-southeast-3": 0.092, + "ca-central-1": 0.15939, + "eu-central-1": 0.0, + "eu-north-1": 0.092, + "eu-south-2": 0.092, + "eu-west-1": 0.25486, + "eu-west-2": 0.092, + "eu-west-3": 0.0, + "sa-east-1": 0.092, + "us-east-1": 0.092, + "us-east-2": 0.092, + "us-gov-east-1": 0.15855, + "us-gov-west-1": 0.092, + "us-west-1": 0.147, + "us-west-2": 0.092 + }, + "r7i.xlarge": { + "ap-northeast-1": 0.3192, + "ap-northeast-2": 0.0, + "ap-south-1": 0.184, + "ap-southeast-1": 0.3192, + "ap-southeast-2": 0.3171, + "ap-southeast-3": 0.184, + "ca-central-1": 0.184, + "eu-central-1": 0.35112, + "eu-north-1": 0.2814, + "eu-south-2": 0.184, + "eu-west-1": 0.4801, + "eu-west-2": 0.184, + "eu-west-3": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.184, + "us-east-2": 0.4486, + "us-gov-east-1": 0.3171, + "us-gov-west-1": 0.3171, + "us-west-1": 0.294, + "us-west-2": 0.184 + }, + "r7i.metal-24xl": { + "ap-northeast-1": 7.6608, + "ap-northeast-2": 0.0, + "ap-south-1": 11.6232, + "ap-southeast-1": 7.6608, + "ap-southeast-2": 7.6104, + "ap-southeast-3": 4.416, + "ca-central-1": 12.06672, + "eu-central-1": 4.416, + "eu-north-1": 6.7536, + "eu-south-2": 7.1064, + "eu-west-1": 7.81704, + "eu-west-2": 8.20512, + "eu-west-3": 7.4592, + "sa-east-1": 10.1304, + "us-east-1": 6.98544, + "us-east-2": 6.3504, + "us-gov-east-1": 4.416, + "us-gov-west-1": 12.0264, + "us-west-1": 7.056, + "us-west-2": 6.3504 + }, + "r7i.metal-48xl": { + "ap-northeast-1": 15.3216, + "ap-northeast-2": 15.3216, + "ap-south-1": 0.0, + "ap-southeast-1": 15.3216, + "ap-southeast-2": 8.832, + "ap-southeast-3": 8.832, + "ca-central-1": 13.9104, + "eu-central-1": 15.3216, + "eu-north-1": 0.0, + "eu-south-2": 8.832, + "eu-west-1": 14.2128, + "eu-west-2": 8.832, + "eu-west-3": 14.9184, + "sa-east-1": 20.2608, + "us-east-1": 8.832, + "us-east-2": 21.5328, + "us-gov-east-1": 15.2208, + "us-gov-west-1": 8.832, + "us-west-1": 0.0, + "us-west-2": 8.832 + }, + "r7i.2xlarge": { + "ap-northeast-1": 0.70224, + "ap-northeast-2": 0.0, + "ap-south-1": 0.546, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.6342, + "ap-southeast-3": 0.368, + "ca-central-1": 0.5796, + "eu-central-1": 0.6384, + "eu-north-1": 0.0, + "eu-south-2": 0.5922, + "eu-west-1": 0.5922, + "eu-west-2": 0.9896, + "eu-west-3": 0.368, + "sa-east-1": 0.368, + "us-east-1": 0.0, + "us-east-2": 0.5292, + "us-gov-east-1": 0.368, + "us-gov-west-1": 0.368, + "us-west-1": 0.368, + "us-west-2": 0.5292 + }, + "r7i.4xlarge": { + "ap-northeast-1": 2.14048, + "ap-northeast-2": 0.0, + "ap-south-1": 1.9372, + "ap-southeast-1": 1.40448, + "ap-southeast-2": 1.2684, + "ap-southeast-3": 2.0128, + "ca-central-1": 1.1592, + "eu-central-1": 0.736, + "eu-north-1": 0.736, + "eu-south-2": 0.736, + "eu-west-1": 0.736, + "eu-west-2": 1.2432, + "eu-west-3": 0.736, + "sa-east-1": 0.736, + "us-east-1": 1.7944, + "us-east-2": 0.736, + "us-gov-east-1": 1.2684, + "us-gov-west-1": 0.736, + "us-west-1": 1.912, + "us-west-2": 0.736 + }, + "r7i.8xlarge": { + "ap-northeast-1": 2.5536, + "ap-northeast-2": 1.472, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 1.472, + "ap-southeast-3": 2.80896, + "ca-central-1": 2.3184, + "eu-central-1": 1.472, + "eu-north-1": 2.2512, + "eu-south-2": 1.472, + "eu-west-1": 2.3688, + "eu-west-2": 1.472, + "eu-west-3": 0.0, + "sa-east-1": 3.3768, + "us-east-1": 3.80048, + "us-east-2": 2.1168, + "us-gov-east-1": 2.5368, + "us-gov-west-1": 2.5368, + "us-west-1": 1.472, + "us-west-2": 2.1168 + }, + "r7i.12xlarge": { + "ap-northeast-1": 4.21344, + "ap-northeast-2": 2.208, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, + "ap-southeast-2": 2.208, + "ap-southeast-3": 4.21344, + "ca-central-1": 3.4776, + "eu-central-1": 3.8304, + "eu-north-1": 2.208, + "eu-south-2": 3.5532, + "eu-west-1": 2.208, + "eu-west-2": 3.7296, + "eu-west-3": 4.10256, + "sa-east-1": 5.0652, + "us-east-1": 2.208, + "us-east-2": 2.208, + "us-gov-east-1": 2.208, + "us-gov-west-1": 3.8052, + "us-west-1": 3.528, + "us-west-2": 3.1752 + }, + "r7i.16xlarge": { + "ap-northeast-1": 5.1072, + "ap-northeast-2": 8.0512, + "ap-south-1": 2.944, + "ap-southeast-1": 5.1072, + "ap-southeast-2": 5.58096, + "ap-southeast-3": 5.61792, + "ca-central-1": 4.6368, + "eu-central-1": 5.1072, + "eu-north-1": 0.0, + "eu-south-2": 2.944, + "eu-west-1": 5.21136, + "eu-west-2": 2.944, + "eu-west-3": 4.9728, + "sa-east-1": 10.37296, + "us-east-1": 4.2336, + "us-east-2": 7.1776, + "us-gov-east-1": 2.944, + "us-gov-west-1": 5.0736, + "us-west-1": 2.944, + "us-west-2": 2.944 + }, + "r7i.24xlarge": { + "ap-northeast-1": 4.416, + "ap-northeast-2": 8.42688, + "ap-south-1": 7.2072, + "ap-southeast-1": 4.416, + "ap-southeast-2": 7.6104, + "ap-southeast-3": 7.6608, + "ca-central-1": 4.416, + "eu-central-1": 8.42688, + "eu-north-1": 4.416, + "eu-south-2": 7.81704, + "eu-west-1": 4.416, + "eu-west-2": 4.416, + "eu-west-3": 7.4592, + "sa-east-1": 4.416, + "us-east-1": 4.416, + "us-east-2": 11.40144, + "us-gov-east-1": 0.0, + "us-gov-west-1": 8.37144, + "us-west-1": 4.416, + "us-west-2": 4.416 + }, + "r7i.48xlarge": { + "ap-northeast-1": 8.832, + "ap-northeast-2": 0.0, + "ap-south-1": 13.104, + "ap-southeast-1": 0.0, + "ap-southeast-2": 15.2208, + "ap-southeast-3": 24.1536, + "ca-central-1": 22.7424, + "eu-central-1": 8.832, + "eu-north-1": 8.832, + "eu-south-2": 14.2128, + "eu-west-1": 14.2128, + "eu-west-2": 14.9184, + "eu-west-3": 8.832, + "sa-east-1": 29.0928, + "us-east-1": 0.0, + "us-east-2": 8.832, + "us-gov-east-1": 8.832, + "us-gov-west-1": 0.0, + "us-west-1": 14.112, + "us-west-2": 12.7008 + }, + "r7iz.large": { + "ap-northeast-1": 0.2497, + "eu-central-1": 0.092, + "eu-west-1": 0.3208, + "us-east-1": 0.0, + "us-east-2": 0.2966, + "us-west-2": 0.092 + }, + "r7iz.xlarge": { + "ap-northeast-1": 0.454, + "eu-central-1": 0.184, + "eu-west-1": 0.416, + "us-east-1": 0.372, + "us-east-2": 0.372, + "us-west-2": 0.184 + }, + "r7iz.metal-16xl": { + "ap-northeast-1": 2.944, + "eu-central-1": 0.0, + "eu-west-1": 2.944, + "us-east-1": 6.5472, + "us-east-2": 2.944, + "us-west-2": 6.5472 + }, + "r7iz.metal-32xl": { + "ap-northeast-1": 0.0, + "eu-central-1": 15.84, + "eu-west-1": 14.6432, + "us-east-1": 11.904, + "us-east-2": 11.904, + "us-west-2": 5.888 + }, + "r7iz.2xlarge": { + "ap-northeast-1": 1.276, + "eu-central-1": 0.368, + "eu-west-1": 0.832, + "us-east-1": 0.368, + "us-east-2": 0.0, + "us-west-2": 0.0 + }, + "r7iz.4xlarge": { + "ap-northeast-1": 2.552, + "eu-central-1": 0.736, + "eu-west-1": 2.5664, + "us-east-1": 1.488, + "us-east-2": 1.488, + "us-west-2": 0.736 + }, + "r7iz.8xlarge": { + "ap-northeast-1": 1.472, + "eu-central-1": 1.472, + "eu-west-1": 1.472, + "us-east-1": 1.472, + "us-east-2": 1.472, + "us-west-2": 1.472 + }, + "r7iz.12xlarge": { + "ap-northeast-1": 5.448, + "eu-central-1": 5.4, + "eu-west-1": 4.992, + "us-east-1": 4.464, + "us-east-2": 7.1184, + "us-west-2": 4.464 + }, + "r7iz.16xlarge": { + "ap-northeast-1": 7.264, + "eu-central-1": 2.944, + "eu-west-1": 0.0, + "us-east-1": 6.5472, + "us-east-2": 2.944, + "us-west-2": 2.944 + }, + "r7iz.32xlarge": { + "ap-northeast-1": 0.0, + "eu-central-1": 15.84, + "eu-west-1": 13.312, + "us-east-1": 11.904, + "us-east-2": 5.888, + "us-west-2": 13.0944 }, "t1.micro": { "ap-northeast-1": 0.026, @@ -93333,7 +106700,7 @@ "ap-northeast-1": 0.0304, "ap-northeast-2": 0.0288, "ap-northeast-3": 0.0304, - "ap-south-1": 0.0, + "ap-south-1": 0.0248, "ap-southeast-1": 0.0292, "ap-southeast-2": 0.0292, "ca-central-1": 0.0256, @@ -93371,7 +106738,7 @@ "ap-northeast-1": 0.1216, "ap-northeast-2": 0.1152, "ap-northeast-3": 0.1216, - "ap-south-1": 0.0, + "ap-south-1": 0.0992, "ap-southeast-1": 0.1168, "ap-southeast-2": 0.1168, "ca-central-1": 0.1024, @@ -93450,54 +106817,56 @@ "ap-northeast-2": 0.0, "ap-northeast-3": 0.0092, "ap-south-1": 0.0, - "ap-south-2": 0.0, + "ap-south-2": 0.0211, "ap-southeast-1": 0.0132, "ap-southeast-2": 0.0132, "ap-southeast-3": 0.0092, "ap-southeast-4": 0.0132, - "ca-central-1": 0.0092, - "eu-central-1": 0.0092, - "eu-central-2": 0.0092, - "eu-north-1": 0.02, + "ca-central-1": 0.0, + "ca-west-1": 0.0208, + "eu-central-1": 0.012, + "eu-central-2": 0.0, + "eu-north-1": 0.0092, "eu-south-1": 0.0219, "eu-south-2": 0.0092, "eu-west-1": 0.0114, - "eu-west-2": 0.0118, + "eu-west-2": 0.0092, "eu-west-3": 0.0092, "il-central-1": 0.012, "me-central-1": 0.0092, "me-south-1": 0.0, - "sa-east-1": 0.0168, - "us-east-1": 0.0104, - "us-east-2": 0.0, - "us-gov-east-1": 0.0214, + "sa-east-1": 0.0092, + "us-east-1": 0.0092, + "us-east-2": 0.0092, + "us-gov-east-1": 0.0092, "us-gov-west-1": 0.0092, - "us-west-1": 0.0, - "us-west-2": 0.0, + "us-west-1": 0.0092, + "us-west-2": 0.0104, "us-west-2-lax-1": 0.0217 }, "t3.small": { - "af-south-1": 0.0, + "af-south-1": 0.0471, "ap-east-1": 0.0184, "ap-northeast-1": 0.0456, "ap-northeast-2": 0.0184, - "ap-northeast-3": 0.0184, - "ap-south-1": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 0.0184, "ap-south-2": 0.0184, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0264, - "ap-southeast-3": 0.0448, + "ap-southeast-3": 0.0184, "ap-southeast-4": 0.0184, - "ca-central-1": 0.0, - "eu-central-1": 0.044, + "ca-central-1": 0.0184, + "ca-west-1": 0.0184, + "eu-central-1": 0.024, "eu-central-2": 0.0184, "eu-north-1": 0.0184, - "eu-south-1": 0.0, + "eu-south-1": 0.0184, "eu-south-2": 0.0184, - "eu-west-1": 0.0243, + "eu-west-1": 0.0228, "eu-west-2": 0.0184, - "eu-west-3": 0.0184, - "il-central-1": 0.0, + "eu-west-3": 0.025, + "il-central-1": 0.0184, "me-central-1": 0.0184, "me-south-1": 0.0, "sa-east-1": 0.0, @@ -93505,56 +106874,58 @@ "us-east-2": 0.0208, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0184, - "us-west-1": 0.0, - "us-west-2": 0.0404, + "us-west-1": 0.0184, + "us-west-2": 0.0208, "us-west-2-lax-1": 0.0434 }, "t3.medium": { "af-south-1": 0.0184, "ap-east-1": 0.0184, "ap-northeast-1": 0.0184, - "ap-northeast-2": 0.052, - "ap-northeast-3": 0.0184, + "ap-northeast-2": 0.0704, + "ap-northeast-3": 0.0728, "ap-south-1": 0.0184, - "ap-south-2": 0.0, + "ap-south-2": 0.0448, "ap-southeast-1": 0.0528, "ap-southeast-2": 0.0184, "ap-southeast-3": 0.0, "ap-southeast-4": 0.0184, "ca-central-1": 0.0, + "ca-west-1": 0.0184, "eu-central-1": 0.048, - "eu-central-2": 0.0712, - "eu-north-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.0616, "eu-south-1": 0.0, - "eu-south-2": 0.0184, - "eu-west-1": 0.0487, + "eu-south-2": 0.0, + "eu-west-1": 0.0671, "eu-west-2": 0.0472, "eu-west-3": 0.0184, "il-central-1": 0.0663, - "me-central-1": 0.0686, + "me-central-1": 0.0184, "me-south-1": 0.0, - "sa-east-1": 0.0184, - "us-east-1": 0.0, + "sa-east-1": 0.0893, + "us-east-1": 0.0416, "us-east-2": 0.0416, "us-gov-east-1": 0.0184, - "us-gov-west-1": 0.0488, - "us-west-1": 0.0715, - "us-west-2": 0.0, + "us-gov-west-1": 0.0184, + "us-west-1": 0.0496, + "us-west-2": 0.0416, "us-west-2-lax-1": 0.0683 }, "t3.large": { "af-south-1": 0.0, - "ap-east-1": 0.0, + "ap-east-1": 0.0276, "ap-northeast-1": 0.1088, - "ap-northeast-2": 0.104, + "ap-northeast-2": 0.0276, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.1172, "ap-south-2": 0.0276, "ap-southeast-1": 0.0276, - "ap-southeast-2": 0.1056, - "ap-southeast-3": 0.0276, + "ap-southeast-2": 0.0276, + "ap-southeast-3": 0.1332, "ap-southeast-4": 0.0, - "ca-central-1": 0.0, + "ca-central-1": 0.0928, + "ca-west-1": 0.0928, "eu-central-1": 0.0276, "eu-central-2": 0.0, "eu-north-1": 0.0276, @@ -93562,79 +106933,81 @@ "eu-south-2": 0.0276, "eu-west-1": 0.0912, "eu-west-2": 0.0944, - "eu-west-3": 0.0, + "eu-west-3": 0.122, "il-central-1": 0.0958, "me-central-1": 0.0, "me-south-1": 0.0, "sa-east-1": 0.0276, "us-east-1": 0.0832, - "us-east-2": 0.0832, + "us-east-2": 0.1158, "us-gov-east-1": 0.0276, - "us-gov-west-1": 0.0276, - "us-west-1": 0.0992, + "us-gov-west-1": 0.0976, + "us-west-1": 0.0, "us-west-2": 0.0, "us-west-2-lax-1": 0.1274 }, "t3.xlarge": { "af-south-1": 0.0736, "ap-east-1": 0.0, - "ap-northeast-1": 0.2176, - "ap-northeast-2": 0.208, - "ap-northeast-3": 0.0, + "ap-northeast-1": 0.0736, + "ap-northeast-2": 0.2936, + "ap-northeast-3": 0.2912, "ap-south-1": 0.0736, "ap-south-2": 0.0, "ap-southeast-1": 0.2112, - "ap-southeast-2": 0.0, - "ap-southeast-3": 0.0736, - "ap-southeast-4": 0.0736, - "ca-central-1": 0.2703, + "ap-southeast-2": 0.0736, + "ap-southeast-3": 0.0, + "ap-southeast-4": 0.2848, + "ca-central-1": 0.1856, + "ca-west-1": 0.0736, "eu-central-1": 0.0, - "eu-central-2": 0.2112, + "eu-central-2": 0.0736, "eu-north-1": 0.2464, "eu-south-1": 0.0736, - "eu-south-2": 0.0736, - "eu-west-1": 0.256, + "eu-south-2": 0.0, + "eu-west-1": 0.1948, "eu-west-2": 0.1888, "eu-west-3": 0.0736, - "il-central-1": 0.0, - "me-central-1": 0.2742, + "il-central-1": 0.1917, + "me-central-1": 0.0736, "me-south-1": 0.0736, "sa-east-1": 0.0736, - "us-east-1": 0.1664, + "us-east-1": 0.0, "us-east-2": 0.0736, "us-gov-east-1": 0.2688, - "us-gov-west-1": 0.0736, - "us-west-1": 0.272, - "us-west-2": 0.0736, + "us-gov-west-1": 0.0, + "us-west-1": 0.1984, + "us-west-2": 0.24, "us-west-2-lax-1": 0.2733 }, "t3.nano": { - "af-south-1": 0.0046, + "af-south-1": 0.0114, "ap-east-1": 0.0, - "ap-northeast-1": 0.0, - "ap-northeast-2": 0.0, + "ap-northeast-1": 0.0068, + "ap-northeast-2": 0.0046, "ap-northeast-3": 0.0, - "ap-south-1": 0.0046, + "ap-south-1": 0.0, "ap-south-2": 0.0046, - "ap-southeast-1": 0.0066, - "ap-southeast-2": 0.0112, - "ap-southeast-3": 0.0, + "ap-southeast-1": 0.0046, + "ap-southeast-2": 0.0046, + "ap-southeast-3": 0.0046, "ap-southeast-4": 0.0046, "ca-central-1": 0.0104, - "eu-central-1": 0.0046, + "ca-west-1": 0.0046, + "eu-central-1": 0.006, "eu-central-2": 0.0066, - "eu-north-1": 0.0046, - "eu-south-1": 0.0046, - "eu-south-2": 0.0046, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 0.0103, "eu-west-1": 0.0057, - "eu-west-2": 0.0105, + "eu-west-2": 0.0059, "eu-west-3": 0.0105, - "il-central-1": 0.006, + "il-central-1": 0.0046, "me-central-1": 0.0046, - "me-south-1": 0.0109, + "me-south-1": 0.0, "sa-east-1": 0.0084, "us-east-1": 0.0, - "us-east-2": 0.0098, + "us-east-2": 0.0052, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0061, "us-west-1": 0.0, @@ -93642,25 +107015,26 @@ "us-west-2-lax-1": 0.0108 }, "t3.2xlarge": { - "af-south-1": 0.0, + "af-south-1": 0.1472, "ap-east-1": 0.1472, - "ap-northeast-1": 0.1472, - "ap-northeast-2": 0.1472, + "ap-northeast-1": 0.6107, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, - "ap-south-1": 0.0, + "ap-south-1": 0.1472, "ap-south-2": 0.1472, "ap-southeast-1": 0.4224, - "ap-southeast-2": 0.1472, + "ap-southeast-2": 0.5969, "ap-southeast-3": 0.1472, "ap-southeast-4": 0.1472, - "ca-central-1": 0.5407, + "ca-central-1": 0.3712, + "ca-west-1": 0.1472, "eu-central-1": 0.384, - "eu-central-2": 0.1472, - "eu-north-1": 0.0, + "eu-central-2": 0.0, + "eu-north-1": 0.1472, "eu-south-1": 0.1472, "eu-south-2": 0.1472, "eu-west-1": 0.3648, - "eu-west-2": 0.0, + "eu-west-2": 0.3776, "eu-west-3": 0.5475, "il-central-1": 0.3834, "me-central-1": 0.1472, @@ -93668,10 +107042,10 @@ "sa-east-1": 0.5376, "us-east-1": 0.3328, "us-east-2": 0.0, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.1472, "us-gov-west-1": 0.3904, "us-west-1": 0.0, - "us-west-2": 0.48, + "us-west-2": 0.1472, "us-west-2-lax-1": 0.5466 }, "t3a.micro": { @@ -93821,6 +107195,24 @@ "us-west-1": 0.5043, "us-west-2": 0.448 }, + "u7i-12tb.224xlarge": { + "us-east-1": 41.216, + "us-west-2": 152.88 + }, + "u7in-16tb.224xlarge": { + "ap-northeast-2": 245.902, + "ap-southeast-2": 41.216, + "us-east-1": 41.216, + "us-west-2": 203.84 + }, + "u7in-24tb.224xlarge": { + "us-east-1": 41.216, + "us-west-2": 305.76 + }, + "u7in-32tb.224xlarge": { + "us-east-1": 407.68, + "us-west-2": 0.0 + }, "u-3tb1.56xlarge": { "ap-northeast-1": 32.9333, "ap-southeast-1": 32.93, @@ -93836,93 +107228,160 @@ "us-west-2": 27.3 }, "u-6tb1.metal": { - "eu-central-2": 20.608 + "ap-northeast-1": 0.0, + "ap-northeast-2": 20.608, + "ap-south-1": 0.0, + "ap-southeast-1": 20.608, + "ap-southeast-2": 20.608, + "ca-central-1": 20.608, + "eu-central-1": 20.608, + "eu-central-2": 20.608, + "eu-north-1": 0.0, + "eu-south-1": 0.0, + "eu-south-2": 20.608, + "eu-west-1": 20.608, + "eu-west-2": 0.0, + "eu-west-3": 20.608, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 20.608, + "us-gov-east-1": 0.0, + "us-gov-west-1": 20.608, + "us-west-2": 0.0 }, "u-6tb1.56xlarge": { - "ap-northeast-1": 55.9796, - "ap-northeast-2": 55.9796, - "ap-south-1": 58.18076, - "ap-southeast-1": 66.2836, - "ap-southeast-2": 55.61075, - "ca-central-1": 50.82333, - "eu-central-1": 55.9796, + "ap-northeast-1": 10.304, + "ap-northeast-2": 66.2836, + "ap-south-1": 47.87676, + "ap-southeast-1": 10.304, + "ap-southeast-2": 0.0, + "ca-central-1": 10.304, + "eu-central-1": 10.304, "eu-central-2": 10.304, - "eu-north-1": 59.63577, - "eu-south-1": 64.82859, + "eu-north-1": 0.0, + "eu-south-1": 10.304, + "eu-south-2": 10.304, "eu-west-1": 51.92818, - "eu-west-3": 54.50589, - "sa-east-1": 74.02528, - "us-east-1": 46.40391, + "eu-west-2": 0.0, + "eu-west-3": 10.304, + "sa-east-1": 10.304, + "us-east-1": 56.70791, "us-east-2": 56.70791, - "us-gov-east-1": 55.61075, - "us-gov-west-1": 55.61075, - "us-west-2": 56.70791 + "us-gov-east-1": 0.0, + "us-gov-west-1": 10.304, + "us-west-2": 10.304 }, "u-6tb1.112xlarge": { - "ap-northeast-1": 65.867, - "ap-northeast-2": 65.867, - "ap-south-1": 56.333, - "ap-southeast-1": 86.475, + "ap-northeast-1": 20.608, + "ap-northeast-2": 20.608, + "ap-south-1": 0.0, + "ap-southeast-1": 0.0, "ap-southeast-2": 65.433, - "ca-central-1": 59.8, - "eu-central-1": 86.475, - "eu-central-2": 0.0, - "eu-north-1": 58.045, - "eu-south-1": 64.155, + "ca-central-1": 20.608, + "eu-central-1": 0.0, + "eu-central-2": 20.608, + "eu-north-1": 78.653, + "eu-south-1": 20.608, + "eu-south-2": 20.608, "eu-west-1": 61.1, - "eu-west-3": 64.133, + "eu-west-2": 20.608, + "eu-west-3": 20.608, "sa-east-1": 87.1, - "us-east-1": 54.6, - "us-east-2": 54.6, - "us-gov-east-1": 65.433, + "us-east-1": 75.208, + "us-east-2": 20.608, + "us-gov-east-1": 20.608, "us-gov-west-1": 65.433, - "us-west-2": 54.6 + "us-west-2": 75.208 }, "u-9tb1.metal": { + "ap-northeast-1": 20.608, + "ap-northeast-2": 20.608, "ap-south-2": 0.0, - "us-gov-east-1": 0.0 + "ap-southeast-1": 0.0, + "eu-central-1": 0.0, + "eu-north-1": 20.608, + "eu-west-1": 0.0, + "eu-west-2": 20.608, + "sa-east-1": 0.0, + "us-east-1": 20.608, + "us-east-2": 0.0, + "us-gov-east-1": 20.608, + "us-gov-west-1": 20.608, + "us-west-2": 0.0 }, "u-9tb1.112xlarge": { - "ap-northeast-1": 98.8, - "ap-south-2": 0.0, - "ap-southeast-1": 119.408, - "eu-central-1": 98.8, + "ap-northeast-1": 20.608, + "ap-northeast-2": 20.608, + "ap-south-2": 83.98043, + "ap-southeast-1": 20.608, + "eu-central-1": 0.0, + "eu-north-1": 20.608, "eu-west-1": 91.65, - "us-east-1": 81.9, - "us-gov-east-1": 20.608, - "us-gov-west-1": 98.15, - "us-west-2": 81.9 + "eu-west-2": 96.2, + "sa-east-1": 0.0, + "us-east-1": 20.608, + "us-east-2": 81.9, + "us-gov-east-1": 98.15, + "us-gov-west-1": 20.608, + "us-west-2": 20.608 }, "u-12tb1.metal": { - "ap-south-1": 0.0 + "ap-northeast-1": 20.608, + "ap-northeast-2": 0.0, + "ap-northeast-3": 0.0, + "ap-south-1": 20.608, + "ap-southeast-1": 0.0, + "ap-southeast-2": 0.0, + "eu-central-1": 0.0, + "eu-south-1": 0.0, + "eu-west-1": 0.0, + "sa-east-1": 0.0, + "us-east-1": 0.0, + "us-east-2": 20.608, + "us-gov-east-1": 20.608, + "us-gov-west-1": 0.0, + "us-west-2": 20.608 }, "u-12tb1.112xlarge": { - "ap-northeast-1": 152.341, + "ap-northeast-1": 0.0, + "ap-northeast-2": 131.733, + "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-southeast-1": 131.733, - "eu-central-1": 131.733, + "ap-southeast-1": 20.608, + "ap-southeast-2": 151.475, + "eu-central-1": 20.608, + "eu-south-1": 128.31, "eu-west-1": 122.2, - "sa-east-1": 194.808, - "us-east-1": 109.2, - "us-east-2": 109.2, + "sa-east-1": 0.0, + "us-east-1": 20.608, + "us-east-2": 20.608, "us-gov-east-1": 130.867, "us-gov-west-1": 130.867, - "us-west-2": 129.808 + "us-west-2": 20.608 + }, + "u-18tb1.metal": { + "eu-west-1": 0.0, + "us-east-1": 0.0, + "us-west-2": 0.0 }, "u-18tb1.112xlarge": { "eu-west-1": 183.3, - "us-east-1": 163.8, - "us-west-2": 163.8 + "us-east-1": 20.608, + "us-west-2": 20.608 }, "u-24tb1.metal": { + "ap-northeast-2": 20.608, + "us-east-1": 20.608, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.0, "us-west-2": 20.608 }, "u-24tb1.112xlarge": { - "ap-northeast-2": 284.078, - "us-east-1": 218.4, - "us-gov-east-1": 282.338, - "us-gov-west-1": 282.338, - "us-west-2": 239.008 + "ap-northeast-2": 0.0, + "us-east-1": 239.008, + "us-gov-east-1": 20.608, + "us-gov-west-1": 20.608, + "us-west-2": 218.4 }, "x1.16xlarge": { "af-south-1": 2.944, @@ -93937,7 +107396,7 @@ "eu-central-1": 9.337, "eu-west-1": 8.003, "eu-west-2": 8.403, - "eu-west-3": 0.0, + "eu-west-3": 9.243, "sa-east-1": 2.944, "us-east-1": 6.669, "us-east-2": 6.669, @@ -93951,7 +107410,7 @@ "ap-northeast-1": 19.341, "ap-northeast-2": 19.341, "ap-northeast-3": 0.0, - "ap-south-1": 19.65, + "ap-south-1": 0.0, "ap-southeast-1": 19.341, "ap-southeast-2": 19.341, "ca-central-1": 14.672, @@ -93969,13 +107428,13 @@ "x1e.xlarge": { "af-south-1": 0.184, "ap-northeast-1": 0.0, - "ap-northeast-2": 0.184, + "ap-northeast-2": 1.209, "ap-northeast-3": 0.184, "ap-south-1": 1.044, "ap-southeast-1": 0.184, "ap-southeast-2": 1.209, "ca-central-1": 0.184, - "eu-central-1": 1.167, + "eu-central-1": 0.184, "eu-west-1": 0.184, "sa-east-1": 1.81, "us-east-1": 0.0, @@ -93986,12 +107445,12 @@ }, "x1e.2xlarge": { "af-south-1": 0.368, - "ap-northeast-1": 0.368, + "ap-northeast-1": 2.66, "ap-northeast-2": 0.0, - "ap-northeast-3": 0.0, + "ap-northeast-3": 0.368, "ap-south-1": 2.088, "ap-southeast-1": 0.368, - "ap-southeast-2": 2.418, + "ap-southeast-2": 0.0, "ca-central-1": 0.368, "eu-central-1": 2.334, "eu-west-1": 0.368, @@ -94000,7 +107459,7 @@ "us-east-2": 0.368, "us-gov-east-1": 0.368, "us-gov-west-1": 2.2, - "us-west-2": 2.203 + "us-west-2": 1.668 }, "x1e.4xlarge": { "af-south-1": 0.736, @@ -94009,20 +107468,20 @@ "ap-northeast-3": 0.736, "ap-south-1": 4.176, "ap-southeast-1": 0.736, - "ap-southeast-2": 5.572, + "ap-southeast-2": 4.836, "ca-central-1": 0.736, - "eu-central-1": 5.135, - "eu-west-1": 0.736, + "eu-central-1": 4.668, + "eu-west-1": 4.0, "sa-east-1": 7.238, "us-east-1": 3.336, "us-east-2": 0.736, "us-gov-east-1": 0.736, - "us-gov-west-1": 0.736, - "us-west-2": 0.736 + "us-gov-west-1": 4.0, + "us-west-2": 3.336 }, "x1e.8xlarge": { "af-south-1": 1.472, - "ap-northeast-1": 9.672, + "ap-northeast-1": 0.0, "ap-northeast-2": 1.472, "ap-northeast-3": 1.472, "ap-south-1": 8.352, @@ -94040,17 +107499,17 @@ }, "x1e.16xlarge": { "af-south-1": 2.944, - "ap-northeast-1": 19.344, - "ap-northeast-2": 19.344, + "ap-northeast-1": 0.0, + "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 16.704, "ap-southeast-1": 2.944, "ap-southeast-2": 19.344, "ca-central-1": 2.944, - "eu-central-1": 18.672, + "eu-central-1": 2.944, "eu-west-1": 0.0, "sa-east-1": 28.954, - "us-east-1": 13.344, + "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-east-1": 2.944, "us-gov-west-1": 2.944, @@ -94063,7 +107522,7 @@ "ap-northeast-3": 5.888, "ap-south-1": 33.408, "ap-southeast-1": 5.888, - "ap-southeast-2": 5.888, + "ap-southeast-2": 38.688, "ca-central-1": 5.888, "eu-central-1": 5.888, "eu-west-1": 32.0, @@ -94075,119 +107534,124 @@ "us-west-2": 5.888 }, "x2idn.metal": { - "ap-northeast-1": 5.888, - "ap-northeast-2": 19.341, + "af-south-1": 5.888, + "ap-northeast-1": 25.229, + "ap-northeast-2": 5.888, "ap-northeast-3": 0.0, "ap-south-1": 19.65, "ap-south-2": 5.888, "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, "ap-southeast-3": 5.888, - "ca-central-1": 0.0, - "eu-central-1": 0.0, + "ca-central-1": 5.888, + "eu-central-1": 5.888, "eu-central-2": 5.888, "eu-north-1": 5.888, "eu-south-1": 5.888, - "eu-south-2": 16.006, + "eu-south-2": 5.888, "eu-west-1": 16.006, - "eu-west-2": 5.888, - "eu-west-3": 16.806, + "eu-west-2": 22.694, + "eu-west-3": 0.0, "me-central-1": 16.408, - "sa-east-1": 5.888, - "us-east-1": 5.888, + "sa-east-1": 31.898, + "us-east-1": 19.226, "us-east-2": 5.888, - "us-gov-east-1": 5.888, + "us-gov-east-1": 16.006, "us-gov-west-1": 5.888, "us-west-1": 5.888, "us-west-2": 5.888 }, "x2idn.16xlarge": { + "af-south-1": 9.524, "ap-northeast-1": 2.944, - "ap-northeast-2": 13.58155, + "ap-northeast-2": 12.6145, "ap-northeast-3": 2.944, "ap-south-1": 2.944, - "ap-south-2": 10.5131, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, - "ap-southeast-2": 9.6705, - "ap-southeast-3": 2.944, - "ca-central-1": 0.0, - "eu-central-1": 13.2147, - "eu-central-2": 2.944, - "eu-north-1": 11.31005, + "ap-southeast-2": 12.6145, + "ap-southeast-3": 10.63755, + "ca-central-1": 7.336, + "eu-central-1": 9.337, + "eu-central-2": 11.29777, + "eu-north-1": 0.0, "eu-south-1": 2.944, "eu-south-2": 0.0, "eu-west-1": 2.944, - "eu-west-2": 12.1873, - "eu-west-3": 8.403, - "me-central-1": 8.204, - "sa-east-1": 2.944, + "eu-west-2": 9.2433, + "eu-west-3": 2.944, + "me-central-1": 11.9684, + "sa-east-1": 13.005, "us-east-1": 2.944, - "us-east-2": 9.613, + "us-east-2": 2.944, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, - "us-west-1": 8.67, + "us-west-1": 11.614, "us-west-2": 6.669 }, "x2idn.24xlarge": { + "af-south-1": 4.416, "ap-northeast-1": 4.416, "ap-northeast-2": 4.416, "ap-northeast-3": 4.416, - "ap-south-1": 14.7375, + "ap-south-1": 4.416, "ap-south-2": 14.7375, "ap-southeast-1": 4.416, - "ap-southeast-2": 0.0, + "ap-southeast-2": 4.416, "ap-southeast-3": 0.0, "ca-central-1": 4.416, "eu-central-1": 4.416, "eu-central-2": 4.416, "eu-north-1": 4.416, - "eu-south-1": 4.416, - "eu-south-2": 4.416, - "eu-west-1": 12.0045, + "eu-south-1": 13.86083, + "eu-south-2": 17.62095, + "eu-west-1": 13.20495, "eu-west-2": 4.416, "eu-west-3": 0.0, "me-central-1": 0.0, "sa-east-1": 4.416, - "us-east-1": 14.4195, + "us-east-1": 0.0, "us-east-2": 11.00385, - "us-gov-east-1": 4.416, + "us-gov-east-1": 13.20495, "us-gov-west-1": 4.416, - "us-west-1": 17.421, - "us-west-2": 11.00385 + "us-west-1": 13.005, + "us-west-2": 4.416 }, "x2idn.32xlarge": { - "ap-northeast-1": 0.0, + "af-south-1": 5.888, + "ap-northeast-1": 19.341, "ap-northeast-2": 0.0, - "ap-northeast-3": 19.342, - "ap-south-1": 13.762, + "ap-northeast-3": 0.0, + "ap-south-1": 19.65, "ap-south-2": 5.888, "ap-southeast-1": 5.888, "ap-southeast-2": 25.229, - "ap-southeast-3": 25.229, - "ca-central-1": 5.888, + "ap-southeast-3": 5.888, + "ca-central-1": 0.0, "eu-central-1": 5.888, "eu-central-2": 5.888, "eu-north-1": 5.888, - "eu-south-1": 22.689, + "eu-south-1": 5.888, "eu-south-2": 16.006, "eu-west-1": 16.006, - "eu-west-2": 16.806, - "eu-west-3": 5.888, + "eu-west-2": 5.888, + "eu-west-3": 22.694, "me-central-1": 0.0, "sa-east-1": 26.01, - "us-east-1": 5.888, + "us-east-1": 13.338, "us-east-2": 5.888, "us-gov-east-1": 5.888, "us-gov-west-1": 5.888, - "us-west-1": 0.0, - "us-west-2": 0.0 + "us-west-1": 5.888, + "us-west-2": 5.888 }, "x2iedn.xlarge": { + "af-south-1": 0.184, "ap-northeast-1": 0.184, "ap-northeast-2": 0.0, "ap-northeast-3": 0.0, "ap-south-1": 0.0, - "ap-south-2": 0.184, + "ap-south-2": 0.0, "ap-southeast-1": 0.184, "ap-southeast-2": 1.51369, "ap-southeast-3": 1.32969, @@ -94195,19 +107659,21 @@ "eu-central-1": 0.184, "eu-north-1": 0.0, "eu-south-1": 0.184, + "eu-south-2": 0.184, "eu-west-1": 1.00038, "eu-west-2": 0.184, - "eu-west-3": 1.05038, + "eu-west-3": 0.0, "sa-east-1": 0.184, - "us-east-1": 0.83363, + "us-east-1": 0.0, "us-east-2": 1.10099, "us-gov-east-1": 0.184, - "us-gov-west-1": 1.00038, + "us-gov-west-1": 0.0, "us-west-1": 0.184, "us-west-2": 0.184 }, "x2iedn.metal": { - "ap-northeast-1": 38.682, + "af-south-1": 38.096, + "ap-northeast-1": 5.888, "ap-northeast-2": 5.888, "ap-northeast-3": 5.888, "ap-south-1": 33.412, @@ -94215,15 +107681,16 @@ "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, "ap-southeast-3": 0.0, - "ca-central-1": 35.232, - "eu-central-1": 0.0, + "ca-central-1": 29.344, + "eu-central-1": 5.888, "eu-north-1": 5.888, "eu-south-1": 5.888, - "eu-west-1": 32.012, - "eu-west-2": 5.888, + "eu-south-2": 0.0, + "eu-west-1": 0.0, + "eu-west-2": 0.0, "eu-west-3": 5.888, "sa-east-1": 5.888, - "us-east-1": 32.564, + "us-east-1": 5.888, "us-east-2": 0.0, "us-gov-east-1": 0.0, "us-gov-west-1": 0.0, @@ -94231,175 +107698,187 @@ "us-west-2": 26.676 }, "x2iedn.2xlarge": { - "ap-northeast-1": 2.65939, + "af-south-1": 0.0, + "ap-northeast-1": 2.41763, "ap-northeast-2": 3.02739, - "ap-northeast-3": 0.368, + "ap-northeast-3": 2.41775, "ap-south-1": 0.368, "ap-south-2": 0.368, - "ap-southeast-1": 2.78563, - "ap-southeast-2": 3.02739, + "ap-southeast-1": 0.368, + "ap-southeast-2": 2.41763, "ap-southeast-3": 0.368, "ca-central-1": 2.3854, "eu-central-1": 0.368, - "eu-north-1": 2.09158, - "eu-south-1": 0.368, + "eu-north-1": 1.90144, + "eu-south-1": 0.0, + "eu-south-2": 2.00075, "eu-west-1": 0.368, "eu-west-2": 0.368, - "eu-west-3": 0.368, - "sa-east-1": 0.368, + "eu-west-3": 2.31083, + "sa-east-1": 0.0, "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-east-1": 0.368, - "us-gov-west-1": 2.36875, + "us-gov-west-1": 0.368, "us-west-1": 2.38425, "us-west-2": 0.368 }, "x2iedn.4xlarge": { - "ap-northeast-1": 5.31878, + "af-south-1": 0.0, + "ap-northeast-1": 4.83525, "ap-northeast-2": 0.736, "ap-northeast-3": 0.0, "ap-south-1": 0.736, - "ap-south-2": 0.0, + "ap-south-2": 3.4405, "ap-southeast-1": 0.736, "ap-southeast-2": 0.736, "ap-southeast-3": 0.736, "ca-central-1": 0.736, "eu-central-1": 0.0, "eu-north-1": 4.91916, - "eu-south-1": 5.35614, - "eu-west-1": 4.0015, + "eu-south-1": 0.0, + "eu-south-2": 0.736, + "eu-west-1": 0.736, "eu-west-2": 0.0, "eu-west-3": 0.736, "sa-east-1": 0.736, "us-east-1": 0.736, - "us-east-2": 0.736, - "us-gov-east-1": 4.0015, - "us-gov-west-1": 4.40165, + "us-east-2": 4.40395, + "us-gov-east-1": 0.0, + "us-gov-west-1": 0.736, "us-west-1": 0.736, "us-west-2": 0.736 }, "x2iedn.8xlarge": { + "af-south-1": 1.472, "ap-northeast-1": 1.472, "ap-northeast-2": 11.1425, "ap-northeast-3": 0.0, "ap-south-1": 1.472, "ap-south-2": 9.0411, "ap-southeast-1": 1.472, - "ap-southeast-2": 0.0, - "ap-southeast-3": 11.1425, + "ap-southeast-2": 11.1425, + "ap-southeast-3": 0.0, "ca-central-1": 0.0, "eu-central-1": 11.7427, "eu-north-1": 0.0, "eu-south-1": 1.472, - "eu-west-1": 8.003, + "eu-south-2": 10.2753, + "eu-west-1": 8.8033, "eu-west-2": 1.472, - "eu-west-3": 1.472, - "sa-east-1": 13.005, + "eu-west-3": 8.403, + "sa-east-1": 0.0, "us-east-1": 6.669, - "us-east-2": 8.141, + "us-east-2": 1.472, "us-gov-east-1": 1.472, "us-gov-west-1": 1.472, - "us-west-1": 0.0, + "us-west-1": 11.009, "us-west-2": 1.472 }, "x2iedn.16xlarge": { + "af-south-1": 19.048, "ap-northeast-1": 21.2751, "ap-northeast-2": 2.944, "ap-northeast-3": 0.0, - "ap-south-1": 13.762, - "ap-south-2": 13.762, + "ap-south-1": 0.0, + "ap-south-2": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 2.944, "ap-southeast-3": 2.944, "ca-central-1": 0.0, "eu-central-1": 2.944, - "eu-north-1": 2.944, + "eu-north-1": 0.0, "eu-south-1": 19.7445, - "eu-west-1": 16.006, - "eu-west-2": 2.944, - "eu-west-3": 2.944, - "sa-east-1": 2.944, + "eu-south-2": 2.944, + "eu-west-1": 2.944, + "eu-west-2": 19.75, + "eu-west-3": 18.4866, + "sa-east-1": 0.0, "us-east-1": 2.944, "us-east-2": 2.944, "us-gov-east-1": 2.944, "us-gov-west-1": 2.944, - "us-west-1": 22.018, + "us-west-1": 2.944, "us-west-2": 13.338 }, "x2iedn.24xlarge": { + "af-south-1": 4.416, "ap-northeast-1": 4.416, "ap-northeast-2": 4.416, "ap-northeast-3": 0.0, - "ap-south-1": 25.059, - "ap-south-2": 0.0, + "ap-south-1": 20.643, + "ap-south-2": 20.643, "ap-southeast-1": 4.416, "ap-southeast-2": 0.0, "ap-southeast-3": 4.416, - "ca-central-1": 4.416, + "ca-central-1": 22.008, "eu-central-1": 4.416, "eu-north-1": 4.416, - "eu-south-1": 27.72083, + "eu-south-1": 32.13683, + "eu-south-2": 4.416, "eu-west-1": 4.416, "eu-west-2": 27.7299, - "eu-west-3": 32.1459, + "eu-west-3": 4.416, "sa-east-1": 4.416, - "us-east-1": 0.0, - "us-east-2": 0.0, - "us-gov-east-1": 28.425, + "us-east-1": 4.416, + "us-east-2": 26.4237, + "us-gov-east-1": 0.0, "us-gov-west-1": 4.416, "us-west-1": 4.416, "us-west-2": 4.416 }, "x2iedn.32xlarge": { + "af-south-1": 0.0, "ap-northeast-1": 38.682, "ap-northeast-2": 38.682, - "ap-northeast-3": 44.572, + "ap-northeast-3": 5.888, "ap-south-1": 5.888, "ap-south-2": 5.888, - "ap-southeast-1": 0.0, - "ap-southeast-2": 38.682, + "ap-southeast-1": 5.888, + "ap-southeast-2": 44.57, "ap-southeast-3": 38.682, - "ca-central-1": 0.0, + "ca-central-1": 35.232, "eu-central-1": 5.888, "eu-north-1": 5.888, - "eu-south-1": 33.601, - "eu-west-1": 37.9, + "eu-south-1": 0.0, + "eu-south-2": 5.888, + "eu-west-1": 5.888, "eu-west-2": 5.888, - "eu-west-3": 5.888, - "sa-east-1": 5.888, + "eu-west-3": 0.0, + "sa-east-1": 52.02, "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-east-1": 37.9, - "us-gov-west-1": 32.012, - "us-west-1": 5.888, + "us-gov-west-1": 5.888, + "us-west-1": 40.568, "us-west-2": 5.888 }, "x2iezn.metal": { "ap-northeast-1": 2.208, - "eu-west-1": 14.208, + "eu-west-1": 2.208, "us-east-1": 2.208, - "us-west-2": 2.208 + "us-west-2": 10.008 }, "x2iezn.2xlarge": { - "ap-northeast-1": 2.418, + "ap-northeast-1": 2.786, "eu-west-1": 0.368, "us-east-1": 0.368, "us-west-2": 2.036 }, "x2iezn.4xlarge": { - "ap-northeast-1": 6.0556, + "ap-northeast-1": 0.736, "eu-west-1": 0.736, - "us-east-1": 3.6696, - "us-west-2": 0.736 + "us-east-1": 0.736, + "us-west-2": 3.6696 }, "x2iezn.6xlarge": { "ap-northeast-1": 1.104, - "eu-west-1": 1.104, + "eu-west-1": 7.704, "us-east-1": 1.104, "us-west-2": 1.104 }, "x2iezn.8xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 1.472, "eu-west-1": 1.472, "us-east-1": 1.472, "us-west-2": 1.472 @@ -94407,11 +107886,11 @@ "x2iezn.12xlarge": { "ap-northeast-1": 14.508, "eu-west-1": 12.0, - "us-east-1": 10.008, - "us-west-2": 10.008 + "us-east-1": 12.216, + "us-west-2": 2.208 }, "z1d.large": { - "ap-northeast-1": 0.092, + "ap-northeast-1": 0.319, "ap-northeast-2": 0.092, "ap-south-1": 0.092, "ap-southeast-1": 0.0, @@ -94421,11 +107900,11 @@ "eu-west-2": 0.092, "us-east-1": 0.289, "us-east-2": 0.092, - "us-west-1": 0.092, + "us-west-1": 0.211, "us-west-2": 0.186 }, "z1d.xlarge": { - "ap-northeast-1": 0.0, + "ap-northeast-1": 0.454, "ap-northeast-2": 0.184, "ap-south-1": 0.184, "ap-southeast-1": 0.452, @@ -94433,9 +107912,9 @@ "eu-central-1": 0.184, "eu-west-1": 0.416, "eu-west-2": 0.184, - "us-east-1": 0.0, + "us-east-1": 0.184, "us-east-2": 0.184, - "us-west-1": 0.448, + "us-west-1": 0.422, "us-west-2": 0.184 }, "z1d.metal": { @@ -94456,21 +107935,21 @@ "ap-northeast-1": 0.908, "ap-northeast-2": 0.368, "ap-south-1": 0.368, - "ap-southeast-1": 0.904, + "ap-southeast-1": 0.368, "ap-southeast-2": 0.368, "eu-central-1": 0.368, "eu-west-1": 0.368, "eu-west-2": 0.368, - "us-east-1": 0.744, + "us-east-1": 0.368, "us-east-2": 0.368, - "us-west-1": 0.0, + "us-west-1": 0.368, "us-west-2": 0.744 }, "z1d.3xlarge": { "ap-northeast-1": 1.362, "ap-northeast-2": 0.552, "ap-south-1": 0.552, - "ap-southeast-1": 0.552, + "ap-southeast-1": 1.356, "ap-southeast-2": 0.552, "eu-central-1": 0.552, "eu-west-1": 1.248, @@ -94478,7 +107957,7 @@ "us-east-1": 1.116, "us-east-2": 0.552, "us-west-1": 1.266, - "us-west-2": 0.552 + "us-west-2": 1.116 }, "z1d.6xlarge": { "ap-northeast-1": 2.724, @@ -94489,10 +107968,10 @@ "eu-central-1": 1.104, "eu-west-1": 1.104, "eu-west-2": 1.104, - "us-east-1": 3.336, + "us-east-1": 1.104, "us-east-2": 1.104, "us-west-1": 1.104, - "us-west-2": 3.47 + "us-west-2": 0.0 }, "z1d.12xlarge": { "ap-northeast-1": 0.0, @@ -94501,9 +107980,9 @@ "ap-southeast-1": 5.424, "ap-southeast-2": 2.208, "eu-central-1": 2.208, - "eu-west-1": 2.208, + "eu-west-1": 0.0, "eu-west-2": 2.208, - "us-east-1": 2.208, + "us-east-1": 4.464, "us-east-2": 2.208, "us-west-1": 5.064, "us-west-2": 0.0 @@ -100373,5 +113852,5 @@ } }, "storage": {}, - "updated": 1691336076 + "updated": 1717008039 } \ No newline at end of file From 1fe3ed3d58f549fec36817a588a941abaf81809b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 16 Jun 2024 09:12:14 +0000 Subject: [PATCH 08/22] Bump tox from 4.8.0 to 4.15.1 Bumps [tox](https://github.com/tox-dev/tox) from 4.8.0 to 4.15.1. - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst) - [Commits](https://github.com/tox-dev/tox/compare/4.8.0...4.15.1) --- updated-dependencies: - dependency-name: tox dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements-ci.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-ci.txt b/requirements-ci.txt index 3073ec8cdd..5c6c3e27fc 100644 --- a/requirements-ci.txt +++ b/requirements-ci.txt @@ -1 +1 @@ -tox==4.8.0 +tox==4.15.1 From 7779ef53a343786b0b3b7edc57a22fd870929cda Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 16 Jun 2024 11:02:26 +0200 Subject: [PATCH 09/22] Update committer guide to indicate that black + isort need to run one the auto-generated code after scraping and updating the pricing data. --- docs/committer_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/committer_guide.rst b/docs/committer_guide.rst index b8ad23d8bc..5c2cbab7c2 100644 --- a/docs/committer_guide.rst +++ b/docs/committer_guide.rst @@ -74,7 +74,7 @@ preparing a release. * Make sure ``CHANGES`` file is up to date * Make sure ``__version__`` string in ``libcloud/__init__.py`` is up to date * Make sure ``version`` and ``release`` in ``docs/conf.py`` are up to date -* Update constants, pricing and other auto-generated data: ``tox -e scrape-ec2-sizes,scrape-ec2-prices`` +* Update constants, pricing and other auto-generated data: ``tox -e scrape-ec2-sizes,scrape-ec2-prices,black,isort`` 1. Pre-release check list ~~~~~~~~~~~~~~~~~~~~~~~~~ From de535ea79cce842ecf1b212c333b0dd4cf991d42 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 16 Jun 2024 11:23:46 +0200 Subject: [PATCH 10/22] Add changelog entry for #2012. --- CHANGES.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 1ed8808e3a..233253c848 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -76,6 +76,10 @@ Compute (#1972) [Aayush Rangwala - @aayushrangwala, Tomaz Muraus - @Kami] +- [Amazon EC2] Update pricing and sizing data. + (#2012) + [Eric Anderson - @eric-anderson] + Storage ~~~~~~~ From d3b979ccb38e3308f3d48ff44f85b731aa94c07d Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 16 Jun 2024 11:25:30 +0200 Subject: [PATCH 11/22] Update EC2 pricing and sizing data and re-format code with black + isort. --- .../compute/constants/ec2_instance_types.py | 2984 ++++++++--------- .../constants/ec2_region_details_complete.py | 141 +- .../constants/ec2_region_details_partial.py | 50 +- libcloud/data/pricing.json | 324 +- 4 files changed, 1936 insertions(+), 1563 deletions(-) diff --git a/libcloud/compute/constants/ec2_instance_types.py b/libcloud/compute/constants/ec2_instance_types.py index c86a4feadb..7214352faa 100644 --- a/libcloud/compute/constants/ec2_instance_types.py +++ b/libcloud/compute/constants/ec2_instance_types.py @@ -43,11 +43,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "a1.2xlarge", "name": "a1.2xlarge", - "ram": 16384 + "ram": 16384, }, "a1.4xlarge": { "bandwidth": 10, @@ -77,11 +77,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "a1.4xlarge", "name": "a1.4xlarge", - "ram": 32768 + "ram": 32768, }, "a1.large": { "bandwidth": 10, @@ -111,11 +111,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "a1.large", "name": "a1.large", - "ram": 4096 + "ram": 4096, }, "a1.medium": { "bandwidth": 10, @@ -145,11 +145,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "a1.medium", "name": "a1.medium", - "ram": 2048 + "ram": 2048, }, "a1.xlarge": { "bandwidth": 10, @@ -179,11 +179,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "a1.xlarge", "name": "a1.xlarge", - "ram": 8192 + "ram": 8192, }, "c1.medium": { "bandwidth": None, @@ -211,11 +211,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 350 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c1.medium", "name": "c1.medium", - "ram": 1740 + "ram": 1740, }, "c1.xlarge": { "bandwidth": None, @@ -243,11 +243,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 420 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c1.xlarge", "name": "c1.xlarge", - "ram": 7168 + "ram": 7168, }, "c3.2xlarge": { "bandwidth": None, @@ -277,11 +277,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 80 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c3.2xlarge", "name": "c3.2xlarge", - "ram": 15360 + "ram": 15360, }, "c3.4xlarge": { "bandwidth": None, @@ -311,11 +311,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 160 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c3.4xlarge", "name": "c3.4xlarge", - "ram": 30720 + "ram": 30720, }, "c3.8xlarge": { "bandwidth": 10, @@ -345,11 +345,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 320 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c3.8xlarge", "name": "c3.8xlarge", - "ram": 61440 + "ram": 61440, }, "c3.large": { "bandwidth": None, @@ -379,11 +379,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 16 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c3.large", "name": "c3.large", - "ram": 3840 + "ram": 3840, }, "c3.xlarge": { "bandwidth": None, @@ -413,11 +413,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 40 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c3.xlarge", "name": "c3.xlarge", - "ram": 7680 + "ram": 7680, }, "c4.2xlarge": { "bandwidth": None, @@ -448,11 +448,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c4.2xlarge", "name": "c4.2xlarge", - "ram": 15360 + "ram": 15360, }, "c4.4xlarge": { "bandwidth": None, @@ -483,11 +483,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c4.4xlarge", "name": "c4.4xlarge", - "ram": 30720 + "ram": 30720, }, "c4.8xlarge": { "bandwidth": 10, @@ -518,11 +518,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c4.8xlarge", "name": "c4.8xlarge", - "ram": 61440 + "ram": 61440, }, "c4.large": { "bandwidth": None, @@ -553,11 +553,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c4.large", "name": "c4.large", - "ram": 3840 + "ram": 3840, }, "c4.xlarge": { "bandwidth": None, @@ -588,11 +588,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c4.xlarge", "name": "c4.xlarge", - "ram": 7680 + "ram": 7680, }, "c5.12xlarge": { "bandwidth": 12, @@ -623,11 +623,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.12xlarge", "name": "c5.12xlarge", - "ram": 98304 + "ram": 98304, }, "c5.18xlarge": { "bandwidth": 25, @@ -658,11 +658,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "72", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.18xlarge", "name": "c5.18xlarge", - "ram": 147456 + "ram": 147456, }, "c5.24xlarge": { "bandwidth": 25, @@ -693,11 +693,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.24xlarge", "name": "c5.24xlarge", - "ram": 196608 + "ram": 196608, }, "c5.2xlarge": { "bandwidth": 10, @@ -728,11 +728,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.2xlarge", "name": "c5.2xlarge", - "ram": 16384 + "ram": 16384, }, "c5.4xlarge": { "bandwidth": 10, @@ -763,11 +763,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.4xlarge", "name": "c5.4xlarge", - "ram": 32768 + "ram": 32768, }, "c5.9xlarge": { "bandwidth": 10, @@ -798,11 +798,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.9xlarge", "name": "c5.9xlarge", - "ram": 73728 + "ram": 73728, }, "c5.large": { "bandwidth": 10, @@ -833,11 +833,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.large", "name": "c5.large", - "ram": 4096 + "ram": 4096, }, "c5.xlarge": { "bandwidth": 10, @@ -868,11 +868,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5.xlarge", "name": "c5.xlarge", - "ram": 8192 + "ram": 8192, }, "c5a.12xlarge": { "bandwidth": 12, @@ -903,11 +903,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.12xlarge", "name": "c5a.12xlarge", - "ram": 98304 + "ram": 98304, }, "c5a.16xlarge": { "bandwidth": 20, @@ -938,11 +938,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.16xlarge", "name": "c5a.16xlarge", - "ram": 131072 + "ram": 131072, }, "c5a.24xlarge": { "bandwidth": 20, @@ -973,11 +973,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.24xlarge", "name": "c5a.24xlarge", - "ram": 196608 + "ram": 196608, }, "c5a.2xlarge": { "bandwidth": 10, @@ -1008,11 +1008,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.2xlarge", "name": "c5a.2xlarge", - "ram": 16384 + "ram": 16384, }, "c5a.4xlarge": { "bandwidth": 10, @@ -1043,11 +1043,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.4xlarge", "name": "c5a.4xlarge", - "ram": 32768 + "ram": 32768, }, "c5a.8xlarge": { "bandwidth": 10, @@ -1078,11 +1078,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.8xlarge", "name": "c5a.8xlarge", - "ram": 65536 + "ram": 65536, }, "c5a.large": { "bandwidth": 10, @@ -1113,11 +1113,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.large", "name": "c5a.large", - "ram": 4096 + "ram": 4096, }, "c5a.xlarge": { "bandwidth": 10, @@ -1148,11 +1148,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5a.xlarge", "name": "c5a.xlarge", - "ram": 8192 + "ram": 8192, }, "c5ad.12xlarge": { "bandwidth": 12, @@ -1183,11 +1183,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.12xlarge", "name": "c5ad.12xlarge", - "ram": 98304 + "ram": 98304, }, "c5ad.16xlarge": { "bandwidth": 20, @@ -1218,11 +1218,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1200 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.16xlarge", "name": "c5ad.16xlarge", - "ram": 131072 + "ram": 131072, }, "c5ad.24xlarge": { "bandwidth": 20, @@ -1253,11 +1253,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.24xlarge", "name": "c5ad.24xlarge", - "ram": 196608 + "ram": 196608, }, "c5ad.2xlarge": { "bandwidth": 10, @@ -1288,11 +1288,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.2xlarge", "name": "c5ad.2xlarge", - "ram": 16384 + "ram": 16384, }, "c5ad.4xlarge": { "bandwidth": 10, @@ -1323,11 +1323,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.4xlarge", "name": "c5ad.4xlarge", - "ram": 32768 + "ram": 32768, }, "c5ad.8xlarge": { "bandwidth": 10, @@ -1358,11 +1358,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.8xlarge", "name": "c5ad.8xlarge", - "ram": 65536 + "ram": 65536, }, "c5ad.large": { "bandwidth": 10, @@ -1393,11 +1393,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.large", "name": "c5ad.large", - "ram": 4096 + "ram": 4096, }, "c5ad.xlarge": { "bandwidth": 10, @@ -1428,11 +1428,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5ad.xlarge", "name": "c5ad.xlarge", - "ram": 8192 + "ram": 8192, }, "c5d.12xlarge": { "bandwidth": 12, @@ -1463,11 +1463,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.12xlarge", "name": "c5d.12xlarge", - "ram": 98304 + "ram": 98304, }, "c5d.18xlarge": { "bandwidth": 25, @@ -1498,11 +1498,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "72", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.18xlarge", "name": "c5d.18xlarge", - "ram": 147456 + "ram": 147456, }, "c5d.24xlarge": { "bandwidth": 25, @@ -1533,11 +1533,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.24xlarge", "name": "c5d.24xlarge", - "ram": 196608 + "ram": 196608, }, "c5d.2xlarge": { "bandwidth": 10, @@ -1568,11 +1568,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 200 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.2xlarge", "name": "c5d.2xlarge", - "ram": 16384 + "ram": 16384, }, "c5d.4xlarge": { "bandwidth": 10, @@ -1603,11 +1603,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 400 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.4xlarge", "name": "c5d.4xlarge", - "ram": 32768 + "ram": 32768, }, "c5d.9xlarge": { "bandwidth": 10, @@ -1638,11 +1638,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 900 NVMe SSD", "vcpu": "36", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.9xlarge", "name": "c5d.9xlarge", - "ram": 73728 + "ram": 73728, }, "c5d.large": { "bandwidth": 10, @@ -1673,11 +1673,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 50 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.large", "name": "c5d.large", - "ram": 4096 + "ram": 4096, }, "c5d.xlarge": { "bandwidth": 10, @@ -1708,11 +1708,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 100 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5d.xlarge", "name": "c5d.xlarge", - "ram": 8192 + "ram": 8192, }, "c5n.18xlarge": { "bandwidth": 100, @@ -1743,11 +1743,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "72", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.18xlarge", "name": "c5n.18xlarge", - "ram": 196608 + "ram": 196608, }, "c5n.2xlarge": { "bandwidth": 25, @@ -1778,11 +1778,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.2xlarge", "name": "c5n.2xlarge", - "ram": 21504 + "ram": 21504, }, "c5n.4xlarge": { "bandwidth": 25, @@ -1813,11 +1813,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.4xlarge", "name": "c5n.4xlarge", - "ram": 43008 + "ram": 43008, }, "c5n.9xlarge": { "bandwidth": 50, @@ -1848,11 +1848,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "36", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.9xlarge", "name": "c5n.9xlarge", - "ram": 98304 + "ram": 98304, }, "c5n.large": { "bandwidth": 25, @@ -1883,11 +1883,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.large", "name": "c5n.large", - "ram": 5376 + "ram": 5376, }, "c5n.xlarge": { "bandwidth": 25, @@ -1918,11 +1918,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c5n.xlarge", "name": "c5n.xlarge", - "ram": 10752 + "ram": 10752, }, "c6a.12xlarge": { "bandwidth": 18750, @@ -1953,11 +1953,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.12xlarge", "name": "c6a.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6a.16xlarge": { "bandwidth": 25000, @@ -1988,11 +1988,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.16xlarge", "name": "c6a.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6a.24xlarge": { "bandwidth": 37500, @@ -2023,11 +2023,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.24xlarge", "name": "c6a.24xlarge", - "ram": 196608 + "ram": 196608, }, "c6a.2xlarge": { "bandwidth": 12500, @@ -2058,11 +2058,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.2xlarge", "name": "c6a.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6a.32xlarge": { "bandwidth": 50000, @@ -2093,11 +2093,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.32xlarge", "name": "c6a.32xlarge", - "ram": 262144 + "ram": 262144, }, "c6a.48xlarge": { "bandwidth": 50000, @@ -2128,11 +2128,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.48xlarge", "name": "c6a.48xlarge", - "ram": 393216 + "ram": 393216, }, "c6a.4xlarge": { "bandwidth": 12500, @@ -2163,11 +2163,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.4xlarge", "name": "c6a.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6a.8xlarge": { "bandwidth": 12500, @@ -2198,11 +2198,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.8xlarge", "name": "c6a.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6a.large": { "bandwidth": 12500, @@ -2233,11 +2233,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.large", "name": "c6a.large", - "ram": 4096 + "ram": 4096, }, "c6a.xlarge": { "bandwidth": 12500, @@ -2268,11 +2268,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6a.xlarge", "name": "c6a.xlarge", - "ram": 8192 + "ram": 8192, }, "c6g.12xlarge": { "bandwidth": 20, @@ -2302,11 +2302,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.12xlarge", "name": "c6g.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6g.16xlarge": { "bandwidth": 25, @@ -2336,11 +2336,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.16xlarge", "name": "c6g.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6g.2xlarge": { "bandwidth": 10, @@ -2370,11 +2370,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.2xlarge", "name": "c6g.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6g.4xlarge": { "bandwidth": 10, @@ -2404,11 +2404,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.4xlarge", "name": "c6g.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6g.8xlarge": { "bandwidth": 12, @@ -2438,11 +2438,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.8xlarge", "name": "c6g.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6g.large": { "bandwidth": 10, @@ -2472,11 +2472,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.large", "name": "c6g.large", - "ram": 4096 + "ram": 4096, }, "c6g.medium": { "bandwidth": 10, @@ -2506,11 +2506,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.medium", "name": "c6g.medium", - "ram": 2048 + "ram": 2048, }, "c6g.xlarge": { "bandwidth": 10, @@ -2540,11 +2540,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6g.xlarge", "name": "c6g.xlarge", - "ram": 8192 + "ram": 8192, }, "c6gd.12xlarge": { "bandwidth": 20, @@ -2574,11 +2574,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.12xlarge", "name": "c6gd.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6gd.16xlarge": { "bandwidth": 25, @@ -2608,11 +2608,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.16xlarge", "name": "c6gd.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6gd.2xlarge": { "bandwidth": 10, @@ -2642,11 +2642,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.2xlarge", "name": "c6gd.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6gd.4xlarge": { "bandwidth": 10, @@ -2676,11 +2676,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.4xlarge", "name": "c6gd.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6gd.8xlarge": { "bandwidth": 12, @@ -2710,11 +2710,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.8xlarge", "name": "c6gd.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6gd.large": { "bandwidth": 10, @@ -2744,11 +2744,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.large", "name": "c6gd.large", - "ram": 4096 + "ram": 4096, }, "c6gd.medium": { "bandwidth": 10, @@ -2778,11 +2778,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.medium", "name": "c6gd.medium", - "ram": 2048 + "ram": 2048, }, "c6gd.xlarge": { "bandwidth": 10, @@ -2812,11 +2812,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gd.xlarge", "name": "c6gd.xlarge", - "ram": 8192 + "ram": 8192, }, "c6gn.12xlarge": { "bandwidth": 75, @@ -2846,11 +2846,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.12xlarge", "name": "c6gn.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6gn.16xlarge": { "bandwidth": 100, @@ -2880,11 +2880,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.16xlarge", "name": "c6gn.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6gn.2xlarge": { "bandwidth": 25, @@ -2914,11 +2914,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.2xlarge", "name": "c6gn.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6gn.4xlarge": { "bandwidth": 25, @@ -2948,11 +2948,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.4xlarge", "name": "c6gn.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6gn.8xlarge": { "bandwidth": 50, @@ -2982,11 +2982,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.8xlarge", "name": "c6gn.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6gn.large": { "bandwidth": 25, @@ -3016,11 +3016,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.large", "name": "c6gn.large", - "ram": 4096 + "ram": 4096, }, "c6gn.medium": { "bandwidth": 25, @@ -3050,11 +3050,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.medium", "name": "c6gn.medium", - "ram": 2048 + "ram": 2048, }, "c6gn.xlarge": { "bandwidth": 25, @@ -3084,11 +3084,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6gn.xlarge", "name": "c6gn.xlarge", - "ram": 8192 + "ram": 8192, }, "c6i.12xlarge": { "bandwidth": 18750, @@ -3119,11 +3119,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.12xlarge", "name": "c6i.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6i.16xlarge": { "bandwidth": 25000, @@ -3154,11 +3154,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.16xlarge", "name": "c6i.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6i.24xlarge": { "bandwidth": 37500, @@ -3189,11 +3189,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.24xlarge", "name": "c6i.24xlarge", - "ram": 196608 + "ram": 196608, }, "c6i.2xlarge": { "bandwidth": 12500, @@ -3224,11 +3224,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.2xlarge", "name": "c6i.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6i.32xlarge": { "bandwidth": 50000, @@ -3259,11 +3259,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.32xlarge", "name": "c6i.32xlarge", - "ram": 262144 + "ram": 262144, }, "c6i.4xlarge": { "bandwidth": 12500, @@ -3294,11 +3294,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.4xlarge", "name": "c6i.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6i.8xlarge": { "bandwidth": 12500, @@ -3329,11 +3329,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.8xlarge", "name": "c6i.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6i.large": { "bandwidth": 12500, @@ -3364,11 +3364,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.large", "name": "c6i.large", - "ram": 4096 + "ram": 4096, }, "c6i.xlarge": { "bandwidth": 12500, @@ -3399,11 +3399,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6i.xlarge", "name": "c6i.xlarge", - "ram": 8192 + "ram": 8192, }, "c6id.12xlarge": { "bandwidth": 18750, @@ -3434,11 +3434,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.12xlarge", "name": "c6id.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6id.16xlarge": { "bandwidth": 25000, @@ -3469,11 +3469,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.16xlarge", "name": "c6id.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6id.24xlarge": { "bandwidth": 37500, @@ -3499,16 +3499,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-southeast-1", + "regionCode": "sa-east-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.24xlarge", "name": "c6id.24xlarge", - "ram": 196608 + "ram": 196608, }, "c6id.2xlarge": { "bandwidth": 12500, @@ -3539,11 +3539,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.2xlarge", "name": "c6id.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6id.32xlarge": { "bandwidth": 50000, @@ -3569,16 +3569,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-west-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.32xlarge", "name": "c6id.32xlarge", - "ram": 262144 + "ram": 262144, }, "c6id.4xlarge": { "bandwidth": 12500, @@ -3609,11 +3609,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.4xlarge", "name": "c6id.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6id.8xlarge": { "bandwidth": 12500, @@ -3644,11 +3644,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.8xlarge", "name": "c6id.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6id.large": { "bandwidth": 12500, @@ -3679,11 +3679,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.large", "name": "c6id.large", - "ram": 4096 + "ram": 4096, }, "c6id.xlarge": { "bandwidth": 12500, @@ -3714,11 +3714,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6id.xlarge", "name": "c6id.xlarge", - "ram": 8192 + "ram": 8192, }, "c6in.12xlarge": { "bandwidth": 75000, @@ -3749,11 +3749,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.12xlarge", "name": "c6in.12xlarge", - "ram": 98304 + "ram": 98304, }, "c6in.16xlarge": { "bandwidth": 100000, @@ -3784,11 +3784,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.16xlarge", "name": "c6in.16xlarge", - "ram": 131072 + "ram": 131072, }, "c6in.24xlarge": { "bandwidth": 150000, @@ -3819,11 +3819,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.24xlarge", "name": "c6in.24xlarge", - "ram": 196608 + "ram": 196608, }, "c6in.2xlarge": { "bandwidth": 40000, @@ -3854,11 +3854,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.2xlarge", "name": "c6in.2xlarge", - "ram": 16384 + "ram": 16384, }, "c6in.32xlarge": { "bandwidth": 200000, @@ -3889,11 +3889,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.32xlarge", "name": "c6in.32xlarge", - "ram": 262144 + "ram": 262144, }, "c6in.4xlarge": { "bandwidth": 50000, @@ -3924,11 +3924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.4xlarge", "name": "c6in.4xlarge", - "ram": 32768 + "ram": 32768, }, "c6in.8xlarge": { "bandwidth": 50000, @@ -3959,11 +3959,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.8xlarge", "name": "c6in.8xlarge", - "ram": 65536 + "ram": 65536, }, "c6in.large": { "bandwidth": 25000, @@ -3994,11 +3994,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.large", "name": "c6in.large", - "ram": 4096 + "ram": 4096, }, "c6in.xlarge": { "bandwidth": 30000, @@ -4029,11 +4029,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c6in.xlarge", "name": "c6in.xlarge", - "ram": 8192 + "ram": 8192, }, "c7a.12xlarge": { "bandwidth": 18750, @@ -4064,11 +4064,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.12xlarge", "name": "c7a.12xlarge", - "ram": 98304 + "ram": 98304, }, "c7a.16xlarge": { "bandwidth": 25000, @@ -4099,11 +4099,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.16xlarge", "name": "c7a.16xlarge", - "ram": 131072 + "ram": 131072, }, "c7a.24xlarge": { "bandwidth": 37500, @@ -4134,11 +4134,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.24xlarge", "name": "c7a.24xlarge", - "ram": 196608 + "ram": 196608, }, "c7a.2xlarge": { "bandwidth": 12500, @@ -4169,11 +4169,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.2xlarge", "name": "c7a.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7a.32xlarge": { "bandwidth": 50000, @@ -4204,11 +4204,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.32xlarge", "name": "c7a.32xlarge", - "ram": 262144 + "ram": 262144, }, "c7a.48xlarge": { "bandwidth": 50000, @@ -4239,11 +4239,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.48xlarge", "name": "c7a.48xlarge", - "ram": 393216 + "ram": 393216, }, "c7a.4xlarge": { "bandwidth": 12500, @@ -4274,11 +4274,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.4xlarge", "name": "c7a.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7a.8xlarge": { "bandwidth": 12500, @@ -4309,11 +4309,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.8xlarge", "name": "c7a.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7a.large": { "bandwidth": 12500, @@ -4344,11 +4344,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.large", "name": "c7a.large", - "ram": 4096 + "ram": 4096, }, "c7a.medium": { "bandwidth": 12500, @@ -4379,11 +4379,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.medium", "name": "c7a.medium", - "ram": 2048 + "ram": 2048, }, "c7a.xlarge": { "bandwidth": 12500, @@ -4414,11 +4414,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7a.xlarge", "name": "c7a.xlarge", - "ram": 8192 + "ram": 8192, }, "c7g.12xlarge": { "bandwidth": 22500, @@ -4448,11 +4448,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.12xlarge", "name": "c7g.12xlarge", - "ram": 98304 + "ram": 98304, }, "c7g.16xlarge": { "bandwidth": 30, @@ -4482,11 +4482,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.16xlarge", "name": "c7g.16xlarge", - "ram": 131072 + "ram": 131072, }, "c7g.2xlarge": { "bandwidth": 15, @@ -4516,11 +4516,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.2xlarge", "name": "c7g.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7g.4xlarge": { "bandwidth": 15, @@ -4550,11 +4550,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.4xlarge", "name": "c7g.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7g.8xlarge": { "bandwidth": 15, @@ -4584,11 +4584,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.8xlarge", "name": "c7g.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7g.large": { "bandwidth": 12500, @@ -4618,11 +4618,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.large", "name": "c7g.large", - "ram": 4096 + "ram": 4096, }, "c7g.medium": { "bandwidth": 12500, @@ -4652,11 +4652,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.medium", "name": "c7g.medium", - "ram": 2048 + "ram": 2048, }, "c7g.xlarge": { "bandwidth": 12500, @@ -4686,11 +4686,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7g.xlarge", "name": "c7g.xlarge", - "ram": 8192 + "ram": 8192, }, "c7gd.12xlarge": { "bandwidth": 22500, @@ -4720,11 +4720,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.12xlarge", "name": "c7gd.12xlarge", - "ram": 98304 + "ram": 98304, }, "c7gd.16xlarge": { "bandwidth": 30, @@ -4754,11 +4754,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.16xlarge", "name": "c7gd.16xlarge", - "ram": 131072 + "ram": 131072, }, "c7gd.2xlarge": { "bandwidth": 15, @@ -4788,11 +4788,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.2xlarge", "name": "c7gd.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7gd.4xlarge": { "bandwidth": 15, @@ -4822,11 +4822,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.4xlarge", "name": "c7gd.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7gd.8xlarge": { "bandwidth": 15, @@ -4856,11 +4856,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.8xlarge", "name": "c7gd.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7gd.large": { "bandwidth": 12500, @@ -4890,11 +4890,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.large", "name": "c7gd.large", - "ram": 4096 + "ram": 4096, }, "c7gd.medium": { "bandwidth": 12500, @@ -4924,11 +4924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.medium", "name": "c7gd.medium", - "ram": 2048 + "ram": 2048, }, "c7gd.xlarge": { "bandwidth": 12500, @@ -4958,11 +4958,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gd.xlarge", "name": "c7gd.xlarge", - "ram": 8192 + "ram": 8192, }, "c7gn.12xlarge": { "bandwidth": 150, @@ -4992,11 +4992,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.12xlarge", "name": "c7gn.12xlarge", - "ram": 98304 + "ram": 98304, }, "c7gn.16xlarge": { "bandwidth": 200, @@ -5026,11 +5026,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.16xlarge", "name": "c7gn.16xlarge", - "ram": 131072 + "ram": 131072, }, "c7gn.2xlarge": { "bandwidth": 50, @@ -5060,11 +5060,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.2xlarge", "name": "c7gn.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7gn.4xlarge": { "bandwidth": 50, @@ -5094,11 +5094,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.4xlarge", "name": "c7gn.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7gn.8xlarge": { "bandwidth": 100, @@ -5128,11 +5128,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.8xlarge", "name": "c7gn.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7gn.large": { "bandwidth": 30, @@ -5162,11 +5162,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.large", "name": "c7gn.large", - "ram": 4096 + "ram": 4096, }, "c7gn.medium": { "bandwidth": 25, @@ -5196,11 +5196,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.medium", "name": "c7gn.medium", - "ram": 2048 + "ram": 2048, }, "c7gn.xlarge": { "bandwidth": 40, @@ -5230,11 +5230,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7gn.xlarge", "name": "c7gn.xlarge", - "ram": 8192 + "ram": 8192, }, "c7i-flex.2xlarge": { "bandwidth": 12500, @@ -5265,11 +5265,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i-flex.2xlarge", "name": "c7i-flex.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7i-flex.4xlarge": { "bandwidth": 12500, @@ -5300,11 +5300,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i-flex.4xlarge", "name": "c7i-flex.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7i-flex.8xlarge": { "bandwidth": 12500, @@ -5335,11 +5335,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i-flex.8xlarge", "name": "c7i-flex.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7i-flex.large": { "bandwidth": 12500, @@ -5370,11 +5370,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i-flex.large", "name": "c7i-flex.large", - "ram": 4096 + "ram": 4096, }, "c7i-flex.xlarge": { "bandwidth": 12500, @@ -5405,11 +5405,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i-flex.xlarge", "name": "c7i-flex.xlarge", - "ram": 8192 + "ram": 8192, }, "c7i.12xlarge": { "bandwidth": 18750, @@ -5440,11 +5440,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.12xlarge", "name": "c7i.12xlarge", - "ram": 98304 + "ram": 98304, }, "c7i.16xlarge": { "bandwidth": 25000, @@ -5475,11 +5475,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.16xlarge", "name": "c7i.16xlarge", - "ram": 131072 + "ram": 131072, }, "c7i.24xlarge": { "bandwidth": 37500, @@ -5510,11 +5510,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.24xlarge", "name": "c7i.24xlarge", - "ram": 196608 + "ram": 196608, }, "c7i.2xlarge": { "bandwidth": 12500, @@ -5545,11 +5545,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.2xlarge", "name": "c7i.2xlarge", - "ram": 16384 + "ram": 16384, }, "c7i.48xlarge": { "bandwidth": 50000, @@ -5580,11 +5580,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.48xlarge", "name": "c7i.48xlarge", - "ram": 393216 + "ram": 393216, }, "c7i.4xlarge": { "bandwidth": 12500, @@ -5615,11 +5615,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.4xlarge", "name": "c7i.4xlarge", - "ram": 32768 + "ram": 32768, }, "c7i.8xlarge": { "bandwidth": 12500, @@ -5650,11 +5650,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.8xlarge", "name": "c7i.8xlarge", - "ram": 65536 + "ram": 65536, }, "c7i.large": { "bandwidth": 12500, @@ -5685,11 +5685,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.large", "name": "c7i.large", - "ram": 4096 + "ram": 4096, }, "c7i.xlarge": { "bandwidth": 12500, @@ -5720,11 +5720,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "c7i.xlarge", "name": "c7i.xlarge", - "ram": 8192 + "ram": 8192, }, "cc2.8xlarge": { "bandwidth": 10, @@ -5753,11 +5753,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 840 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "cc2.8xlarge", "name": "cc2.8xlarge", - "ram": 61952 + "ram": 61952, }, "cr1.8xlarge": { "bandwidth": 10, @@ -5780,11 +5780,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 120 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "cr1.8xlarge", "name": "cr1.8xlarge", - "ram": 249856 + "ram": 249856, }, "d2.2xlarge": { "bandwidth": None, @@ -5815,11 +5815,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "6 x 2000 HDD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d2.2xlarge", "name": "d2.2xlarge", - "ram": 62464 + "ram": 62464, }, "d2.4xlarge": { "bandwidth": None, @@ -5850,11 +5850,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "12 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d2.4xlarge", "name": "d2.4xlarge", - "ram": 124928 + "ram": 124928, }, "d2.8xlarge": { "bandwidth": 10, @@ -5885,11 +5885,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "24 x 2000 HDD", "vcpu": "36", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d2.8xlarge", "name": "d2.8xlarge", - "ram": 249856 + "ram": 249856, }, "d2.xlarge": { "bandwidth": None, @@ -5920,11 +5920,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "3 x 2000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d2.xlarge", "name": "d2.xlarge", - "ram": 31232 + "ram": 31232, }, "d3.2xlarge": { "bandwidth": 15, @@ -5955,11 +5955,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "6 x 2000 HDD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3.2xlarge", "name": "d3.2xlarge", - "ram": 65536 + "ram": 65536, }, "d3.4xlarge": { "bandwidth": 15, @@ -5990,11 +5990,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "12 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3.4xlarge", "name": "d3.4xlarge", - "ram": 131072 + "ram": 131072, }, "d3.8xlarge": { "bandwidth": 25, @@ -6025,11 +6025,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "24 x 2000 HDD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3.8xlarge", "name": "d3.8xlarge", - "ram": 262144 + "ram": 262144, }, "d3.xlarge": { "bandwidth": 15, @@ -6060,11 +6060,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "3 x 2000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3.xlarge", "name": "d3.xlarge", - "ram": 32768 + "ram": 32768, }, "d3en.12xlarge": { "bandwidth": 75, @@ -6095,11 +6095,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "24 x 14000 HDD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.12xlarge", "name": "d3en.12xlarge", - "ram": 196608 + "ram": 196608, }, "d3en.2xlarge": { "bandwidth": 25, @@ -6130,11 +6130,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 14000 HDD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.2xlarge", "name": "d3en.2xlarge", - "ram": 32768 + "ram": 32768, }, "d3en.4xlarge": { "bandwidth": 25, @@ -6165,11 +6165,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 14000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.4xlarge", "name": "d3en.4xlarge", - "ram": 65536 + "ram": 65536, }, "d3en.6xlarge": { "bandwidth": 40, @@ -6200,11 +6200,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "12 x 14000 HDD", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.6xlarge", "name": "d3en.6xlarge", - "ram": 98304 + "ram": 98304, }, "d3en.8xlarge": { "bandwidth": 50, @@ -6235,11 +6235,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "16 x 14000 HDD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.8xlarge", "name": "d3en.8xlarge", - "ram": 131072 + "ram": 131072, }, "d3en.xlarge": { "bandwidth": 25, @@ -6270,11 +6270,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 14000 HDD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "d3en.xlarge", "name": "d3en.xlarge", - "ram": 16384 + "ram": 16384, }, "dl1.24xlarge": { "bandwidth": 400, @@ -6305,11 +6305,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1000 GB NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "dl1.24xlarge", "name": "dl1.24xlarge", - "ram": 786432 + "ram": 786432, }, "dl2q.24xlarge": { "bandwidth": 100, @@ -6340,11 +6340,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "dl2q.24xlarge", "name": "dl2q.24xlarge", - "ram": 786432 + "ram": 786432, }, "f1.16xlarge": { "bandwidth": 25, @@ -6375,11 +6375,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 940 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "f1.16xlarge", "name": "f1.16xlarge", - "ram": 999424 + "ram": 999424, }, "f1.2xlarge": { "bandwidth": 10, @@ -6410,11 +6410,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 470 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "f1.2xlarge", "name": "f1.2xlarge", - "ram": 124928 + "ram": 124928, }, "f1.4xlarge": { "bandwidth": 10, @@ -6445,11 +6445,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 940 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "f1.4xlarge", "name": "f1.4xlarge", - "ram": 249856 + "ram": 249856, }, "g2.2xlarge": { "bandwidth": None, @@ -6481,11 +6481,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 60 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g2.2xlarge", "name": "g2.2xlarge", - "ram": 15360 + "ram": 15360, }, "g2.8xlarge": { "bandwidth": None, @@ -6517,11 +6517,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 120 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g2.8xlarge", "name": "g2.8xlarge", - "ram": 61440 + "ram": 61440, }, "g3.16xlarge": { "bandwidth": 20, @@ -6553,11 +6553,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g3.16xlarge", "name": "g3.16xlarge", - "ram": 499712 + "ram": 499712, }, "g3.4xlarge": { "bandwidth": 10, @@ -6589,11 +6589,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g3.4xlarge", "name": "g3.4xlarge", - "ram": 124928 + "ram": 124928, }, "g3.8xlarge": { "bandwidth": 10, @@ -6625,11 +6625,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g3.8xlarge", "name": "g3.8xlarge", - "ram": 249856 + "ram": 249856, }, "g3s.xlarge": { "bandwidth": 10, @@ -6660,11 +6660,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g3s.xlarge", "name": "g3s.xlarge", - "ram": 31232 + "ram": 31232, }, "g4ad.16xlarge": { "bandwidth": 25, @@ -6696,11 +6696,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2400 GB NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4ad.16xlarge", "name": "g4ad.16xlarge", - "ram": 262144 + "ram": 262144, }, "g4ad.2xlarge": { "bandwidth": 10, @@ -6732,11 +6732,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "300 GB NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4ad.2xlarge", "name": "g4ad.2xlarge", - "ram": 32768 + "ram": 32768, }, "g4ad.4xlarge": { "bandwidth": 10, @@ -6768,11 +6768,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "600 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4ad.4xlarge", "name": "g4ad.4xlarge", - "ram": 65536 + "ram": 65536, }, "g4ad.8xlarge": { "bandwidth": 15, @@ -6804,11 +6804,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1200 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4ad.8xlarge", "name": "g4ad.8xlarge", - "ram": 131072 + "ram": 131072, }, "g4ad.xlarge": { "bandwidth": 10, @@ -6840,11 +6840,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "150 GB NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4ad.xlarge", "name": "g4ad.xlarge", - "ram": 16384 + "ram": 16384, }, "g4dn.12xlarge": { "bandwidth": 50, @@ -6876,11 +6876,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "900 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.12xlarge", "name": "g4dn.12xlarge", - "ram": 196608 + "ram": 196608, }, "g4dn.16xlarge": { "bandwidth": 50, @@ -6912,11 +6912,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "900 GB NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.16xlarge", "name": "g4dn.16xlarge", - "ram": 262144 + "ram": 262144, }, "g4dn.2xlarge": { "bandwidth": 25, @@ -6948,11 +6948,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "225 GB NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.2xlarge", "name": "g4dn.2xlarge", - "ram": 32768 + "ram": 32768, }, "g4dn.4xlarge": { "bandwidth": 25, @@ -6984,11 +6984,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "225 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.4xlarge", "name": "g4dn.4xlarge", - "ram": 65536 + "ram": 65536, }, "g4dn.8xlarge": { "bandwidth": 50, @@ -7020,11 +7020,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "900 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.8xlarge", "name": "g4dn.8xlarge", - "ram": 131072 + "ram": 131072, }, "g4dn.xlarge": { "bandwidth": 25, @@ -7056,11 +7056,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "125 GB NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g4dn.xlarge", "name": "g4dn.xlarge", - "ram": 16384 + "ram": 16384, }, "g5.12xlarge": { "bandwidth": 40, @@ -7092,11 +7092,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3800 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.12xlarge", "name": "g5.12xlarge", - "ram": 196608 + "ram": 196608, }, "g5.16xlarge": { "bandwidth": 25, @@ -7123,16 +7123,16 @@ "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-2", + "regionCode": "eu-west-2", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 GB NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.16xlarge", "name": "g5.16xlarge", - "ram": 262144 + "ram": 262144, }, "g5.24xlarge": { "bandwidth": 50, @@ -7164,11 +7164,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3800 GB NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.24xlarge", "name": "g5.24xlarge", - "ram": 393216 + "ram": 393216, }, "g5.2xlarge": { "bandwidth": 10, @@ -7200,11 +7200,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 450 GB NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.2xlarge", "name": "g5.2xlarge", - "ram": 32768 + "ram": 32768, }, "g5.48xlarge": { "bandwidth": 100, @@ -7236,11 +7236,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 3800 GB NVMe SSD", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.48xlarge", "name": "g5.48xlarge", - "ram": 786432 + "ram": 786432, }, "g5.4xlarge": { "bandwidth": 25, @@ -7272,11 +7272,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 600 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.4xlarge", "name": "g5.4xlarge", - "ram": 65536 + "ram": 65536, }, "g5.8xlarge": { "bandwidth": 25, @@ -7303,16 +7303,16 @@ "physicalProcessor": "AMD EPYC 7R32", "processorArchitecture": "64-bit", "processorFeatures": "AMD Turbo; AVX; AVX2", - "regionCode": "ap-northeast-2", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 900 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.8xlarge", "name": "g5.8xlarge", - "ram": 131072 + "ram": 131072, }, "g5.xlarge": { "bandwidth": 10, @@ -7344,11 +7344,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 250 GB NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5.xlarge", "name": "g5.xlarge", - "ram": 16384 + "ram": 16384, }, "g5g.16xlarge": { "bandwidth": 25, @@ -7379,11 +7379,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5g.16xlarge", "name": "g5g.16xlarge", - "ram": 131072 + "ram": 131072, }, "g5g.2xlarge": { "bandwidth": 10, @@ -7414,11 +7414,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5g.2xlarge", "name": "g5g.2xlarge", - "ram": 16384 + "ram": 16384, }, "g5g.4xlarge": { "bandwidth": 10, @@ -7449,11 +7449,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5g.4xlarge", "name": "g5g.4xlarge", - "ram": 32768 + "ram": 32768, }, "g5g.8xlarge": { "bandwidth": 12, @@ -7484,11 +7484,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5g.8xlarge", "name": "g5g.8xlarge", - "ram": 65536 + "ram": 65536, }, "g5g.xlarge": { "bandwidth": 10, @@ -7519,11 +7519,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g5g.xlarge", "name": "g5g.xlarge", - "ram": 8192 + "ram": 8192, }, "g6.12xlarge": { "bandwidth": 40, @@ -7555,11 +7555,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 X 940 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.12xlarge", "name": "g6.12xlarge", - "ram": 196608 + "ram": 196608, }, "g6.16xlarge": { "bandwidth": 25, @@ -7591,11 +7591,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 940 GB NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.16xlarge", "name": "g6.16xlarge", - "ram": 262144 + "ram": 262144, }, "g6.24xlarge": { "bandwidth": 50, @@ -7627,11 +7627,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 X 940 GB NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.24xlarge", "name": "g6.24xlarge", - "ram": 393216 + "ram": 393216, }, "g6.2xlarge": { "bandwidth": 10, @@ -7663,11 +7663,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 450 GB NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.2xlarge", "name": "g6.2xlarge", - "ram": 32768 + "ram": 32768, }, "g6.48xlarge": { "bandwidth": 100, @@ -7699,11 +7699,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 940 NVMe SSD", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.48xlarge", "name": "g6.48xlarge", - "ram": 786432 + "ram": 786432, }, "g6.4xlarge": { "bandwidth": 25, @@ -7735,11 +7735,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 600 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.4xlarge", "name": "g6.4xlarge", - "ram": 65536 + "ram": 65536, }, "g6.8xlarge": { "bandwidth": 25, @@ -7771,11 +7771,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 450 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.8xlarge", "name": "g6.8xlarge", - "ram": 131072 + "ram": 131072, }, "g6.xlarge": { "bandwidth": 10, @@ -7807,11 +7807,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 250 GB NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "g6.xlarge", "name": "g6.xlarge", - "ram": 16384 + "ram": 16384, }, "gr6.4xlarge": { "bandwidth": 25, @@ -7843,11 +7843,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 600 GB NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "gr6.4xlarge", "name": "gr6.4xlarge", - "ram": 131072 + "ram": 131072, }, "gr6.8xlarge": { "bandwidth": 25, @@ -7879,11 +7879,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 450 GB NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "gr6.8xlarge", "name": "gr6.8xlarge", - "ram": 262144 + "ram": 262144, }, "h1.16xlarge": { "bandwidth": 25, @@ -7914,11 +7914,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 2000 HDD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "h1.16xlarge", "name": "h1.16xlarge", - "ram": 262144 + "ram": 262144, }, "h1.2xlarge": { "bandwidth": 10, @@ -7949,11 +7949,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 2000 HDD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "h1.2xlarge", "name": "h1.2xlarge", - "ram": 32768 + "ram": 32768, }, "h1.4xlarge": { "bandwidth": 10, @@ -7984,11 +7984,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "h1.4xlarge", "name": "h1.4xlarge", - "ram": 65536 + "ram": 65536, }, "h1.8xlarge": { "bandwidth": 10, @@ -8019,11 +8019,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 2000 HDD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "h1.8xlarge", "name": "h1.8xlarge", - "ram": 131072 + "ram": 131072, }, "hpc6a.48xlarge": { "bandwidth": 100, @@ -8054,11 +8054,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc6a.48xlarge", "name": "hpc6a.48xlarge", - "ram": 393216 + "ram": 393216, }, "hpc6id.32xlarge": { "bandwidth": 200, @@ -8089,11 +8089,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 3800 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc6id.32xlarge", "name": "hpc6id.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "hpc7a.12xlarge": { "bandwidth": 300, @@ -8124,11 +8124,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7a.12xlarge", "name": "hpc7a.12xlarge", - "ram": 786432 + "ram": 786432, }, "hpc7a.24xlarge": { "bandwidth": 300, @@ -8159,11 +8159,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7a.24xlarge", "name": "hpc7a.24xlarge", - "ram": 786432 + "ram": 786432, }, "hpc7a.48xlarge": { "bandwidth": 300, @@ -8194,11 +8194,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7a.48xlarge", "name": "hpc7a.48xlarge", - "ram": 786432 + "ram": 786432, }, "hpc7a.96xlarge": { "bandwidth": 300, @@ -8229,11 +8229,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7a.96xlarge", "name": "hpc7a.96xlarge", - "ram": 786432 + "ram": 786432, }, "hpc7g.16xlarge": { "bandwidth": 200, @@ -8263,11 +8263,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7g.16xlarge", "name": "hpc7g.16xlarge", - "ram": 131072 + "ram": 131072, }, "hpc7g.4xlarge": { "bandwidth": 200, @@ -8297,11 +8297,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7g.4xlarge", "name": "hpc7g.4xlarge", - "ram": 131072 + "ram": 131072, }, "hpc7g.8xlarge": { "bandwidth": 200, @@ -8331,11 +8331,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hpc7g.8xlarge", "name": "hpc7g.8xlarge", - "ram": 131072 + "ram": 131072, }, "hs1.8xlarge": { "bandwidth": 10, @@ -8364,11 +8364,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "24 x 2000 HDD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "hs1.8xlarge", "name": "hs1.8xlarge", - "ram": 119808 + "ram": 119808, }, "i2.2xlarge": { "bandwidth": None, @@ -8399,11 +8399,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 800 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i2.2xlarge", "name": "i2.2xlarge", - "ram": 62464 + "ram": 62464, }, "i2.4xlarge": { "bandwidth": None, @@ -8434,11 +8434,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 800 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i2.4xlarge", "name": "i2.4xlarge", - "ram": 124928 + "ram": 124928, }, "i2.8xlarge": { "bandwidth": 10, @@ -8469,11 +8469,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 800 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i2.8xlarge", "name": "i2.8xlarge", - "ram": 249856 + "ram": 249856, }, "i2.large": { "bandwidth": None, @@ -8504,11 +8504,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 800 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i2.large", "name": "i2.large", - "ram": 15360 + "ram": 15360, }, "i2.xlarge": { "bandwidth": None, @@ -8539,11 +8539,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 800 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i2.xlarge", "name": "i2.xlarge", - "ram": 31232 + "ram": 31232, }, "i3.16xlarge": { "bandwidth": 20, @@ -8574,11 +8574,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.16xlarge", "name": "i3.16xlarge", - "ram": 499712 + "ram": 499712, }, "i3.2xlarge": { "bandwidth": 10, @@ -8609,11 +8609,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.2xlarge", "name": "i3.2xlarge", - "ram": 62464 + "ram": 62464, }, "i3.4xlarge": { "bandwidth": 10, @@ -8644,11 +8644,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.4xlarge", "name": "i3.4xlarge", - "ram": 124928 + "ram": 124928, }, "i3.8xlarge": { "bandwidth": 10, @@ -8679,11 +8679,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.8xlarge", "name": "i3.8xlarge", - "ram": 249856 + "ram": 249856, }, "i3.large": { "bandwidth": 10, @@ -8714,11 +8714,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.large", "name": "i3.large", - "ram": 15616 + "ram": 15616, }, "i3.xlarge": { "bandwidth": 10, @@ -8749,11 +8749,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3.xlarge", "name": "i3.xlarge", - "ram": 31232 + "ram": 31232, }, "i3en.12xlarge": { "bandwidth": 50, @@ -8784,11 +8784,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 7500 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.12xlarge", "name": "i3en.12xlarge", - "ram": 393216 + "ram": 393216, }, "i3en.24xlarge": { "bandwidth": 100, @@ -8819,11 +8819,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 7500 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.24xlarge", "name": "i3en.24xlarge", - "ram": 786432 + "ram": 786432, }, "i3en.2xlarge": { "bandwidth": 25, @@ -8854,11 +8854,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 2500 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.2xlarge", "name": "i3en.2xlarge", - "ram": 65536 + "ram": 65536, }, "i3en.3xlarge": { "bandwidth": 25, @@ -8889,11 +8889,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 7500 NVMe SSD", "vcpu": "12", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.3xlarge", "name": "i3en.3xlarge", - "ram": 98304 + "ram": 98304, }, "i3en.6xlarge": { "bandwidth": 25, @@ -8924,11 +8924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 7500 NVMe SSD", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.6xlarge", "name": "i3en.6xlarge", - "ram": 196608 + "ram": 196608, }, "i3en.large": { "bandwidth": 25, @@ -8959,11 +8959,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1250 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.large", "name": "i3en.large", - "ram": 16384 + "ram": 16384, }, "i3en.xlarge": { "bandwidth": 25, @@ -8994,11 +8994,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 2500 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i3en.xlarge", "name": "i3en.xlarge", - "ram": 32768 + "ram": 32768, }, "i4g.16xlarge": { "bandwidth": 37500, @@ -9028,11 +9028,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 3750 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.16xlarge", "name": "i4g.16xlarge", - "ram": 524288 + "ram": 524288, }, "i4g.2xlarge": { "bandwidth": 12, @@ -9062,11 +9062,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1875 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.2xlarge", "name": "i4g.2xlarge", - "ram": 65536 + "ram": 65536, }, "i4g.4xlarge": { "bandwidth": 25, @@ -9096,11 +9096,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3750 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.4xlarge", "name": "i4g.4xlarge", - "ram": 131072 + "ram": 131072, }, "i4g.8xlarge": { "bandwidth": 18750, @@ -9130,11 +9130,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 3750 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.8xlarge", "name": "i4g.8xlarge", - "ram": 262144 + "ram": 262144, }, "i4g.large": { "bandwidth": 10, @@ -9164,11 +9164,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 468 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.large", "name": "i4g.large", - "ram": 16384 + "ram": 16384, }, "i4g.xlarge": { "bandwidth": 10, @@ -9198,11 +9198,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 937 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4g.xlarge", "name": "i4g.xlarge", - "ram": 32768 + "ram": 32768, }, "i4i.12xlarge": { "bandwidth": 28125, @@ -9233,11 +9233,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "3 x 3750 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.12xlarge", "name": "i4i.12xlarge", - "ram": 393216 + "ram": 393216, }, "i4i.16xlarge": { "bandwidth": 35000, @@ -9268,11 +9268,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 3750 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.16xlarge", "name": "i4i.16xlarge", - "ram": 524288 + "ram": 524288, }, "i4i.24xlarge": { "bandwidth": 56250, @@ -9303,11 +9303,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "6 x 3750 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.24xlarge", "name": "i4i.24xlarge", - "ram": 786432 + "ram": 786432, }, "i4i.2xlarge": { "bandwidth": 12, @@ -9338,11 +9338,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1875 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.2xlarge", "name": "i4i.2xlarge", - "ram": 65536 + "ram": 65536, }, "i4i.32xlarge": { "bandwidth": 75000, @@ -9373,11 +9373,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 3750 SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.32xlarge", "name": "i4i.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "i4i.4xlarge": { "bandwidth": 25, @@ -9408,11 +9408,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3750 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.4xlarge", "name": "i4i.4xlarge", - "ram": 131072 + "ram": 131072, }, "i4i.8xlarge": { "bandwidth": 18750, @@ -9443,11 +9443,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 3750 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.8xlarge", "name": "i4i.8xlarge", - "ram": 262144 + "ram": 262144, }, "i4i.large": { "bandwidth": 10, @@ -9478,11 +9478,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 468 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.large", "name": "i4i.large", - "ram": 16384 + "ram": 16384, }, "i4i.xlarge": { "bandwidth": 10, @@ -9513,11 +9513,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 937 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "i4i.xlarge", "name": "i4i.xlarge", - "ram": 32768 + "ram": 32768, }, "im4gn.16xlarge": { "bandwidth": 100, @@ -9547,11 +9547,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 7500 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.16xlarge", "name": "im4gn.16xlarge", - "ram": 262144 + "ram": 262144, }, "im4gn.2xlarge": { "bandwidth": 25, @@ -9581,11 +9581,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3750 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.2xlarge", "name": "im4gn.2xlarge", - "ram": 32768 + "ram": 32768, }, "im4gn.4xlarge": { "bandwidth": 25, @@ -9615,11 +9615,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 7500 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.4xlarge", "name": "im4gn.4xlarge", - "ram": 65536 + "ram": 65536, }, "im4gn.8xlarge": { "bandwidth": 50, @@ -9649,11 +9649,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 7500 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.8xlarge", "name": "im4gn.8xlarge", - "ram": 131072 + "ram": 131072, }, "im4gn.large": { "bandwidth": 25, @@ -9683,11 +9683,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 937 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.large", "name": "im4gn.large", - "ram": 8192 + "ram": 8192, }, "im4gn.xlarge": { "bandwidth": 25, @@ -9717,11 +9717,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1875 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "im4gn.xlarge", "name": "im4gn.xlarge", - "ram": 16384 + "ram": 16384, }, "inf1.24xlarge": { "bandwidth": 100, @@ -9750,11 +9750,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf1.24xlarge", "name": "inf1.24xlarge", - "ram": 196608 + "ram": 196608, }, "inf1.2xlarge": { "bandwidth": 25, @@ -9783,11 +9783,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf1.2xlarge", "name": "inf1.2xlarge", - "ram": 16384 + "ram": 16384, }, "inf1.6xlarge": { "bandwidth": 25, @@ -9816,11 +9816,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf1.6xlarge", "name": "inf1.6xlarge", - "ram": 49152 + "ram": 49152, }, "inf1.xlarge": { "bandwidth": 25, @@ -9849,11 +9849,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf1.xlarge", "name": "inf1.xlarge", - "ram": 8192 + "ram": 8192, }, "inf2.24xlarge": { "bandwidth": 50, @@ -9884,11 +9884,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf2.24xlarge", "name": "inf2.24xlarge", - "ram": 393216 + "ram": 393216, }, "inf2.48xlarge": { "bandwidth": 100, @@ -9919,11 +9919,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf2.48xlarge", "name": "inf2.48xlarge", - "ram": 786432 + "ram": 786432, }, "inf2.8xlarge": { "bandwidth": 25, @@ -9954,11 +9954,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf2.8xlarge", "name": "inf2.8xlarge", - "ram": 131072 + "ram": 131072, }, "inf2.xlarge": { "bandwidth": 15, @@ -9989,11 +9989,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "inf2.xlarge", "name": "inf2.xlarge", - "ram": 16384 + "ram": 16384, }, "is4gen.2xlarge": { "bandwidth": 25, @@ -10023,11 +10023,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 7500 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.2xlarge", "name": "is4gen.2xlarge", - "ram": 49152 + "ram": 49152, }, "is4gen.4xlarge": { "bandwidth": 25, @@ -10057,11 +10057,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 7500 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.4xlarge", "name": "is4gen.4xlarge", - "ram": 98304 + "ram": 98304, }, "is4gen.8xlarge": { "bandwidth": 50, @@ -10091,11 +10091,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 7500 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.8xlarge", "name": "is4gen.8xlarge", - "ram": 196608 + "ram": 196608, }, "is4gen.large": { "bandwidth": 25, @@ -10125,11 +10125,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1875 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.large", "name": "is4gen.large", - "ram": 12288 + "ram": 12288, }, "is4gen.medium": { "bandwidth": 25, @@ -10159,11 +10159,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 937 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.medium", "name": "is4gen.medium", - "ram": 6144 + "ram": 6144, }, "is4gen.xlarge": { "bandwidth": 25, @@ -10193,11 +10193,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 3750 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "is4gen.xlarge", "name": "is4gen.xlarge", - "ram": 24576 + "ram": 24576, }, "m1.large": { "bandwidth": None, @@ -10225,11 +10225,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 420 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m1.large", "name": "m1.large", - "ram": 7680 + "ram": 7680, }, "m1.medium": { "bandwidth": None, @@ -10257,11 +10257,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 410 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m1.medium", "name": "m1.medium", - "ram": 3840 + "ram": 3840, }, "m1.small": { "bandwidth": None, @@ -10289,11 +10289,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 160 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m1.small", "name": "m1.small", - "ram": 1740 + "ram": 1740, }, "m1.xlarge": { "bandwidth": None, @@ -10321,11 +10321,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 420 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m1.xlarge", "name": "m1.xlarge", - "ram": 15360 + "ram": 15360, }, "m2.2xlarge": { "bandwidth": None, @@ -10353,11 +10353,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 850 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m2.2xlarge", "name": "m2.2xlarge", - "ram": 35020 + "ram": 35020, }, "m2.4xlarge": { "bandwidth": None, @@ -10385,11 +10385,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 840 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m2.4xlarge", "name": "m2.4xlarge", - "ram": 70041 + "ram": 70041, }, "m2.xlarge": { "bandwidth": None, @@ -10417,11 +10417,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 420 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m2.xlarge", "name": "m2.xlarge", - "ram": 17510 + "ram": 17510, }, "m3.2xlarge": { "bandwidth": None, @@ -10452,11 +10452,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 80 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m3.2xlarge", "name": "m3.2xlarge", - "ram": 30720 + "ram": 30720, }, "m3.large": { "bandwidth": None, @@ -10486,11 +10486,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 32 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m3.large", "name": "m3.large", - "ram": 7680 + "ram": 7680, }, "m3.medium": { "bandwidth": None, @@ -10520,11 +10520,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 4 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m3.medium", "name": "m3.medium", - "ram": 3840 + "ram": 3840, }, "m3.xlarge": { "bandwidth": None, @@ -10555,11 +10555,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 40 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m3.xlarge", "name": "m3.xlarge", - "ram": 15360 + "ram": 15360, }, "m4.10xlarge": { "bandwidth": 10, @@ -10590,11 +10590,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "40", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.10xlarge", "name": "m4.10xlarge", - "ram": 163840 + "ram": 163840, }, "m4.16xlarge": { "bandwidth": 20, @@ -10625,11 +10625,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.16xlarge", "name": "m4.16xlarge", - "ram": 262144 + "ram": 262144, }, "m4.2xlarge": { "bandwidth": None, @@ -10660,11 +10660,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.2xlarge", "name": "m4.2xlarge", - "ram": 32768 + "ram": 32768, }, "m4.4xlarge": { "bandwidth": None, @@ -10695,11 +10695,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.4xlarge", "name": "m4.4xlarge", - "ram": 65536 + "ram": 65536, }, "m4.large": { "bandwidth": None, @@ -10730,11 +10730,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.large", "name": "m4.large", - "ram": 8192 + "ram": 8192, }, "m4.xlarge": { "bandwidth": None, @@ -10765,11 +10765,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m4.xlarge", "name": "m4.xlarge", - "ram": 16384 + "ram": 16384, }, "m5.12xlarge": { "bandwidth": 10, @@ -10800,11 +10800,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.12xlarge", "name": "m5.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5.16xlarge": { "bandwidth": 20, @@ -10835,11 +10835,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.16xlarge", "name": "m5.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5.24xlarge": { "bandwidth": 25, @@ -10870,11 +10870,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.24xlarge", "name": "m5.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5.2xlarge": { "bandwidth": 10, @@ -10905,11 +10905,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.2xlarge", "name": "m5.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5.4xlarge": { "bandwidth": 10, @@ -10940,11 +10940,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.4xlarge", "name": "m5.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5.8xlarge": { "bandwidth": 10, @@ -10975,11 +10975,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.8xlarge", "name": "m5.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5.large": { "bandwidth": 10, @@ -11010,11 +11010,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.large", "name": "m5.large", - "ram": 8192 + "ram": 8192, }, "m5.xlarge": { "bandwidth": 10, @@ -11045,11 +11045,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5.xlarge", "name": "m5.xlarge", - "ram": 16384 + "ram": 16384, }, "m5a.12xlarge": { "bandwidth": 10, @@ -11080,11 +11080,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.12xlarge", "name": "m5a.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5a.16xlarge": { "bandwidth": 12, @@ -11115,11 +11115,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.16xlarge", "name": "m5a.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5a.24xlarge": { "bandwidth": 20, @@ -11150,11 +11150,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.24xlarge", "name": "m5a.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5a.2xlarge": { "bandwidth": 10, @@ -11185,11 +11185,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.2xlarge", "name": "m5a.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5a.4xlarge": { "bandwidth": 10, @@ -11220,11 +11220,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.4xlarge", "name": "m5a.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5a.8xlarge": { "bandwidth": 10, @@ -11255,11 +11255,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.8xlarge", "name": "m5a.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5a.large": { "bandwidth": 10, @@ -11290,11 +11290,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.large", "name": "m5a.large", - "ram": 8192 + "ram": 8192, }, "m5a.xlarge": { "bandwidth": 10, @@ -11325,11 +11325,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5a.xlarge", "name": "m5a.xlarge", - "ram": 16384 + "ram": 16384, }, "m5ad.12xlarge": { "bandwidth": 10, @@ -11360,11 +11360,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.12xlarge", "name": "m5ad.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5ad.16xlarge": { "bandwidth": 12, @@ -11395,11 +11395,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.16xlarge", "name": "m5ad.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5ad.24xlarge": { "bandwidth": 20, @@ -11430,11 +11430,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.24xlarge", "name": "m5ad.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5ad.2xlarge": { "bandwidth": 10, @@ -11465,11 +11465,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.2xlarge", "name": "m5ad.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5ad.4xlarge": { "bandwidth": 10, @@ -11500,11 +11500,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.4xlarge", "name": "m5ad.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5ad.8xlarge": { "bandwidth": 10, @@ -11535,11 +11535,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.8xlarge", "name": "m5ad.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5ad.large": { "bandwidth": 10, @@ -11570,11 +11570,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.large", "name": "m5ad.large", - "ram": 8192 + "ram": 8192, }, "m5ad.xlarge": { "bandwidth": 10, @@ -11605,11 +11605,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5ad.xlarge", "name": "m5ad.xlarge", - "ram": 16384 + "ram": 16384, }, "m5d.12xlarge": { "bandwidth": 10, @@ -11640,11 +11640,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.12xlarge", "name": "m5d.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5d.16xlarge": { "bandwidth": 20, @@ -11675,11 +11675,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.16xlarge", "name": "m5d.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5d.24xlarge": { "bandwidth": 25, @@ -11710,11 +11710,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.24xlarge", "name": "m5d.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5d.2xlarge": { "bandwidth": 10, @@ -11745,11 +11745,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.2xlarge", "name": "m5d.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5d.4xlarge": { "bandwidth": 10, @@ -11780,11 +11780,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.4xlarge", "name": "m5d.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5d.8xlarge": { "bandwidth": 10, @@ -11815,11 +11815,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.8xlarge", "name": "m5d.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5d.large": { "bandwidth": 10, @@ -11850,11 +11850,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.large", "name": "m5d.large", - "ram": 8192 + "ram": 8192, }, "m5d.xlarge": { "bandwidth": 10, @@ -11885,11 +11885,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5d.xlarge", "name": "m5d.xlarge", - "ram": 16384 + "ram": 16384, }, "m5dn.12xlarge": { "bandwidth": 50, @@ -11919,11 +11919,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.12xlarge", "name": "m5dn.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5dn.16xlarge": { "bandwidth": 75, @@ -11953,11 +11953,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.16xlarge", "name": "m5dn.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5dn.24xlarge": { "bandwidth": 100, @@ -11987,11 +11987,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.24xlarge", "name": "m5dn.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5dn.2xlarge": { "bandwidth": 25, @@ -12021,11 +12021,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.2xlarge", "name": "m5dn.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5dn.4xlarge": { "bandwidth": 25, @@ -12055,11 +12055,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.4xlarge", "name": "m5dn.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5dn.8xlarge": { "bandwidth": 25, @@ -12089,11 +12089,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.8xlarge", "name": "m5dn.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5dn.large": { "bandwidth": 25, @@ -12123,11 +12123,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.large", "name": "m5dn.large", - "ram": 8192 + "ram": 8192, }, "m5dn.xlarge": { "bandwidth": 25, @@ -12157,11 +12157,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5dn.xlarge", "name": "m5dn.xlarge", - "ram": 16384 + "ram": 16384, }, "m5n.12xlarge": { "bandwidth": 50, @@ -12191,11 +12191,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.12xlarge", "name": "m5n.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5n.16xlarge": { "bandwidth": 75, @@ -12225,11 +12225,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.16xlarge", "name": "m5n.16xlarge", - "ram": 262144 + "ram": 262144, }, "m5n.24xlarge": { "bandwidth": 100, @@ -12259,11 +12259,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.24xlarge", "name": "m5n.24xlarge", - "ram": 393216 + "ram": 393216, }, "m5n.2xlarge": { "bandwidth": 25, @@ -12293,11 +12293,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.2xlarge", "name": "m5n.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5n.4xlarge": { "bandwidth": 25, @@ -12327,11 +12327,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.4xlarge", "name": "m5n.4xlarge", - "ram": 65536 + "ram": 65536, }, "m5n.8xlarge": { "bandwidth": 25, @@ -12361,11 +12361,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.8xlarge", "name": "m5n.8xlarge", - "ram": 131072 + "ram": 131072, }, "m5n.large": { "bandwidth": 25, @@ -12395,11 +12395,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.large", "name": "m5n.large", - "ram": 8192 + "ram": 8192, }, "m5n.xlarge": { "bandwidth": 25, @@ -12429,11 +12429,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5n.xlarge", "name": "m5n.xlarge", - "ram": 16384 + "ram": 16384, }, "m5zn.12xlarge": { "bandwidth": 100, @@ -12464,11 +12464,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.12xlarge", "name": "m5zn.12xlarge", - "ram": 196608 + "ram": 196608, }, "m5zn.2xlarge": { "bandwidth": 25, @@ -12499,11 +12499,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.2xlarge", "name": "m5zn.2xlarge", - "ram": 32768 + "ram": 32768, }, "m5zn.3xlarge": { "bandwidth": 25, @@ -12534,11 +12534,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "12", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.3xlarge", "name": "m5zn.3xlarge", - "ram": 49152 + "ram": 49152, }, "m5zn.6xlarge": { "bandwidth": 50, @@ -12569,11 +12569,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.6xlarge", "name": "m5zn.6xlarge", - "ram": 98304 + "ram": 98304, }, "m5zn.large": { "bandwidth": 25, @@ -12604,11 +12604,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.large", "name": "m5zn.large", - "ram": 8192 + "ram": 8192, }, "m5zn.xlarge": { "bandwidth": 25, @@ -12639,11 +12639,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m5zn.xlarge", "name": "m5zn.xlarge", - "ram": 16384 + "ram": 16384, }, "m6a.12xlarge": { "bandwidth": 18750, @@ -12674,11 +12674,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.12xlarge", "name": "m6a.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6a.16xlarge": { "bandwidth": 25000, @@ -12709,11 +12709,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.16xlarge", "name": "m6a.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6a.24xlarge": { "bandwidth": 37500, @@ -12744,11 +12744,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.24xlarge", "name": "m6a.24xlarge", - "ram": 393216 + "ram": 393216, }, "m6a.2xlarge": { "bandwidth": 12500, @@ -12779,11 +12779,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.2xlarge", "name": "m6a.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6a.32xlarge": { "bandwidth": 50000, @@ -12814,11 +12814,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.32xlarge", "name": "m6a.32xlarge", - "ram": 524288 + "ram": 524288, }, "m6a.48xlarge": { "bandwidth": 50000, @@ -12849,11 +12849,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.48xlarge", "name": "m6a.48xlarge", - "ram": 786432 + "ram": 786432, }, "m6a.4xlarge": { "bandwidth": 12500, @@ -12884,11 +12884,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.4xlarge", "name": "m6a.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6a.8xlarge": { "bandwidth": 12500, @@ -12919,11 +12919,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.8xlarge", "name": "m6a.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6a.large": { "bandwidth": 12500, @@ -12954,11 +12954,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.large", "name": "m6a.large", - "ram": 8192 + "ram": 8192, }, "m6a.xlarge": { "bandwidth": 12500, @@ -12989,11 +12989,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6a.xlarge", "name": "m6a.xlarge", - "ram": 16384 + "ram": 16384, }, "m6g.12xlarge": { "bandwidth": 20, @@ -13022,11 +13022,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.12xlarge", "name": "m6g.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6g.16xlarge": { "bandwidth": 25, @@ -13055,11 +13055,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.16xlarge", "name": "m6g.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6g.2xlarge": { "bandwidth": 10, @@ -13088,11 +13088,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.2xlarge", "name": "m6g.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6g.4xlarge": { "bandwidth": 10, @@ -13121,11 +13121,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.4xlarge", "name": "m6g.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6g.8xlarge": { "bandwidth": 12, @@ -13154,11 +13154,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.8xlarge", "name": "m6g.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6g.large": { "bandwidth": 10, @@ -13187,11 +13187,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.large", "name": "m6g.large", - "ram": 8192 + "ram": 8192, }, "m6g.medium": { "bandwidth": 10, @@ -13220,11 +13220,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.medium", "name": "m6g.medium", - "ram": 4096 + "ram": 4096, }, "m6g.xlarge": { "bandwidth": 10, @@ -13253,11 +13253,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6g.xlarge", "name": "m6g.xlarge", - "ram": 16384 + "ram": 16384, }, "m6gd.12xlarge": { "bandwidth": 20, @@ -13287,11 +13287,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.12xlarge", "name": "m6gd.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6gd.16xlarge": { "bandwidth": 25, @@ -13321,11 +13321,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.16xlarge", "name": "m6gd.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6gd.2xlarge": { "bandwidth": 10, @@ -13355,11 +13355,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.2xlarge", "name": "m6gd.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6gd.4xlarge": { "bandwidth": 10, @@ -13389,11 +13389,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.4xlarge", "name": "m6gd.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6gd.8xlarge": { "bandwidth": 12, @@ -13423,11 +13423,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.8xlarge", "name": "m6gd.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6gd.large": { "bandwidth": 10, @@ -13457,11 +13457,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.large", "name": "m6gd.large", - "ram": 8192 + "ram": 8192, }, "m6gd.medium": { "bandwidth": 10, @@ -13491,11 +13491,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.medium", "name": "m6gd.medium", - "ram": 4096 + "ram": 4096, }, "m6gd.xlarge": { "bandwidth": 10, @@ -13525,11 +13525,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6gd.xlarge", "name": "m6gd.xlarge", - "ram": 16384 + "ram": 16384, }, "m6i.12xlarge": { "bandwidth": 18750, @@ -13560,11 +13560,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.12xlarge", "name": "m6i.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6i.16xlarge": { "bandwidth": 25000, @@ -13595,11 +13595,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.16xlarge", "name": "m6i.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6i.24xlarge": { "bandwidth": 37500, @@ -13630,11 +13630,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.24xlarge", "name": "m6i.24xlarge", - "ram": 393216 + "ram": 393216, }, "m6i.2xlarge": { "bandwidth": 12500, @@ -13665,11 +13665,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.2xlarge", "name": "m6i.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6i.32xlarge": { "bandwidth": 50000, @@ -13700,11 +13700,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.32xlarge", "name": "m6i.32xlarge", - "ram": 524288 + "ram": 524288, }, "m6i.4xlarge": { "bandwidth": 12500, @@ -13735,11 +13735,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.4xlarge", "name": "m6i.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6i.8xlarge": { "bandwidth": 12500, @@ -13770,11 +13770,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.8xlarge", "name": "m6i.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6i.large": { "bandwidth": 12500, @@ -13805,11 +13805,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.large", "name": "m6i.large", - "ram": 8192 + "ram": 8192, }, "m6i.xlarge": { "bandwidth": 12500, @@ -13840,11 +13840,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6i.xlarge", "name": "m6i.xlarge", - "ram": 16384 + "ram": 16384, }, "m6id.12xlarge": { "bandwidth": 18750, @@ -13875,11 +13875,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.12xlarge", "name": "m6id.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6id.16xlarge": { "bandwidth": 25000, @@ -13910,11 +13910,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.16xlarge", "name": "m6id.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6id.24xlarge": { "bandwidth": 37500, @@ -13945,11 +13945,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.24xlarge", "name": "m6id.24xlarge", - "ram": 393216 + "ram": 393216, }, "m6id.2xlarge": { "bandwidth": 12500, @@ -13980,11 +13980,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.2xlarge", "name": "m6id.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6id.32xlarge": { "bandwidth": 50000, @@ -14015,11 +14015,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.32xlarge", "name": "m6id.32xlarge", - "ram": 524288 + "ram": 524288, }, "m6id.4xlarge": { "bandwidth": 12500, @@ -14050,11 +14050,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.4xlarge", "name": "m6id.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6id.8xlarge": { "bandwidth": 12500, @@ -14085,11 +14085,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.8xlarge", "name": "m6id.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6id.large": { "bandwidth": 12500, @@ -14120,11 +14120,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.large", "name": "m6id.large", - "ram": 8192 + "ram": 8192, }, "m6id.xlarge": { "bandwidth": 12500, @@ -14155,11 +14155,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6id.xlarge", "name": "m6id.xlarge", - "ram": 16384 + "ram": 16384, }, "m6idn.12xlarge": { "bandwidth": 75000, @@ -14190,11 +14190,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.12xlarge", "name": "m6idn.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6idn.16xlarge": { "bandwidth": 100000, @@ -14225,11 +14225,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.16xlarge", "name": "m6idn.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6idn.24xlarge": { "bandwidth": 150000, @@ -14255,16 +14255,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-east-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.24xlarge", "name": "m6idn.24xlarge", - "ram": 393216 + "ram": 393216, }, "m6idn.2xlarge": { "bandwidth": 40000, @@ -14290,16 +14290,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "us-west-2", + "regionCode": "ap-south-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.2xlarge", "name": "m6idn.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6idn.32xlarge": { "bandwidth": 200000, @@ -14330,11 +14330,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.32xlarge", "name": "m6idn.32xlarge", - "ram": 524288 + "ram": 524288, }, "m6idn.4xlarge": { "bandwidth": 50000, @@ -14365,11 +14365,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.4xlarge", "name": "m6idn.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6idn.8xlarge": { "bandwidth": 50000, @@ -14395,16 +14395,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.8xlarge", "name": "m6idn.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6idn.large": { "bandwidth": 25000, @@ -14435,11 +14435,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.large", "name": "m6idn.large", - "ram": 8192 + "ram": 8192, }, "m6idn.xlarge": { "bandwidth": 30000, @@ -14470,11 +14470,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6idn.xlarge", "name": "m6idn.xlarge", - "ram": 16384 + "ram": 16384, }, "m6in.12xlarge": { "bandwidth": 75000, @@ -14505,11 +14505,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.12xlarge", "name": "m6in.12xlarge", - "ram": 196608 + "ram": 196608, }, "m6in.16xlarge": { "bandwidth": 100000, @@ -14540,11 +14540,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.16xlarge", "name": "m6in.16xlarge", - "ram": 262144 + "ram": 262144, }, "m6in.24xlarge": { "bandwidth": 150000, @@ -14575,11 +14575,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.24xlarge", "name": "m6in.24xlarge", - "ram": 393216 + "ram": 393216, }, "m6in.2xlarge": { "bandwidth": 40000, @@ -14605,16 +14605,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "ap-northeast-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.2xlarge", "name": "m6in.2xlarge", - "ram": 32768 + "ram": 32768, }, "m6in.32xlarge": { "bandwidth": 200000, @@ -14645,11 +14645,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.32xlarge", "name": "m6in.32xlarge", - "ram": 524288 + "ram": 524288, }, "m6in.4xlarge": { "bandwidth": 50000, @@ -14675,16 +14675,16 @@ "physicalProcessor": "Intel Xeon 8375C (Ice Lake)", "processorArchitecture": "64-bit", "processorFeatures": "Intel AVX; Intel AVX2; Intel AVX512; Intel Turbo", - "regionCode": "eu-central-1", + "regionCode": "ca-central-1", "servicecode": "AmazonEC2", "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.4xlarge", "name": "m6in.4xlarge", - "ram": 65536 + "ram": 65536, }, "m6in.8xlarge": { "bandwidth": 50000, @@ -14715,11 +14715,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.8xlarge", "name": "m6in.8xlarge", - "ram": 131072 + "ram": 131072, }, "m6in.large": { "bandwidth": 25000, @@ -14750,11 +14750,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.large", "name": "m6in.large", - "ram": 8192 + "ram": 8192, }, "m6in.xlarge": { "bandwidth": 30000, @@ -14785,11 +14785,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m6in.xlarge", "name": "m6in.xlarge", - "ram": 16384 + "ram": 16384, }, "m7a.12xlarge": { "bandwidth": 18750, @@ -14820,11 +14820,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.12xlarge", "name": "m7a.12xlarge", - "ram": 196608 + "ram": 196608, }, "m7a.16xlarge": { "bandwidth": 25000, @@ -14855,11 +14855,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.16xlarge", "name": "m7a.16xlarge", - "ram": 262144 + "ram": 262144, }, "m7a.24xlarge": { "bandwidth": 37500, @@ -14890,11 +14890,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.24xlarge", "name": "m7a.24xlarge", - "ram": 393216 + "ram": 393216, }, "m7a.2xlarge": { "bandwidth": 12500, @@ -14925,11 +14925,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.2xlarge", "name": "m7a.2xlarge", - "ram": 32768 + "ram": 32768, }, "m7a.32xlarge": { "bandwidth": 50000, @@ -14960,11 +14960,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.32xlarge", "name": "m7a.32xlarge", - "ram": 524288 + "ram": 524288, }, "m7a.48xlarge": { "bandwidth": 50000, @@ -14995,11 +14995,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.48xlarge", "name": "m7a.48xlarge", - "ram": 786432 + "ram": 786432, }, "m7a.4xlarge": { "bandwidth": 12500, @@ -15030,11 +15030,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.4xlarge", "name": "m7a.4xlarge", - "ram": 65536 + "ram": 65536, }, "m7a.8xlarge": { "bandwidth": 12500, @@ -15065,11 +15065,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.8xlarge", "name": "m7a.8xlarge", - "ram": 131072 + "ram": 131072, }, "m7a.large": { "bandwidth": 12500, @@ -15100,11 +15100,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.large", "name": "m7a.large", - "ram": 8192 + "ram": 8192, }, "m7a.medium": { "bandwidth": 12500, @@ -15135,11 +15135,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.medium", "name": "m7a.medium", - "ram": 4096 + "ram": 4096, }, "m7a.xlarge": { "bandwidth": 12500, @@ -15170,11 +15170,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7a.xlarge", "name": "m7a.xlarge", - "ram": 16384 + "ram": 16384, }, "m7g.12xlarge": { "bandwidth": 22500, @@ -15204,11 +15204,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.12xlarge", "name": "m7g.12xlarge", - "ram": 196608 + "ram": 196608, }, "m7g.16xlarge": { "bandwidth": 30, @@ -15238,11 +15238,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.16xlarge", "name": "m7g.16xlarge", - "ram": 262144 + "ram": 262144, }, "m7g.2xlarge": { "bandwidth": 15, @@ -15272,11 +15272,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.2xlarge", "name": "m7g.2xlarge", - "ram": 32768 + "ram": 32768, }, "m7g.4xlarge": { "bandwidth": 15, @@ -15306,11 +15306,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.4xlarge", "name": "m7g.4xlarge", - "ram": 65536 + "ram": 65536, }, "m7g.8xlarge": { "bandwidth": 15, @@ -15340,11 +15340,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.8xlarge", "name": "m7g.8xlarge", - "ram": 131072 + "ram": 131072, }, "m7g.large": { "bandwidth": 12500, @@ -15374,11 +15374,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.large", "name": "m7g.large", - "ram": 8192 + "ram": 8192, }, "m7g.medium": { "bandwidth": 12500, @@ -15408,11 +15408,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.medium", "name": "m7g.medium", - "ram": 4096 + "ram": 4096, }, "m7g.xlarge": { "bandwidth": 12500, @@ -15442,11 +15442,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7g.xlarge", "name": "m7g.xlarge", - "ram": 16384 + "ram": 16384, }, "m7gd.12xlarge": { "bandwidth": 22500, @@ -15476,11 +15476,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.12xlarge", "name": "m7gd.12xlarge", - "ram": 196608 + "ram": 196608, }, "m7gd.16xlarge": { "bandwidth": 30, @@ -15510,11 +15510,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.16xlarge", "name": "m7gd.16xlarge", - "ram": 262144 + "ram": 262144, }, "m7gd.2xlarge": { "bandwidth": 15, @@ -15544,11 +15544,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.2xlarge", "name": "m7gd.2xlarge", - "ram": 32768 + "ram": 32768, }, "m7gd.4xlarge": { "bandwidth": 15, @@ -15578,11 +15578,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.4xlarge", "name": "m7gd.4xlarge", - "ram": 65536 + "ram": 65536, }, "m7gd.8xlarge": { "bandwidth": 15, @@ -15612,11 +15612,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.8xlarge", "name": "m7gd.8xlarge", - "ram": 131072 + "ram": 131072, }, "m7gd.large": { "bandwidth": 12500, @@ -15646,11 +15646,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.large", "name": "m7gd.large", - "ram": 8192 + "ram": 8192, }, "m7gd.medium": { "bandwidth": 12500, @@ -15680,11 +15680,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.medium", "name": "m7gd.medium", - "ram": 4096 + "ram": 4096, }, "m7gd.xlarge": { "bandwidth": 12500, @@ -15714,11 +15714,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7gd.xlarge", "name": "m7gd.xlarge", - "ram": 16384 + "ram": 16384, }, "m7i-flex.2xlarge": { "bandwidth": 12500, @@ -15749,11 +15749,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i-flex.2xlarge", "name": "m7i-flex.2xlarge", - "ram": 32768 + "ram": 32768, }, "m7i-flex.4xlarge": { "bandwidth": 12500, @@ -15784,11 +15784,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i-flex.4xlarge", "name": "m7i-flex.4xlarge", - "ram": 65536 + "ram": 65536, }, "m7i-flex.8xlarge": { "bandwidth": 12500, @@ -15819,11 +15819,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i-flex.8xlarge", "name": "m7i-flex.8xlarge", - "ram": 131072 + "ram": 131072, }, "m7i-flex.large": { "bandwidth": 12500, @@ -15854,11 +15854,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i-flex.large", "name": "m7i-flex.large", - "ram": 8192 + "ram": 8192, }, "m7i-flex.xlarge": { "bandwidth": 12500, @@ -15889,11 +15889,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i-flex.xlarge", "name": "m7i-flex.xlarge", - "ram": 16384 + "ram": 16384, }, "m7i.12xlarge": { "bandwidth": 18750, @@ -15924,11 +15924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.12xlarge", "name": "m7i.12xlarge", - "ram": 196608 + "ram": 196608, }, "m7i.16xlarge": { "bandwidth": 25000, @@ -15959,11 +15959,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.16xlarge", "name": "m7i.16xlarge", - "ram": 262144 + "ram": 262144, }, "m7i.24xlarge": { "bandwidth": 37500, @@ -15994,11 +15994,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.24xlarge", "name": "m7i.24xlarge", - "ram": 393216 + "ram": 393216, }, "m7i.2xlarge": { "bandwidth": 12500, @@ -16029,11 +16029,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.2xlarge", "name": "m7i.2xlarge", - "ram": 32768 + "ram": 32768, }, "m7i.48xlarge": { "bandwidth": 50000, @@ -16064,11 +16064,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.48xlarge", "name": "m7i.48xlarge", - "ram": 786432 + "ram": 786432, }, "m7i.4xlarge": { "bandwidth": 12500, @@ -16099,11 +16099,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.4xlarge", "name": "m7i.4xlarge", - "ram": 65536 + "ram": 65536, }, "m7i.8xlarge": { "bandwidth": 12500, @@ -16134,11 +16134,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.8xlarge", "name": "m7i.8xlarge", - "ram": 131072 + "ram": 131072, }, "m7i.large": { "bandwidth": 12500, @@ -16169,11 +16169,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.large", "name": "m7i.large", - "ram": 8192 + "ram": 8192, }, "m7i.xlarge": { "bandwidth": 12500, @@ -16204,11 +16204,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "m7i.xlarge", "name": "m7i.xlarge", - "ram": 16384 + "ram": 16384, }, "p2.16xlarge": { "bandwidth": 20, @@ -16240,11 +16240,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p2.16xlarge", "name": "p2.16xlarge", - "ram": 749568 + "ram": 749568, }, "p2.8xlarge": { "bandwidth": 10, @@ -16276,11 +16276,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p2.8xlarge", "name": "p2.8xlarge", - "ram": 499712 + "ram": 499712, }, "p2.xlarge": { "bandwidth": None, @@ -16312,11 +16312,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p2.xlarge", "name": "p2.xlarge", - "ram": 62464 + "ram": 62464, }, "p3.16xlarge": { "bandwidth": 25, @@ -16348,11 +16348,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p3.16xlarge", "name": "p3.16xlarge", - "ram": 499712 + "ram": 499712, }, "p3.2xlarge": { "bandwidth": 10, @@ -16384,11 +16384,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p3.2xlarge", "name": "p3.2xlarge", - "ram": 62464 + "ram": 62464, }, "p3.8xlarge": { "bandwidth": 10, @@ -16420,11 +16420,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p3.8xlarge", "name": "p3.8xlarge", - "ram": 249856 + "ram": 249856, }, "p3dn.24xlarge": { "bandwidth": 100, @@ -16456,11 +16456,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p3dn.24xlarge", "name": "p3dn.24xlarge", - "ram": 786432 + "ram": 786432, }, "p4d.24xlarge": { "bandwidth": 400, @@ -16492,11 +16492,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 1000 SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p4d.24xlarge", "name": "p4d.24xlarge", - "ram": 1179648 + "ram": 1179648, }, "p4de.24xlarge": { "bandwidth": 400, @@ -16528,11 +16528,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 1000 SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p4de.24xlarge", "name": "p4de.24xlarge", - "ram": 1179648 + "ram": 1179648, }, "p5.48xlarge": { "bandwidth": 3200, @@ -16564,11 +16564,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "8 x 3840 GB SSD", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "p5.48xlarge", "name": "p5.48xlarge", - "ram": 2097152 + "ram": 2097152, }, "r3.2xlarge": { "bandwidth": None, @@ -16598,11 +16598,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 160 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r3.2xlarge", "name": "r3.2xlarge", - "ram": 62464 + "ram": 62464, }, "r3.4xlarge": { "bandwidth": None, @@ -16632,11 +16632,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 320 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r3.4xlarge", "name": "r3.4xlarge", - "ram": 124928 + "ram": 124928, }, "r3.8xlarge": { "bandwidth": 10, @@ -16666,11 +16666,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 320 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r3.8xlarge", "name": "r3.8xlarge", - "ram": 249856 + "ram": 249856, }, "r3.large": { "bandwidth": None, @@ -16700,11 +16700,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 32 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r3.large", "name": "r3.large", - "ram": 15616 + "ram": 15616, }, "r3.xlarge": { "bandwidth": None, @@ -16734,11 +16734,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 80 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r3.xlarge", "name": "r3.xlarge", - "ram": 31232 + "ram": 31232, }, "r4.16xlarge": { "bandwidth": 20, @@ -16769,11 +16769,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.16xlarge", "name": "r4.16xlarge", - "ram": 499712 + "ram": 499712, }, "r4.2xlarge": { "bandwidth": 10, @@ -16804,11 +16804,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.2xlarge", "name": "r4.2xlarge", - "ram": 62464 + "ram": 62464, }, "r4.4xlarge": { "bandwidth": 10, @@ -16839,11 +16839,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.4xlarge", "name": "r4.4xlarge", - "ram": 124928 + "ram": 124928, }, "r4.8xlarge": { "bandwidth": 10, @@ -16874,11 +16874,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.8xlarge", "name": "r4.8xlarge", - "ram": 249856 + "ram": 249856, }, "r4.large": { "bandwidth": 10, @@ -16909,11 +16909,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.large", "name": "r4.large", - "ram": 15616 + "ram": 15616, }, "r4.xlarge": { "bandwidth": 10, @@ -16944,11 +16944,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r4.xlarge", "name": "r4.xlarge", - "ram": 31232 + "ram": 31232, }, "r5.12xlarge": { "bandwidth": 10, @@ -16979,11 +16979,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.12xlarge", "name": "r5.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5.16xlarge": { "bandwidth": 20, @@ -17014,11 +17014,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.16xlarge", "name": "r5.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5.24xlarge": { "bandwidth": 25, @@ -17049,11 +17049,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.24xlarge", "name": "r5.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5.2xlarge": { "bandwidth": 10, @@ -17084,11 +17084,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.2xlarge", "name": "r5.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5.4xlarge": { "bandwidth": 10, @@ -17119,11 +17119,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.4xlarge", "name": "r5.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5.8xlarge": { "bandwidth": 10, @@ -17154,11 +17154,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.8xlarge", "name": "r5.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5.large": { "bandwidth": 10, @@ -17189,11 +17189,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.large", "name": "r5.large", - "ram": 16384 + "ram": 16384, }, "r5.xlarge": { "bandwidth": 10, @@ -17224,11 +17224,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5.xlarge", "name": "r5.xlarge", - "ram": 32768 + "ram": 32768, }, "r5a.12xlarge": { "bandwidth": 10, @@ -17259,11 +17259,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.12xlarge", "name": "r5a.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5a.16xlarge": { "bandwidth": 12, @@ -17294,11 +17294,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.16xlarge", "name": "r5a.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5a.24xlarge": { "bandwidth": 20, @@ -17329,11 +17329,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.24xlarge", "name": "r5a.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5a.2xlarge": { "bandwidth": 10, @@ -17364,11 +17364,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.2xlarge", "name": "r5a.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5a.4xlarge": { "bandwidth": 10, @@ -17399,11 +17399,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.4xlarge", "name": "r5a.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5a.8xlarge": { "bandwidth": 10, @@ -17434,11 +17434,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.8xlarge", "name": "r5a.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5a.large": { "bandwidth": 10, @@ -17469,11 +17469,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.large", "name": "r5a.large", - "ram": 16384 + "ram": 16384, }, "r5a.xlarge": { "bandwidth": 10, @@ -17504,11 +17504,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5a.xlarge", "name": "r5a.xlarge", - "ram": 32768 + "ram": 32768, }, "r5ad.12xlarge": { "bandwidth": 10, @@ -17539,11 +17539,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.12xlarge", "name": "r5ad.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5ad.16xlarge": { "bandwidth": 12, @@ -17574,11 +17574,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.16xlarge", "name": "r5ad.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5ad.24xlarge": { "bandwidth": 20, @@ -17609,11 +17609,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.24xlarge", "name": "r5ad.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5ad.2xlarge": { "bandwidth": 10, @@ -17644,11 +17644,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.2xlarge", "name": "r5ad.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5ad.4xlarge": { "bandwidth": 10, @@ -17679,11 +17679,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.4xlarge", "name": "r5ad.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5ad.8xlarge": { "bandwidth": 10, @@ -17714,11 +17714,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.8xlarge", "name": "r5ad.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5ad.large": { "bandwidth": 10, @@ -17749,11 +17749,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.large", "name": "r5ad.large", - "ram": 16384 + "ram": 16384, }, "r5ad.xlarge": { "bandwidth": 10, @@ -17784,11 +17784,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5ad.xlarge", "name": "r5ad.xlarge", - "ram": 32768 + "ram": 32768, }, "r5b.12xlarge": { "bandwidth": 10, @@ -17819,11 +17819,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.12xlarge", "name": "r5b.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5b.16xlarge": { "bandwidth": 20, @@ -17854,11 +17854,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.16xlarge", "name": "r5b.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5b.24xlarge": { "bandwidth": 25, @@ -17889,11 +17889,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.24xlarge", "name": "r5b.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5b.2xlarge": { "bandwidth": 10, @@ -17924,11 +17924,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.2xlarge", "name": "r5b.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5b.4xlarge": { "bandwidth": 10, @@ -17959,11 +17959,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.4xlarge", "name": "r5b.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5b.8xlarge": { "bandwidth": 10, @@ -17994,11 +17994,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.8xlarge", "name": "r5b.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5b.large": { "bandwidth": 10, @@ -18029,11 +18029,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.large", "name": "r5b.large", - "ram": 16384 + "ram": 16384, }, "r5b.xlarge": { "bandwidth": 10, @@ -18064,11 +18064,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5b.xlarge", "name": "r5b.xlarge", - "ram": 32768 + "ram": 32768, }, "r5d.12xlarge": { "bandwidth": 10, @@ -18099,11 +18099,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.12xlarge", "name": "r5d.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5d.16xlarge": { "bandwidth": 20, @@ -18134,11 +18134,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.16xlarge", "name": "r5d.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5d.24xlarge": { "bandwidth": 25, @@ -18169,11 +18169,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.24xlarge", "name": "r5d.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5d.2xlarge": { "bandwidth": 10, @@ -18204,11 +18204,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.2xlarge", "name": "r5d.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5d.4xlarge": { "bandwidth": 10, @@ -18239,11 +18239,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.4xlarge", "name": "r5d.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5d.8xlarge": { "bandwidth": 10, @@ -18274,11 +18274,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.8xlarge", "name": "r5d.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5d.large": { "bandwidth": 10, @@ -18309,11 +18309,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.large", "name": "r5d.large", - "ram": 16384 + "ram": 16384, }, "r5d.xlarge": { "bandwidth": 10, @@ -18344,11 +18344,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5d.xlarge", "name": "r5d.xlarge", - "ram": 32768 + "ram": 32768, }, "r5dn.12xlarge": { "bandwidth": 50, @@ -18378,11 +18378,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 GB NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.12xlarge", "name": "r5dn.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5dn.16xlarge": { "bandwidth": 75, @@ -18412,11 +18412,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 600 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.16xlarge", "name": "r5dn.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5dn.24xlarge": { "bandwidth": 100, @@ -18446,11 +18446,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 900 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.24xlarge", "name": "r5dn.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5dn.2xlarge": { "bandwidth": 25, @@ -18480,11 +18480,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.2xlarge", "name": "r5dn.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5dn.4xlarge": { "bandwidth": 25, @@ -18514,11 +18514,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 300 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.4xlarge", "name": "r5dn.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5dn.8xlarge": { "bandwidth": 25, @@ -18548,11 +18548,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 600 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.8xlarge", "name": "r5dn.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5dn.large": { "bandwidth": 25, @@ -18582,11 +18582,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.large", "name": "r5dn.large", - "ram": 16384 + "ram": 16384, }, "r5dn.xlarge": { "bandwidth": 25, @@ -18616,11 +18616,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5dn.xlarge", "name": "r5dn.xlarge", - "ram": 32768 + "ram": 32768, }, "r5n.12xlarge": { "bandwidth": 50, @@ -18651,11 +18651,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.12xlarge", "name": "r5n.12xlarge", - "ram": 393216 + "ram": 393216, }, "r5n.16xlarge": { "bandwidth": 75, @@ -18686,11 +18686,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.16xlarge", "name": "r5n.16xlarge", - "ram": 524288 + "ram": 524288, }, "r5n.24xlarge": { "bandwidth": 100, @@ -18721,11 +18721,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.24xlarge", "name": "r5n.24xlarge", - "ram": 786432 + "ram": 786432, }, "r5n.2xlarge": { "bandwidth": 25, @@ -18756,11 +18756,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.2xlarge", "name": "r5n.2xlarge", - "ram": 65536 + "ram": 65536, }, "r5n.4xlarge": { "bandwidth": 25, @@ -18791,11 +18791,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.4xlarge", "name": "r5n.4xlarge", - "ram": 131072 + "ram": 131072, }, "r5n.8xlarge": { "bandwidth": 25, @@ -18826,11 +18826,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.8xlarge", "name": "r5n.8xlarge", - "ram": 262144 + "ram": 262144, }, "r5n.large": { "bandwidth": 25, @@ -18861,11 +18861,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.large", "name": "r5n.large", - "ram": 16384 + "ram": 16384, }, "r5n.xlarge": { "bandwidth": 25, @@ -18896,11 +18896,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r5n.xlarge", "name": "r5n.xlarge", - "ram": 32768 + "ram": 32768, }, "r6a.12xlarge": { "bandwidth": 18750, @@ -18931,11 +18931,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.12xlarge", "name": "r6a.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6a.16xlarge": { "bandwidth": 25000, @@ -18966,11 +18966,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.16xlarge", "name": "r6a.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6a.24xlarge": { "bandwidth": 37500, @@ -19001,11 +19001,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.24xlarge", "name": "r6a.24xlarge", - "ram": 786432 + "ram": 786432, }, "r6a.2xlarge": { "bandwidth": 12500, @@ -19036,11 +19036,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.2xlarge", "name": "r6a.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6a.32xlarge": { "bandwidth": 50000, @@ -19071,11 +19071,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.32xlarge", "name": "r6a.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r6a.48xlarge": { "bandwidth": 50000, @@ -19106,11 +19106,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.48xlarge", "name": "r6a.48xlarge", - "ram": 1572864 + "ram": 1572864, }, "r6a.4xlarge": { "bandwidth": 12500, @@ -19141,11 +19141,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.4xlarge", "name": "r6a.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6a.8xlarge": { "bandwidth": 12500, @@ -19176,11 +19176,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.8xlarge", "name": "r6a.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6a.large": { "bandwidth": 12500, @@ -19211,11 +19211,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.large", "name": "r6a.large", - "ram": 16384 + "ram": 16384, }, "r6a.xlarge": { "bandwidth": 12500, @@ -19246,11 +19246,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6a.xlarge", "name": "r6a.xlarge", - "ram": 32768 + "ram": 32768, }, "r6g.12xlarge": { "bandwidth": 20, @@ -19280,11 +19280,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.12xlarge", "name": "r6g.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6g.16xlarge": { "bandwidth": 25, @@ -19314,11 +19314,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.16xlarge", "name": "r6g.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6g.2xlarge": { "bandwidth": 10, @@ -19348,11 +19348,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.2xlarge", "name": "r6g.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6g.4xlarge": { "bandwidth": 10, @@ -19382,11 +19382,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.4xlarge", "name": "r6g.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6g.8xlarge": { "bandwidth": 12, @@ -19416,11 +19416,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.8xlarge", "name": "r6g.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6g.large": { "bandwidth": 10, @@ -19450,11 +19450,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.large", "name": "r6g.large", - "ram": 16384 + "ram": 16384, }, "r6g.medium": { "bandwidth": 10, @@ -19484,11 +19484,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.medium", "name": "r6g.medium", - "ram": 8192 + "ram": 8192, }, "r6g.xlarge": { "bandwidth": 10, @@ -19518,11 +19518,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6g.xlarge", "name": "r6g.xlarge", - "ram": 32768 + "ram": 32768, }, "r6gd.12xlarge": { "bandwidth": 20, @@ -19552,11 +19552,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.12xlarge", "name": "r6gd.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6gd.16xlarge": { "bandwidth": 25, @@ -19586,11 +19586,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.16xlarge", "name": "r6gd.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6gd.2xlarge": { "bandwidth": 10, @@ -19620,11 +19620,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.2xlarge", "name": "r6gd.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6gd.4xlarge": { "bandwidth": 10, @@ -19654,11 +19654,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.4xlarge", "name": "r6gd.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6gd.8xlarge": { "bandwidth": 12, @@ -19688,11 +19688,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.8xlarge", "name": "r6gd.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6gd.large": { "bandwidth": 10, @@ -19722,11 +19722,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.large", "name": "r6gd.large", - "ram": 16384 + "ram": 16384, }, "r6gd.medium": { "bandwidth": 10, @@ -19756,11 +19756,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.medium", "name": "r6gd.medium", - "ram": 8192 + "ram": 8192, }, "r6gd.xlarge": { "bandwidth": 10, @@ -19790,11 +19790,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6gd.xlarge", "name": "r6gd.xlarge", - "ram": 32768 + "ram": 32768, }, "r6i.12xlarge": { "bandwidth": 18750, @@ -19825,11 +19825,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.12xlarge", "name": "r6i.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6i.16xlarge": { "bandwidth": 25000, @@ -19860,11 +19860,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.16xlarge", "name": "r6i.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6i.24xlarge": { "bandwidth": 37500, @@ -19895,11 +19895,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.24xlarge", "name": "r6i.24xlarge", - "ram": 786432 + "ram": 786432, }, "r6i.2xlarge": { "bandwidth": 12500, @@ -19930,11 +19930,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.2xlarge", "name": "r6i.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6i.32xlarge": { "bandwidth": 50000, @@ -19965,11 +19965,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.32xlarge", "name": "r6i.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r6i.4xlarge": { "bandwidth": 12500, @@ -20000,11 +20000,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.4xlarge", "name": "r6i.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6i.8xlarge": { "bandwidth": 12500, @@ -20035,11 +20035,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.8xlarge", "name": "r6i.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6i.large": { "bandwidth": 12500, @@ -20070,11 +20070,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.large", "name": "r6i.large", - "ram": 16384 + "ram": 16384, }, "r6i.xlarge": { "bandwidth": 12500, @@ -20105,11 +20105,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6i.xlarge", "name": "r6i.xlarge", - "ram": 32768 + "ram": 32768, }, "r6id.12xlarge": { "bandwidth": 18750, @@ -20140,11 +20140,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.12xlarge", "name": "r6id.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6id.16xlarge": { "bandwidth": 25000, @@ -20175,11 +20175,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.16xlarge", "name": "r6id.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6id.24xlarge": { "bandwidth": 37500, @@ -20210,11 +20210,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.24xlarge", "name": "r6id.24xlarge", - "ram": 786432 + "ram": 786432, }, "r6id.2xlarge": { "bandwidth": 12500, @@ -20245,11 +20245,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.2xlarge", "name": "r6id.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6id.32xlarge": { "bandwidth": 50000, @@ -20280,11 +20280,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.32xlarge", "name": "r6id.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r6id.4xlarge": { "bandwidth": 12500, @@ -20315,11 +20315,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.4xlarge", "name": "r6id.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6id.8xlarge": { "bandwidth": 12500, @@ -20350,11 +20350,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.8xlarge", "name": "r6id.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6id.large": { "bandwidth": 12500, @@ -20385,11 +20385,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.large", "name": "r6id.large", - "ram": 16384 + "ram": 16384, }, "r6id.xlarge": { "bandwidth": 12500, @@ -20420,11 +20420,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6id.xlarge", "name": "r6id.xlarge", - "ram": 32768 + "ram": 32768, }, "r6idn.12xlarge": { "bandwidth": 75000, @@ -20455,11 +20455,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.12xlarge", "name": "r6idn.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6idn.16xlarge": { "bandwidth": 100000, @@ -20490,11 +20490,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.16xlarge", "name": "r6idn.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6idn.24xlarge": { "bandwidth": 150000, @@ -20525,11 +20525,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.24xlarge", "name": "r6idn.24xlarge", - "ram": 786432 + "ram": 786432, }, "r6idn.2xlarge": { "bandwidth": 40000, @@ -20560,11 +20560,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.2xlarge", "name": "r6idn.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6idn.32xlarge": { "bandwidth": 200000, @@ -20595,11 +20595,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.32xlarge", "name": "r6idn.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r6idn.4xlarge": { "bandwidth": 50000, @@ -20630,11 +20630,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.4xlarge", "name": "r6idn.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6idn.8xlarge": { "bandwidth": 50000, @@ -20665,11 +20665,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.8xlarge", "name": "r6idn.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6idn.large": { "bandwidth": 25000, @@ -20700,11 +20700,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.large", "name": "r6idn.large", - "ram": 16384 + "ram": 16384, }, "r6idn.xlarge": { "bandwidth": 30000, @@ -20735,11 +20735,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6idn.xlarge", "name": "r6idn.xlarge", - "ram": 32768 + "ram": 32768, }, "r6in.12xlarge": { "bandwidth": 75000, @@ -20770,11 +20770,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.12xlarge", "name": "r6in.12xlarge", - "ram": 393216 + "ram": 393216, }, "r6in.16xlarge": { "bandwidth": 100000, @@ -20805,11 +20805,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.16xlarge", "name": "r6in.16xlarge", - "ram": 524288 + "ram": 524288, }, "r6in.24xlarge": { "bandwidth": 150000, @@ -20840,11 +20840,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.24xlarge", "name": "r6in.24xlarge", - "ram": 786432 + "ram": 786432, }, "r6in.2xlarge": { "bandwidth": 40000, @@ -20875,11 +20875,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.2xlarge", "name": "r6in.2xlarge", - "ram": 65536 + "ram": 65536, }, "r6in.32xlarge": { "bandwidth": 200000, @@ -20910,11 +20910,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.32xlarge", "name": "r6in.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r6in.4xlarge": { "bandwidth": 50000, @@ -20945,11 +20945,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.4xlarge", "name": "r6in.4xlarge", - "ram": 131072 + "ram": 131072, }, "r6in.8xlarge": { "bandwidth": 50000, @@ -20980,11 +20980,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.8xlarge", "name": "r6in.8xlarge", - "ram": 262144 + "ram": 262144, }, "r6in.large": { "bandwidth": 25000, @@ -21015,11 +21015,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.large", "name": "r6in.large", - "ram": 16384 + "ram": 16384, }, "r6in.xlarge": { "bandwidth": 30000, @@ -21050,11 +21050,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r6in.xlarge", "name": "r6in.xlarge", - "ram": 32768 + "ram": 32768, }, "r7a.12xlarge": { "bandwidth": 18750, @@ -21085,11 +21085,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.12xlarge", "name": "r7a.12xlarge", - "ram": 393216 + "ram": 393216, }, "r7a.16xlarge": { "bandwidth": 25000, @@ -21120,11 +21120,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.16xlarge", "name": "r7a.16xlarge", - "ram": 524288 + "ram": 524288, }, "r7a.24xlarge": { "bandwidth": 37500, @@ -21155,11 +21155,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.24xlarge", "name": "r7a.24xlarge", - "ram": 786432 + "ram": 786432, }, "r7a.2xlarge": { "bandwidth": 12500, @@ -21190,11 +21190,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.2xlarge", "name": "r7a.2xlarge", - "ram": 65536 + "ram": 65536, }, "r7a.32xlarge": { "bandwidth": 50000, @@ -21225,11 +21225,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.32xlarge", "name": "r7a.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r7a.48xlarge": { "bandwidth": 50000, @@ -21260,11 +21260,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.48xlarge", "name": "r7a.48xlarge", - "ram": 1572864 + "ram": 1572864, }, "r7a.4xlarge": { "bandwidth": 12500, @@ -21295,11 +21295,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.4xlarge", "name": "r7a.4xlarge", - "ram": 131072 + "ram": 131072, }, "r7a.8xlarge": { "bandwidth": 12500, @@ -21330,11 +21330,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.8xlarge", "name": "r7a.8xlarge", - "ram": 262144 + "ram": 262144, }, "r7a.large": { "bandwidth": 12500, @@ -21365,11 +21365,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.large", "name": "r7a.large", - "ram": 16384 + "ram": 16384, }, "r7a.medium": { "bandwidth": 12500, @@ -21400,11 +21400,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.medium", "name": "r7a.medium", - "ram": 8192 + "ram": 8192, }, "r7a.xlarge": { "bandwidth": 12500, @@ -21435,11 +21435,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7a.xlarge", "name": "r7a.xlarge", - "ram": 32768 + "ram": 32768, }, "r7g.12xlarge": { "bandwidth": 22500, @@ -21469,11 +21469,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.12xlarge", "name": "r7g.12xlarge", - "ram": 393216 + "ram": 393216, }, "r7g.16xlarge": { "bandwidth": 30, @@ -21503,11 +21503,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.16xlarge", "name": "r7g.16xlarge", - "ram": 524288 + "ram": 524288, }, "r7g.2xlarge": { "bandwidth": 15, @@ -21537,11 +21537,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.2xlarge", "name": "r7g.2xlarge", - "ram": 65536 + "ram": 65536, }, "r7g.4xlarge": { "bandwidth": 15, @@ -21571,11 +21571,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.4xlarge", "name": "r7g.4xlarge", - "ram": 131072 + "ram": 131072, }, "r7g.8xlarge": { "bandwidth": 15, @@ -21605,11 +21605,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.8xlarge", "name": "r7g.8xlarge", - "ram": 262144 + "ram": 262144, }, "r7g.large": { "bandwidth": 12500, @@ -21639,11 +21639,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.large", "name": "r7g.large", - "ram": 16384 + "ram": 16384, }, "r7g.medium": { "bandwidth": 12500, @@ -21673,11 +21673,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.medium", "name": "r7g.medium", - "ram": 8192 + "ram": 8192, }, "r7g.xlarge": { "bandwidth": 12500, @@ -21707,11 +21707,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7g.xlarge", "name": "r7g.xlarge", - "ram": 32768 + "ram": 32768, }, "r7gd.12xlarge": { "bandwidth": 22500, @@ -21741,11 +21741,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.12xlarge", "name": "r7gd.12xlarge", - "ram": 393216 + "ram": 393216, }, "r7gd.16xlarge": { "bandwidth": 30, @@ -21775,11 +21775,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.16xlarge", "name": "r7gd.16xlarge", - "ram": 524288 + "ram": 524288, }, "r7gd.2xlarge": { "bandwidth": 15, @@ -21809,11 +21809,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.2xlarge", "name": "r7gd.2xlarge", - "ram": 65536 + "ram": 65536, }, "r7gd.4xlarge": { "bandwidth": 15, @@ -21843,11 +21843,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.4xlarge", "name": "r7gd.4xlarge", - "ram": 131072 + "ram": 131072, }, "r7gd.8xlarge": { "bandwidth": 15, @@ -21877,11 +21877,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.8xlarge", "name": "r7gd.8xlarge", - "ram": 262144 + "ram": 262144, }, "r7gd.large": { "bandwidth": 12500, @@ -21911,11 +21911,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.large", "name": "r7gd.large", - "ram": 16384 + "ram": 16384, }, "r7gd.medium": { "bandwidth": 12500, @@ -21945,11 +21945,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 NVMe SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.medium", "name": "r7gd.medium", - "ram": 8192 + "ram": 8192, }, "r7gd.xlarge": { "bandwidth": 12500, @@ -21979,11 +21979,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7gd.xlarge", "name": "r7gd.xlarge", - "ram": 32768 + "ram": 32768, }, "r7i.12xlarge": { "bandwidth": 18750, @@ -22014,11 +22014,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.12xlarge", "name": "r7i.12xlarge", - "ram": 393216 + "ram": 393216, }, "r7i.16xlarge": { "bandwidth": 25000, @@ -22049,11 +22049,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.16xlarge", "name": "r7i.16xlarge", - "ram": 524288 + "ram": 524288, }, "r7i.24xlarge": { "bandwidth": 37500, @@ -22084,11 +22084,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.24xlarge", "name": "r7i.24xlarge", - "ram": 786432 + "ram": 786432, }, "r7i.2xlarge": { "bandwidth": 12500, @@ -22119,11 +22119,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.2xlarge", "name": "r7i.2xlarge", - "ram": 65536 + "ram": 65536, }, "r7i.48xlarge": { "bandwidth": 50000, @@ -22154,11 +22154,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "192", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.48xlarge", "name": "r7i.48xlarge", - "ram": 1572864 + "ram": 1572864, }, "r7i.4xlarge": { "bandwidth": 12500, @@ -22189,11 +22189,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.4xlarge", "name": "r7i.4xlarge", - "ram": 131072 + "ram": 131072, }, "r7i.8xlarge": { "bandwidth": 12500, @@ -22224,11 +22224,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.8xlarge", "name": "r7i.8xlarge", - "ram": 262144 + "ram": 262144, }, "r7i.large": { "bandwidth": 12500, @@ -22259,11 +22259,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.large", "name": "r7i.large", - "ram": 16384 + "ram": 16384, }, "r7i.xlarge": { "bandwidth": 12500, @@ -22294,11 +22294,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7i.xlarge", "name": "r7i.xlarge", - "ram": 32768 + "ram": 32768, }, "r7iz.12xlarge": { "bandwidth": 25000, @@ -22329,11 +22329,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.12xlarge", "name": "r7iz.12xlarge", - "ram": 393216 + "ram": 393216, }, "r7iz.16xlarge": { "bandwidth": 25000, @@ -22364,11 +22364,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.16xlarge", "name": "r7iz.16xlarge", - "ram": 524288 + "ram": 524288, }, "r7iz.2xlarge": { "bandwidth": 12500, @@ -22399,11 +22399,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.2xlarge", "name": "r7iz.2xlarge", - "ram": 65536 + "ram": 65536, }, "r7iz.32xlarge": { "bandwidth": 50000, @@ -22434,11 +22434,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.32xlarge", "name": "r7iz.32xlarge", - "ram": 1048576 + "ram": 1048576, }, "r7iz.4xlarge": { "bandwidth": 12500, @@ -22469,11 +22469,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.4xlarge", "name": "r7iz.4xlarge", - "ram": 131072 + "ram": 131072, }, "r7iz.8xlarge": { "bandwidth": 12500, @@ -22504,11 +22504,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.8xlarge", "name": "r7iz.8xlarge", - "ram": 262144 + "ram": 262144, }, "r7iz.large": { "bandwidth": 12500, @@ -22539,11 +22539,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.large", "name": "r7iz.large", - "ram": 16384 + "ram": 16384, }, "r7iz.xlarge": { "bandwidth": 12500, @@ -22574,11 +22574,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "r7iz.xlarge", "name": "r7iz.xlarge", - "ram": 32768 + "ram": 32768, }, "t1.micro": { "bandwidth": None, @@ -22606,11 +22606,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t1.micro", "name": "t1.micro", - "ram": 627 + "ram": 627, }, "t2.2xlarge": { "bandwidth": None, @@ -22620,7 +22620,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22640,11 +22640,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.2xlarge", "name": "t2.2xlarge", - "ram": 32768 + "ram": 32768, }, "t2.large": { "bandwidth": None, @@ -22654,7 +22654,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22674,11 +22674,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.large", "name": "t2.large", - "ram": 8192 + "ram": 8192, }, "t2.medium": { "bandwidth": None, @@ -22688,7 +22688,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22708,11 +22708,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.medium", "name": "t2.medium", - "ram": 4096 + "ram": 4096, }, "t2.micro": { "bandwidth": None, @@ -22722,7 +22722,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22742,11 +22742,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.micro", "name": "t2.micro", - "ram": 1024 + "ram": 1024, }, "t2.nano": { "bandwidth": None, @@ -22756,7 +22756,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22776,11 +22776,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.nano", "name": "t2.nano", - "ram": 512 + "ram": 512, }, "t2.small": { "bandwidth": None, @@ -22790,7 +22790,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22810,11 +22810,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.small", "name": "t2.small", - "ram": 2048 + "ram": 2048, }, "t2.xlarge": { "bandwidth": None, @@ -22824,7 +22824,7 @@ "classicnetworkingsupport": "false", "clockSpeed": "Up to 3.3 GHz", "currentGeneration": "Yes", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "No", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -22844,11 +22844,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t2.xlarge", "name": "t2.xlarge", - "ram": 16384 + "ram": 16384, }, "t3.2xlarge": { "bandwidth": 5, @@ -22879,11 +22879,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.2xlarge", "name": "t3.2xlarge", - "ram": 32768 + "ram": 32768, }, "t3.large": { "bandwidth": 5, @@ -22914,11 +22914,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.large", "name": "t3.large", - "ram": 8192 + "ram": 8192, }, "t3.medium": { "bandwidth": 5, @@ -22949,11 +22949,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.medium", "name": "t3.medium", - "ram": 4096 + "ram": 4096, }, "t3.micro": { "bandwidth": 5, @@ -22984,11 +22984,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.micro", "name": "t3.micro", - "ram": 1024 + "ram": 1024, }, "t3.nano": { "bandwidth": 5, @@ -23019,11 +23019,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.nano", "name": "t3.nano", - "ram": 512 + "ram": 512, }, "t3.small": { "bandwidth": 5, @@ -23054,11 +23054,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.small", "name": "t3.small", - "ram": 2048 + "ram": 2048, }, "t3.xlarge": { "bandwidth": 5, @@ -23089,11 +23089,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3.xlarge", "name": "t3.xlarge", - "ram": 16384 + "ram": 16384, }, "t3a.2xlarge": { "bandwidth": 5, @@ -23104,7 +23104,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2780 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23124,11 +23124,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.2xlarge", "name": "t3a.2xlarge", - "ram": 32768 + "ram": 32768, }, "t3a.large": { "bandwidth": 5, @@ -23139,7 +23139,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2780 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23159,11 +23159,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.large", "name": "t3a.large", - "ram": 8192 + "ram": 8192, }, "t3a.medium": { "bandwidth": 5, @@ -23174,7 +23174,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2085 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23194,11 +23194,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.medium", "name": "t3a.medium", - "ram": 4096 + "ram": 4096, }, "t3a.micro": { "bandwidth": 5, @@ -23209,7 +23209,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2085 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23229,11 +23229,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.micro", "name": "t3a.micro", - "ram": 1024 + "ram": 1024, }, "t3a.nano": { "bandwidth": 5, @@ -23244,7 +23244,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2085 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23264,11 +23264,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.nano", "name": "t3a.nano", - "ram": 512 + "ram": 512, }, "t3a.small": { "bandwidth": 5, @@ -23279,7 +23279,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2085 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23299,11 +23299,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.small", "name": "t3a.small", - "ram": 2048 + "ram": 2048, }, "t3a.xlarge": { "bandwidth": 5, @@ -23314,7 +23314,7 @@ "clockSpeed": "2.5 GHz", "currentGeneration": "Yes", "dedicatedEbsThroughput": "Up to 2780 Mbps", - "ecu": "Variable", + "ecu": "NA", "enhancedNetworkingSupported": "Yes", "gpuMemory": "NA", "instanceFamily": "General purpose", @@ -23334,11 +23334,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t3a.xlarge", "name": "t3a.xlarge", - "ram": 16384 + "ram": 16384, }, "t4g.2xlarge": { "bandwidth": 5, @@ -23368,11 +23368,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.2xlarge", "name": "t4g.2xlarge", - "ram": 32768 + "ram": 32768, }, "t4g.large": { "bandwidth": 5, @@ -23402,11 +23402,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.large", "name": "t4g.large", - "ram": 8192 + "ram": 8192, }, "t4g.medium": { "bandwidth": 5, @@ -23436,11 +23436,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.medium", "name": "t4g.medium", - "ram": 4096 + "ram": 4096, }, "t4g.micro": { "bandwidth": 5, @@ -23470,11 +23470,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.micro", "name": "t4g.micro", - "ram": 1024 + "ram": 1024, }, "t4g.nano": { "bandwidth": 5, @@ -23504,11 +23504,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.nano", "name": "t4g.nano", - "ram": 512 + "ram": 512, }, "t4g.small": { "bandwidth": 5, @@ -23538,11 +23538,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.small", "name": "t4g.small", - "ram": 2048 + "ram": 2048, }, "t4g.xlarge": { "bandwidth": 5, @@ -23572,11 +23572,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "t4g.xlarge", "name": "t4g.xlarge", - "ram": 16384 + "ram": 16384, }, "trn1.2xlarge": { "bandwidth": 12500, @@ -23607,11 +23607,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "trn1.2xlarge", "name": "trn1.2xlarge", - "ram": 32768 + "ram": 32768, }, "trn1.32xlarge": { "bandwidth": 800, @@ -23642,11 +23642,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "trn1.32xlarge", "name": "trn1.32xlarge", - "ram": 524288 + "ram": 524288, }, "trn1n.32xlarge": { "bandwidth": 1600, @@ -23677,11 +23677,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "4 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "trn1n.32xlarge", "name": "trn1n.32xlarge", - "ram": 524288 + "ram": 524288, }, "u-12tb1.112xlarge": { "bandwidth": 100, @@ -23711,11 +23711,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-12tb1.112xlarge", "name": "u-12tb1.112xlarge", - "ram": 12582912 + "ram": 12582912, }, "u-18tb1.112xlarge": { "bandwidth": 100, @@ -23745,11 +23745,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-18tb1.112xlarge", "name": "u-18tb1.112xlarge", - "ram": 18874368 + "ram": 18874368, }, "u-24tb1.112xlarge": { "bandwidth": 100, @@ -23779,11 +23779,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-24tb1.112xlarge", "name": "u-24tb1.112xlarge", - "ram": 25165824 + "ram": 25165824, }, "u-3tb1.56xlarge": { "bandwidth": 50, @@ -23814,11 +23814,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "224", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-3tb1.56xlarge", "name": "u-3tb1.56xlarge", - "ram": 3145728 + "ram": 3145728, }, "u-6tb1.112xlarge": { "bandwidth": 100, @@ -23848,11 +23848,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-6tb1.112xlarge", "name": "u-6tb1.112xlarge", - "ram": 6291456 + "ram": 6291456, }, "u-6tb1.56xlarge": { "bandwidth": 100, @@ -23882,11 +23882,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "224", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-6tb1.56xlarge", "name": "u-6tb1.56xlarge", - "ram": 6291456 + "ram": 6291456, }, "u-9tb1.112xlarge": { "bandwidth": 100, @@ -23916,11 +23916,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "448", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u-9tb1.112xlarge", "name": "u-9tb1.112xlarge", - "ram": 9437184 + "ram": 9437184, }, "u7i-12tb.224xlarge": { "bandwidth": 100, @@ -23951,11 +23951,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "896", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u7i-12tb.224xlarge", "name": "u7i-12tb.224xlarge", - "ram": 12582912 + "ram": 12582912, }, "u7in-16tb.224xlarge": { "bandwidth": 200, @@ -23964,7 +23964,7 @@ "availabilityzone": "NA", "classicnetworkingsupport": "false", "clockSpeed": "2.9 GHz", - "currentGeneration": "No", + "currentGeneration": "Yes", "dedicatedEbsThroughput": "100 Gbps", "ecu": "NA", "enhancedNetworkingSupported": "Yes", @@ -23986,11 +23986,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "896", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u7in-16tb.224xlarge", "name": "u7in-16tb.224xlarge", - "ram": 16777216 + "ram": 16777216, }, "u7in-24tb.224xlarge": { "bandwidth": 200, @@ -24021,11 +24021,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "896", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u7in-24tb.224xlarge", "name": "u7in-24tb.224xlarge", - "ram": 25165824 + "ram": 25165824, }, "u7in-32tb.224xlarge": { "bandwidth": 200, @@ -24056,11 +24056,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "896", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "u7in-32tb.224xlarge", "name": "u7in-32tb.224xlarge", - "ram": 33554432 + "ram": 33554432, }, "vt1.24xlarge": { "bandwidth": 25000, @@ -24091,11 +24091,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "vt1.24xlarge", "name": "vt1.24xlarge", - "ram": 196608 + "ram": 196608, }, "vt1.3xlarge": { "bandwidth": 3125, @@ -24126,11 +24126,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "12", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "vt1.3xlarge", "name": "vt1.3xlarge", - "ram": 24576 + "ram": 24576, }, "vt1.6xlarge": { "bandwidth": 6250, @@ -24161,11 +24161,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "vt1.6xlarge", "name": "vt1.6xlarge", - "ram": 49152 + "ram": 49152, }, "x1.16xlarge": { "bandwidth": None, @@ -24196,11 +24196,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1920 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1.16xlarge", "name": "x1.16xlarge", - "ram": 999424 + "ram": 999424, }, "x1.32xlarge": { "bandwidth": None, @@ -24231,11 +24231,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1920 SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1.32xlarge", "name": "x1.32xlarge", - "ram": 1998848 + "ram": 1998848, }, "x1e.16xlarge": { "bandwidth": 10, @@ -24266,11 +24266,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1920 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.16xlarge", "name": "x1e.16xlarge", - "ram": 1998848 + "ram": 1998848, }, "x1e.2xlarge": { "bandwidth": 10, @@ -24301,11 +24301,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 240 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.2xlarge", "name": "x1e.2xlarge", - "ram": 249856 + "ram": 249856, }, "x1e.32xlarge": { "bandwidth": 25, @@ -24336,11 +24336,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1920 SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.32xlarge", "name": "x1e.32xlarge", - "ram": 3997696 + "ram": 3997696, }, "x1e.4xlarge": { "bandwidth": 10, @@ -24371,11 +24371,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 480 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.4xlarge", "name": "x1e.4xlarge", - "ram": 499712 + "ram": 499712, }, "x1e.8xlarge": { "bandwidth": 10, @@ -24406,11 +24406,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 960 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.8xlarge", "name": "x1e.8xlarge", - "ram": 999424 + "ram": 999424, }, "x1e.xlarge": { "bandwidth": 10, @@ -24441,11 +24441,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 120 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x1e.xlarge", "name": "x1e.xlarge", - "ram": 124928 + "ram": 124928, }, "x2gd.12xlarge": { "bandwidth": 20, @@ -24475,11 +24475,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.12xlarge", "name": "x2gd.12xlarge", - "ram": 786432 + "ram": 786432, }, "x2gd.16xlarge": { "bandwidth": 25, @@ -24509,11 +24509,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.16xlarge", "name": "x2gd.16xlarge", - "ram": 1048576 + "ram": 1048576, }, "x2gd.2xlarge": { "bandwidth": 10, @@ -24543,11 +24543,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 474 SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.2xlarge", "name": "x2gd.2xlarge", - "ram": 131072 + "ram": 131072, }, "x2gd.4xlarge": { "bandwidth": 10, @@ -24577,11 +24577,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.4xlarge", "name": "x2gd.4xlarge", - "ram": 262144 + "ram": 262144, }, "x2gd.8xlarge": { "bandwidth": 12, @@ -24611,11 +24611,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.8xlarge", "name": "x2gd.8xlarge", - "ram": 524288 + "ram": 524288, }, "x2gd.large": { "bandwidth": 10, @@ -24645,11 +24645,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.large", "name": "x2gd.large", - "ram": 32768 + "ram": 32768, }, "x2gd.medium": { "bandwidth": 10, @@ -24679,11 +24679,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 59 SSD", "vcpu": "1", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.medium", "name": "x2gd.medium", - "ram": 16384 + "ram": 16384, }, "x2gd.xlarge": { "bandwidth": 10, @@ -24713,11 +24713,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2gd.xlarge", "name": "x2gd.xlarge", - "ram": 65536 + "ram": 65536, }, "x2idn.16xlarge": { "bandwidth": 50, @@ -24748,11 +24748,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2idn.16xlarge", "name": "x2idn.16xlarge", - "ram": 1048576 + "ram": 1048576, }, "x2idn.24xlarge": { "bandwidth": 75, @@ -24783,11 +24783,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2idn.24xlarge", "name": "x2idn.24xlarge", - "ram": 1572864 + "ram": 1572864, }, "x2idn.32xlarge": { "bandwidth": 100, @@ -24818,11 +24818,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2idn.32xlarge", "name": "x2idn.32xlarge", - "ram": 2097152 + "ram": 2097152, }, "x2iedn.16xlarge": { "bandwidth": 50, @@ -24853,11 +24853,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 1900 NVMe SSD", "vcpu": "64", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.16xlarge", "name": "x2iedn.16xlarge", - "ram": 2097152 + "ram": 2097152, }, "x2iedn.24xlarge": { "bandwidth": 75, @@ -24888,11 +24888,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1425 NVMe SSD", "vcpu": "96", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.24xlarge", "name": "x2iedn.24xlarge", - "ram": 3145728 + "ram": 3145728, }, "x2iedn.2xlarge": { "bandwidth": 25, @@ -24923,11 +24923,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 237 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.2xlarge", "name": "x2iedn.2xlarge", - "ram": 262144 + "ram": 262144, }, "x2iedn.32xlarge": { "bandwidth": 100, @@ -24958,11 +24958,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 1900 NVMe SSD", "vcpu": "128", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.32xlarge", "name": "x2iedn.32xlarge", - "ram": 4194304 + "ram": 4194304, }, "x2iedn.4xlarge": { "bandwidth": 25, @@ -24993,11 +24993,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 475 NVMe SSD", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.4xlarge", "name": "x2iedn.4xlarge", - "ram": 524288 + "ram": 524288, }, "x2iedn.8xlarge": { "bandwidth": 25, @@ -25028,11 +25028,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 950 NVMe SSD", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.8xlarge", "name": "x2iedn.8xlarge", - "ram": 1048576 + "ram": 1048576, }, "x2iedn.xlarge": { "bandwidth": 25, @@ -25063,11 +25063,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 118 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iedn.xlarge", "name": "x2iedn.xlarge", - "ram": 131072 + "ram": 131072, }, "x2iezn.12xlarge": { "bandwidth": 100, @@ -25098,11 +25098,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iezn.12xlarge", "name": "x2iezn.12xlarge", - "ram": 1572864 + "ram": 1572864, }, "x2iezn.2xlarge": { "bandwidth": 25, @@ -25133,11 +25133,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iezn.2xlarge", "name": "x2iezn.2xlarge", - "ram": 262144 + "ram": 262144, }, "x2iezn.4xlarge": { "bandwidth": 25, @@ -25168,11 +25168,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "16", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iezn.4xlarge", "name": "x2iezn.4xlarge", - "ram": 524288 + "ram": 524288, }, "x2iezn.6xlarge": { "bandwidth": 50, @@ -25203,11 +25203,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iezn.6xlarge", "name": "x2iezn.6xlarge", - "ram": 786432 + "ram": 786432, }, "x2iezn.8xlarge": { "bandwidth": 75, @@ -25238,11 +25238,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "EBS only", "vcpu": "32", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "x2iezn.8xlarge", "name": "x2iezn.8xlarge", - "ram": 1048576 + "ram": 1048576, }, "z1d.12xlarge": { "bandwidth": 25, @@ -25273,11 +25273,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "2 x 900 NVMe SSD", "vcpu": "48", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.12xlarge", "name": "z1d.12xlarge", - "ram": 393216 + "ram": 393216, }, "z1d.2xlarge": { "bandwidth": 10, @@ -25308,11 +25308,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 300 NVMe SSD", "vcpu": "8", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.2xlarge", "name": "z1d.2xlarge", - "ram": 65536 + "ram": 65536, }, "z1d.3xlarge": { "bandwidth": 10, @@ -25343,11 +25343,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 450 NVMe SSD", "vcpu": "12", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.3xlarge", "name": "z1d.3xlarge", - "ram": 98304 + "ram": 98304, }, "z1d.6xlarge": { "bandwidth": 10, @@ -25378,11 +25378,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 900 NVMe SSD", "vcpu": "24", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.6xlarge", "name": "z1d.6xlarge", - "ram": 196608 + "ram": 196608, }, "z1d.large": { "bandwidth": 10, @@ -25413,11 +25413,11 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 75 NVMe SSD", "vcpu": "2", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.large", "name": "z1d.large", - "ram": 16384 + "ram": 16384, }, "z1d.xlarge": { "bandwidth": 10, @@ -25448,10 +25448,10 @@ "servicename": "Amazon Elastic Compute Cloud", "storage": "1 x 150 NVMe SSD", "vcpu": "4", - "vpcnetworkingsupport": "true" + "vpcnetworkingsupport": "true", }, "id": "z1d.xlarge", "name": "z1d.xlarge", - "ram": 32768 - } -} \ No newline at end of file + "ram": 32768, + }, +} diff --git a/libcloud/compute/constants/ec2_region_details_complete.py b/libcloud/compute/constants/ec2_region_details_complete.py index 0d540b02a8..b60767a9e1 100644 --- a/libcloud/compute/constants/ec2_region_details_complete.py +++ b/libcloud/compute/constants/ec2_region_details_complete.py @@ -21,7 +21,7 @@ "endpoint": "ec2.af-south-1.amazonaws.com", "id": "af-south-1", "instance_types": [], - "signature_version": "4" + "signature_version": "4", }, "ap-east-1": { "api_name": "ec2_ap_east", @@ -224,9 +224,9 @@ "t4g.small", "t4g.xlarge", "x1.16xlarge", - "x1.32xlarge" + "x1.32xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "ap-northeast-1": { "api_name": "ec2_ap_northeast", @@ -903,9 +903,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "ap-northeast-2": { "api_name": "ec2_ap_northeast", @@ -1367,9 +1367,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "ap-northeast-3": { "api_name": "ec2_ap_northeast", @@ -1377,7 +1377,7 @@ "endpoint": "ec2.ap-northeast-3.amazonaws.com", "id": "ap-northeast-3", "instance_types": [], - "signature_version": "4" + "signature_version": "4", }, "ap-south-1": { "api_name": "ec2_ap_south_1", @@ -1652,6 +1652,24 @@ "m6id.8xlarge", "m6id.large", "m6id.xlarge", + "m6idn.12xlarge", + "m6idn.16xlarge", + "m6idn.24xlarge", + "m6idn.2xlarge", + "m6idn.32xlarge", + "m6idn.4xlarge", + "m6idn.8xlarge", + "m6idn.large", + "m6idn.xlarge", + "m6in.12xlarge", + "m6in.16xlarge", + "m6in.24xlarge", + "m6in.2xlarge", + "m6in.32xlarge", + "m6in.4xlarge", + "m6in.8xlarge", + "m6in.large", + "m6in.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -1859,9 +1877,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "ap-southeast-1": { "api_name": "ec2_ap_southeast", @@ -2482,9 +2500,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "ap-southeast-2": { "api_name": "ec2_ap_southeast_2", @@ -2866,6 +2884,7 @@ "p3.16xlarge", "p3.2xlarge", "p3.8xlarge", + "p4d.24xlarge", "p5.48xlarge", "r3.2xlarge", "r3.4xlarge", @@ -3060,9 +3079,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "ca-central-1": { "api_name": "ec2_ca_central_1", @@ -3148,6 +3167,15 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6id.12xlarge", + "c6id.16xlarge", + "c6id.24xlarge", + "c6id.2xlarge", + "c6id.32xlarge", + "c6id.4xlarge", + "c6id.8xlarge", + "c6id.large", + "c6id.xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", @@ -3335,6 +3363,24 @@ "m6id.8xlarge", "m6id.large", "m6id.xlarge", + "m6idn.12xlarge", + "m6idn.16xlarge", + "m6idn.24xlarge", + "m6idn.2xlarge", + "m6idn.32xlarge", + "m6idn.4xlarge", + "m6idn.8xlarge", + "m6idn.large", + "m6idn.xlarge", + "m6in.12xlarge", + "m6in.16xlarge", + "m6in.24xlarge", + "m6in.2xlarge", + "m6in.32xlarge", + "m6in.4xlarge", + "m6in.8xlarge", + "m6in.large", + "m6in.xlarge", "m7g.12xlarge", "m7g.16xlarge", "m7g.2xlarge", @@ -3506,9 +3552,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge" + "x2iedn.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "cn-north-1": { "api_name": "ec2_cn_north", @@ -3516,7 +3562,7 @@ "endpoint": "ec2.cn-north-1.amazonaws.com.cn", "id": "cn-north-1", "instance_types": [], - "signature_version": "4" + "signature_version": "4", }, "cn-northwest-1": { "api_name": "ec2_cn_northwest", @@ -3524,7 +3570,7 @@ "endpoint": "ec2.cn-northwest-1.amazonaws.com.cn", "id": "cn-northwest-1", "instance_types": [], - "signature_version": "4" + "signature_version": "4", }, "eu-central-1": { "api_name": "ec2_eu_central", @@ -4179,9 +4225,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "eu-north-1": { "api_name": "ec2_eu_north_stockholm", @@ -4602,9 +4648,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge" + "x2iedn.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "eu-south-1": { "api_name": "ec2_eu_south", @@ -4878,9 +4924,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge" + "x2iedn.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "eu-west-1": { "api_name": "ec2_eu_west", @@ -5591,9 +5637,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "eu-west-2": { "api_name": "ec2_eu_west_london", @@ -6055,9 +6101,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "eu-west-3": { "api_name": "ec2_eu_west_paris", @@ -6428,9 +6474,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge" + "x2iedn.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "sa-east-1": { "api_name": "ec2_sa_east", @@ -6531,6 +6577,15 @@ "c6i.8xlarge", "c6i.large", "c6i.xlarge", + "c6id.12xlarge", + "c6id.16xlarge", + "c6id.24xlarge", + "c6id.2xlarge", + "c6id.32xlarge", + "c6id.4xlarge", + "c6id.8xlarge", + "c6id.large", + "c6id.xlarge", "c6in.12xlarge", "c6in.16xlarge", "c6in.24xlarge", @@ -6883,9 +6938,9 @@ "x2iedn.32xlarge", "x2iedn.4xlarge", "x2iedn.8xlarge", - "x2iedn.xlarge" + "x2iedn.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "us-east-1": { "api_name": "ec2_us_east", @@ -7613,9 +7668,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "us-east-2": { "api_name": "ec2_us_east_ohio", @@ -8291,9 +8346,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "4" + "signature_version": "4", }, "us-gov-west-1": { "api_name": "ec2_us_govwest", @@ -8301,7 +8356,7 @@ "endpoint": "ec2.us-gov-west-1.amazonaws.com", "id": "us-gov-west-1", "instance_types": [], - "signature_version": "2" + "signature_version": "2", }, "us-west-1": { "api_name": "ec2_us_west", @@ -8772,9 +8827,9 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" + "signature_version": "2", }, "us-west-2": { "api_name": "ec2_us_west_oregon", @@ -9500,8 +9555,8 @@ "z1d.3xlarge", "z1d.6xlarge", "z1d.large", - "z1d.xlarge" + "z1d.xlarge", ], - "signature_version": "2" - } -} \ No newline at end of file + "signature_version": "2", + }, +} diff --git a/libcloud/compute/constants/ec2_region_details_partial.py b/libcloud/compute/constants/ec2_region_details_partial.py index 32fc596074..f4728e72e2 100644 --- a/libcloud/compute/constants/ec2_region_details_partial.py +++ b/libcloud/compute/constants/ec2_region_details_partial.py @@ -20,160 +20,160 @@ "country": "South Africa", "endpoint": "ec2.af-south-1.amazonaws.com", "id": "af-south-1", - "signature_version": "4" + "signature_version": "4", }, "ap-east-1": { "api_name": "ec2_ap_east", "country": "Hong Kong", "endpoint": "ec2.ap-east-1.amazonaws.com", "id": "ap-east-1", - "signature_version": "2" + "signature_version": "2", }, "ap-northeast-1": { "api_name": "ec2_ap_northeast", "country": "Japan", "endpoint": "ec2.ap-northeast-1.amazonaws.com", "id": "ap-northeast-1", - "signature_version": "2" + "signature_version": "2", }, "ap-northeast-2": { "api_name": "ec2_ap_northeast", "country": "South Korea", "endpoint": "ec2.ap-northeast-2.amazonaws.com", "id": "ap-northeast-2", - "signature_version": "4" + "signature_version": "4", }, "ap-northeast-3": { "api_name": "ec2_ap_northeast", "country": "Japan", "endpoint": "ec2.ap-northeast-3.amazonaws.com", "id": "ap-northeast-3", - "signature_version": "4" + "signature_version": "4", }, "ap-south-1": { "api_name": "ec2_ap_south_1", "country": "India", "endpoint": "ec2.ap-south-1.amazonaws.com", "id": "ap-south-1", - "signature_version": "4" + "signature_version": "4", }, "ap-southeast-1": { "api_name": "ec2_ap_southeast", "country": "Singapore", "endpoint": "ec2.ap-southeast-1.amazonaws.com", "id": "ap-southeast-1", - "signature_version": "2" + "signature_version": "2", }, "ap-southeast-2": { "api_name": "ec2_ap_southeast_2", "country": "Australia", "endpoint": "ec2.ap-southeast-2.amazonaws.com", "id": "ap-southeast-2", - "signature_version": "2" + "signature_version": "2", }, "ca-central-1": { "api_name": "ec2_ca_central_1", "country": "Canada", "endpoint": "ec2.ca-central-1.amazonaws.com", "id": "ca-central-1", - "signature_version": "4" + "signature_version": "4", }, "cn-north-1": { "api_name": "ec2_cn_north", "country": "China", "endpoint": "ec2.cn-north-1.amazonaws.com.cn", "id": "cn-north-1", - "signature_version": "4" + "signature_version": "4", }, "cn-northwest-1": { "api_name": "ec2_cn_northwest", "country": "China", "endpoint": "ec2.cn-northwest-1.amazonaws.com.cn", "id": "cn-northwest-1", - "signature_version": "4" + "signature_version": "4", }, "eu-central-1": { "api_name": "ec2_eu_central", "country": "Frankfurt", "endpoint": "ec2.eu-central-1.amazonaws.com", "id": "eu-central-1", - "signature_version": "4" + "signature_version": "4", }, "eu-north-1": { "api_name": "ec2_eu_north_stockholm", "country": "Stockholm", "endpoint": "ec2.eu-north-1.amazonaws.com", "id": "eu-north-1", - "signature_version": "4" + "signature_version": "4", }, "eu-south-1": { "api_name": "ec2_eu_south", "country": "Italy", "endpoint": "ec2.eu-south-1.amazonaws.com", "id": "eu-south-1", - "signature_version": "4" + "signature_version": "4", }, "eu-west-1": { "api_name": "ec2_eu_west", "country": "Ireland", "endpoint": "ec2.eu-west-1.amazonaws.com", "id": "eu-west-1", - "signature_version": "2" + "signature_version": "2", }, "eu-west-2": { "api_name": "ec2_eu_west_london", "country": "United Kingdom", "endpoint": "ec2.eu-west-2.amazonaws.com", "id": "eu-west-2", - "signature_version": "4" + "signature_version": "4", }, "eu-west-3": { "api_name": "ec2_eu_west_paris", "country": "France", "endpoint": "ec2.eu-west-3.amazonaws.com", "id": "eu-west-3", - "signature_version": "4" + "signature_version": "4", }, "sa-east-1": { "api_name": "ec2_sa_east", "country": "Brazil", "endpoint": "ec2.sa-east-1.amazonaws.com", "id": "sa-east-1", - "signature_version": "2" + "signature_version": "2", }, "us-east-1": { "api_name": "ec2_us_east", "country": "USA", "endpoint": "ec2.us-east-1.amazonaws.com", "id": "us-east-1", - "signature_version": "2" + "signature_version": "2", }, "us-east-2": { "api_name": "ec2_us_east_ohio", "country": "USA", "endpoint": "ec2.us-east-2.amazonaws.com", "id": "us-east-2", - "signature_version": "4" + "signature_version": "4", }, "us-gov-west-1": { "api_name": "ec2_us_govwest", "country": "US", "endpoint": "ec2.us-gov-west-1.amazonaws.com", "id": "us-gov-west-1", - "signature_version": "2" + "signature_version": "2", }, "us-west-1": { "api_name": "ec2_us_west", "country": "USA", "endpoint": "ec2.us-west-1.amazonaws.com", "id": "us-west-1", - "signature_version": "2" + "signature_version": "2", }, "us-west-2": { "api_name": "ec2_us_west_oregon", "country": "US", "endpoint": "ec2.us-west-2.amazonaws.com", "id": "us-west-2", - "signature_version": "2" - } -} \ No newline at end of file + "signature_version": "2", + }, +} diff --git a/libcloud/data/pricing.json b/libcloud/data/pricing.json index 12e4b6c6de..06cd479607 100644 --- a/libcloud/data/pricing.json +++ b/libcloud/data/pricing.json @@ -37634,11 +37634,13 @@ "ap-northeast-2": 8.131, "ap-southeast-1": 8.279, "ap-southeast-2": 9.314, + "ca-central-1": 7.836, "ca-west-1": 7.836, "eu-central-1": 8.205, "eu-west-1": 8.057, "eu-west-2": 8.501, "il-central-1": 8.46, + "sa-east-1": 11.014, "us-east-1": 7.096, "us-east-2": 7.096, "us-gov-west-1": 8.575, @@ -37649,11 +37651,13 @@ "ap-northeast-2": 0.12705, "ap-southeast-1": 0.1176, "ap-southeast-2": 0.14553, + "ca-central-1": 0.0, "ca-west-1": 0.1113, "eu-central-1": 0.11655, "eu-west-1": 0.11445, "eu-west-2": 0.12075, "il-central-1": 0.12017, + "sa-east-1": 0.15645, "us-east-1": 0.11088, "us-east-2": 0.0, "us-gov-west-1": 0.1218, @@ -37664,11 +37668,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 0.25872, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 0.2226, "eu-central-1": 0.2331, "eu-west-1": 0.2289, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.34419, "us-east-1": 0.0, "us-east-2": 0.2016, "us-gov-west-1": 0.0, @@ -37679,11 +37685,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 7.5264, "ap-southeast-2": 8.4672, + "ca-central-1": 0.0, "ca-west-1": 0.0, "eu-central-1": 7.4592, "eu-west-1": 7.3248, "eu-west-2": 0.0, "il-central-1": 7.69088, + "sa-east-1": 10.0128, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -37694,11 +37702,13 @@ "ap-northeast-2": 0.462, "ap-southeast-1": 0.51744, "ap-southeast-2": 0.5292, + "ca-central-1": 0.48972, "ca-west-1": 0.4452, "eu-central-1": 0.4662, "eu-west-1": 0.50358, "eu-west-2": 0.0, "il-central-1": 0.52875, + "sa-east-1": 0.68838, "us-east-1": 0.44352, "us-east-2": 0.44352, "us-gov-west-1": 0.53592, @@ -37709,11 +37719,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 1.03488, "ap-southeast-2": 0.0, + "ca-central-1": 0.97944, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.00716, "eu-west-2": 1.0626, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 1.07184, @@ -37724,11 +37736,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 1.8816, "ap-southeast-2": 2.1168, + "ca-central-1": 1.7808, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.8312, "eu-west-2": 0.0, "il-central-1": 1.92272, + "sa-east-1": 2.75352, "us-east-1": 1.77408, "us-east-2": 1.6128, "us-gov-west-1": 0.0, @@ -37739,11 +37753,13 @@ "ap-northeast-2": 3.0492, "ap-southeast-1": 2.8224, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 0.0, "eu-central-1": 2.7972, "eu-west-1": 2.7468, "eu-west-2": 2.898, "il-central-1": 3.17249, + "sa-east-1": 3.7548, "us-east-1": 2.4192, "us-east-2": 2.4192, "us-gov-west-1": 0.0, @@ -37754,11 +37770,13 @@ "ap-northeast-2": 3.696, "ap-southeast-1": 4.13952, "ap-southeast-2": 4.65696, + "ca-central-1": 3.5616, "ca-west-1": 3.5616, "eu-central-1": 3.7296, "eu-west-1": 0.0, "eu-west-2": 4.2504, "il-central-1": 3.84544, + "sa-east-1": 5.50704, "us-east-1": 3.2256, "us-east-2": 0.0, "us-gov-west-1": 3.8976, @@ -37769,11 +37787,13 @@ "ap-northeast-2": 6.0984, "ap-southeast-1": 5.6448, "ap-southeast-2": 0.0, + "ca-central-1": 5.3424, "ca-west-1": 5.3424, "eu-central-1": 5.5944, "eu-west-1": 5.4936, "eu-west-2": 0.0, "il-central-1": 6.34498, + "sa-east-1": 0.0, "us-east-1": 4.8384, "us-east-2": 4.8384, "us-gov-west-1": 0.0, @@ -37784,11 +37804,13 @@ "ap-northeast-2": 7.392, "ap-southeast-1": 7.5264, "ap-southeast-2": 8.4672, + "ca-central-1": 0.0, "ca-west-1": 7.1232, "eu-central-1": 7.4592, "eu-west-1": 0.0, "eu-west-2": 7.728, "il-central-1": 7.69088, + "sa-east-1": 10.0128, "us-east-1": 6.4512, "us-east-2": 6.4512, "us-gov-west-1": 0.0, @@ -44403,8 +44425,10 @@ }, "m6idn": { "ap-northeast-1": 14.414, + "ap-south-1": 11.943, "ap-southeast-1": 13.755, "ap-southeast-2": 14.167, + "ca-central-1": 12.262, "eu-central-1": 13.344, "eu-north-1": 11.686, "eu-south-2": 12.262, @@ -44417,8 +44441,10 @@ }, "m6idn.large": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.21493, "ap-southeast-2": 0.0, + "ca-central-1": 0.17418, "eu-central-1": 0.18954, "eu-north-1": 0.1826, "eu-south-2": 0.0, @@ -44431,8 +44457,10 @@ }, "m6idn.xlarge": { "ap-northeast-1": 0.4095, + "ap-south-1": 0.37323, "ap-southeast-1": 0.0, "ap-southeast-2": 0.44273, + "ca-central-1": 0.34836, "eu-central-1": 0.41699, "eu-north-1": 0.332, "eu-south-2": 0.3832, @@ -44445,8 +44473,10 @@ }, "m6idn.metal": { "ap-northeast-1": 13.104, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 12.87936, + "ca-central-1": 11.14752, "eu-central-1": 12.13056, "eu-north-1": 10.624, "eu-south-2": 11.14752, @@ -44459,8 +44489,10 @@ }, "m6idn.2xlarge": { "ap-northeast-1": 0.819, + "ap-south-1": 0.6786, "ap-southeast-1": 0.0, "ap-southeast-2": 0.80496, + "ca-central-1": 0.76639, "eu-central-1": 0.83398, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -44473,8 +44505,10 @@ }, "m6idn.4xlarge": { "ap-northeast-1": 1.638, + "ap-south-1": 1.3572, "ap-southeast-1": 1.56312, "ap-southeast-2": 1.77091, + "ca-central-1": 1.39344, "eu-central-1": 1.66795, "eu-north-1": 1.4608, "eu-south-2": 0.0, @@ -44487,8 +44521,10 @@ }, "m6idn.8xlarge": { "ap-northeast-1": 3.6036, + "ap-south-1": 0.0, "ap-southeast-1": 3.43886, "ap-southeast-2": 3.54182, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 3.06557, @@ -44501,8 +44537,10 @@ }, "m6idn.12xlarge": { "ap-northeast-1": 5.4054, + "ap-south-1": 0.0, "ap-southeast-1": 4.68936, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 4.54896, "eu-north-1": 4.3824, "eu-south-2": 0.0, @@ -44515,8 +44553,10 @@ }, "m6idn.16xlarge": { "ap-northeast-1": 7.2072, + "ap-south-1": 5.97168, "ap-southeast-1": 0.0, "ap-southeast-2": 7.08365, + "ca-central-1": 6.13114, "eu-central-1": 6.67181, "eu-north-1": 5.312, "eu-south-2": 6.13114, @@ -44529,8 +44569,10 @@ }, "m6idn.24xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 8.1432, "ap-southeast-1": 9.37872, "ap-southeast-2": 0.0, + "ca-central-1": 8.36064, "eu-central-1": 10.00771, "eu-north-1": 8.7648, "eu-south-2": 8.36064, @@ -44543,8 +44585,10 @@ }, "m6idn.32xlarge": { "ap-northeast-1": 13.104, + "ap-south-1": 10.8576, "ap-southeast-1": 12.50496, "ap-southeast-2": 12.87936, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 11.14752, @@ -44557,8 +44601,10 @@ }, "m6in": { "ap-northeast-1": 12.602, + "ap-south-1": 10.214, "ap-southeast-1": 12.026, "ap-southeast-2": 12.355, + "ca-central-1": 10.925, "eu-central-1": 11.614, "eu-north-1": 10.419, "eu-south-2": 10.925, @@ -44571,8 +44617,10 @@ }, "m6in.large": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.1879, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.18147, "eu-north-1": 0.1628, "eu-south-2": 0.1707, @@ -44585,8 +44633,10 @@ }, "m6in.xlarge": { "ap-northeast-1": 0.35802, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.351, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.3256, "eu-south-2": 0.3414, @@ -44599,8 +44649,10 @@ }, "m6in.metal": { "ap-northeast-1": 11.45664, + "ap-south-1": 9.28512, "ap-southeast-1": 10.93248, "ap-southeast-2": 0.0, + "ca-central-1": 9.93152, "eu-central-1": 10.55808, "eu-north-1": 9.472, "eu-south-2": 9.93152, @@ -44613,8 +44665,10 @@ }, "m6in.2xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 0.63835, "ap-southeast-1": 0.75161, "ap-southeast-2": 0.702, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.6512, "eu-south-2": 0.62072, @@ -44627,8 +44681,10 @@ }, "m6in.4xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 1.16064, "ap-southeast-1": 1.50322, "ap-southeast-2": 1.404, + "ca-central-1": 0.0, "eu-central-1": 1.31976, "eu-north-1": 0.0, "eu-south-2": 1.36558, @@ -44641,8 +44697,10 @@ }, "m6in.8xlarge": { "ap-northeast-1": 2.86416, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 3.0888, + "ca-central-1": 2.48288, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 2.73117, @@ -44655,8 +44713,10 @@ }, "m6in.12xlarge": { "ap-northeast-1": 4.29624, + "ap-south-1": 0.0, "ap-southeast-1": 4.09968, "ap-southeast-2": 4.6332, + "ca-central-1": 0.0, "eu-central-1": 4.35521, "eu-north-1": 3.9072, "eu-south-2": 0.0, @@ -44669,8 +44729,10 @@ }, "m6in.16xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 5.10682, "ap-southeast-1": 5.46624, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.736, "eu-south-2": 0.0, @@ -44683,8 +44745,10 @@ }, "m6in.24xlarge": { "ap-northeast-1": 9.45173, + "ap-south-1": 7.66022, "ap-southeast-1": 9.0193, "ap-southeast-2": 9.2664, + "ca-central-1": 8.1935, "eu-central-1": 8.71042, "eu-north-1": 7.104, "eu-south-2": 7.44864, @@ -44697,8 +44761,10 @@ }, "m6in.32xlarge": { "ap-northeast-1": 11.45664, + "ap-south-1": 0.0, "ap-southeast-1": 10.93248, "ap-southeast-2": 11.232, + "ca-central-1": 9.93152, "eu-central-1": 0.0, "eu-north-1": 9.472, "eu-south-2": 9.93152, @@ -45608,6 +45674,14 @@ "us-east-2": 0.0, "us-west-2": 0.0 }, + "mac2-m1ultra": { + "us-east-1": 5.0, + "us-west-2": 5.0 + }, + "mac2-m1ultra.metal": { + "us-east-1": 0.0, + "us-west-2": 0.0 + }, "mac2-m2": { "ap-southeast-2": 1.097, "eu-central-1": 1.052, @@ -45774,6 +45848,7 @@ "ap-northeast-1": 44.92215, "ap-northeast-2": 45.38848, "ap-southeast-1": 39.3271, + "ap-southeast-2": 42.60438, "ca-central-1": 41.459, "eu-central-1": 0.0, "eu-west-1": 0.0, @@ -54175,11 +54250,13 @@ "ap-northeast-2": 0.1755, "ap-southeast-1": 0.1776, "ap-southeast-2": 0.0, + "ca-central-1": 0.18243, "ca-west-1": 0.0, "eu-central-1": 0.17655, "eu-west-1": 0.1859, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.21645, "us-east-1": 0.0, "us-east-2": 0.1608, "us-gov-west-1": 0.0, @@ -54190,11 +54267,13 @@ "ap-northeast-2": 0.3141, "ap-southeast-1": 0.0, "ap-southeast-2": 0.35106, + "ca-central-1": 0.30486, "ca-west-1": 0.0, "eu-central-1": 0.31641, "eu-west-1": 0.31179, "eu-west-2": 0.0, "il-central-1": 0.30034, + "sa-east-1": 0.40419, "us-east-1": 0.0, "us-east-2": 0.0, "us-gov-west-1": 0.32796, @@ -54205,11 +54284,13 @@ "ap-northeast-2": 7.522, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 7.2532, "ca-west-1": 7.2532, "eu-central-1": 7.5892, "eu-west-1": 7.4548, "eu-west-2": 7.858, "il-central-1": 7.82088, + "sa-east-1": 10.1428, "us-east-1": 6.5812, "us-east-2": 6.5812, "us-gov-west-1": 7.9252, @@ -54220,11 +54301,13 @@ "ap-northeast-2": 0.6382, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.61972, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.6613, "il-central-1": 0.65875, + "sa-east-1": 0.7558, "us-east-1": 0.57352, "us-east-2": 0.0, "us-gov-west-1": 0.6172, @@ -54235,11 +54318,13 @@ "ap-northeast-2": 1.054, "ap-southeast-1": 1.0708, "ap-southeast-2": 1.29424, + "ca-central-1": 0.0, "ca-west-1": 1.0204, "eu-central-1": 1.15564, "eu-west-1": 1.0456, "eu-west-2": 1.1926, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 1.01704, "us-east-2": 0.0, "us-gov-west-1": 1.1044, @@ -54250,11 +54335,13 @@ "ap-northeast-2": 1.978, "ap-southeast-1": 2.19976, "ap-southeast-2": 2.2468, + "ca-central-1": 1.9108, "ca-west-1": 2.08888, "eu-central-1": 2.18128, "eu-west-1": 0.0, "eu-west-2": 2.062, "il-central-1": 0.0, + "sa-east-1": 2.88352, "us-east-1": 1.7428, "us-east-2": 1.90408, "us-gov-west-1": 2.27368, @@ -54265,11 +54352,13 @@ "ap-northeast-2": 3.1792, "ap-southeast-1": 2.9524, "ap-southeast-2": 3.3052, + "ca-central-1": 3.06832, "ca-west-1": 2.8012, "eu-central-1": 2.9272, "eu-west-1": 2.8768, "eu-west-2": 3.028, "il-central-1": 3.01408, + "sa-east-1": 4.26028, "us-east-1": 2.79112, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -54280,11 +54369,13 @@ "ap-northeast-2": 4.1956, "ap-southeast-1": 4.26952, "ap-southeast-2": 4.3636, + "ca-central-1": 0.0, "ca-west-1": 4.04776, "eu-central-1": 0.0, "eu-west-1": 4.15864, "eu-west-2": 0.0, "il-central-1": 4.35998, + "sa-east-1": 0.0, "us-east-1": 3.67816, "us-east-2": 0.0, "us-gov-west-1": 4.0276, @@ -54295,11 +54386,13 @@ "ap-northeast-2": 6.2284, "ap-southeast-1": 5.7748, "ap-southeast-2": 7.11544, + "ca-central-1": 6.00664, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 6.17296, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 8.39056, "us-east-1": 4.9684, "us-east-2": 4.9684, "us-gov-west-1": 0.0, @@ -54310,11 +54403,13 @@ "ap-northeast-2": 7.522, "ap-southeast-1": 7.6564, "ap-southeast-2": 0.0, + "ca-central-1": 7.2532, "ca-west-1": 0.0, "eu-central-1": 7.5892, "eu-west-1": 7.4548, "eu-west-2": 0.0, "il-central-1": 7.82088, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 6.5812, "us-gov-west-1": 0.0, @@ -60246,8 +60341,10 @@ }, "m6idn.large": { "ap-northeast-1": 0.28523, + "ap-south-1": 0.24662, "ap-southeast-1": 0.25539, "ap-southeast-2": 0.28136, + "ca-central-1": 0.2516, "eu-central-1": 0.26849, "eu-north-1": 0.2426, "eu-south-2": 0.0, @@ -60260,8 +60357,10 @@ }, "m6idn.xlarge": { "ap-northeast-1": 0.51045, + "ap-south-1": 0.43323, "ap-southeast-1": 0.48986, "ap-southeast-2": 0.0, + "ca-central-1": 0.40836, "eu-central-1": 0.0, "eu-north-1": 0.392, "eu-south-2": 0.0, @@ -60274,8 +60373,10 @@ }, "m6idn.metal": { "ap-northeast-1": 13.234, + "ap-south-1": 10.9876, "ap-southeast-1": 0.0, "ap-southeast-2": 13.00936, + "ca-central-1": 0.0, "eu-central-1": 12.26056, "eu-north-1": 10.754, "eu-south-2": 0.0, @@ -60288,8 +60389,10 @@ }, "m6idn.2xlarge": { "ap-northeast-1": 1.0309, + "ap-south-1": 0.0, "ap-southeast-1": 0.98972, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.96398, "eu-north-1": 0.794, "eu-south-2": 0.89639, @@ -60302,8 +60405,10 @@ }, "m6idn.4xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 1.4872, "ap-southeast-1": 1.69312, "ap-southeast-2": 1.90091, + "ca-central-1": 0.0, "eu-central-1": 1.79795, "eu-north-1": 1.458, "eu-south-2": 0.0, @@ -60316,8 +60421,10 @@ }, "m6idn.8xlarge": { "ap-northeast-1": 3.406, + "ap-south-1": 3.11584, "ap-southeast-1": 3.56886, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 3.16264, "eu-north-1": 0.0, "eu-south-2": 2.91688, @@ -60330,8 +60437,10 @@ }, "m6idn.12xlarge": { "ap-northeast-1": 5.5354, + "ap-south-1": 0.0, "ap-southeast-1": 4.81936, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 5.13386, "eu-north-1": 4.114, "eu-south-2": 0.0, @@ -60344,8 +60453,10 @@ }, "m6idn.16xlarge": { "ap-northeast-1": 6.682, + "ap-south-1": 5.5588, "ap-southeast-1": 6.38248, "ap-southeast-2": 7.21365, + "ca-central-1": 6.26114, "eu-central-1": 6.19528, "eu-north-1": 0.0, "eu-south-2": 5.70376, @@ -60358,8 +60469,10 @@ }, "m6idn.24xlarge": { "ap-northeast-1": 9.958, + "ap-south-1": 9.08752, "ap-southeast-1": 9.50872, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 10.13771, "eu-north-1": 8.8948, "eu-south-2": 0.0, @@ -60372,8 +60485,10 @@ }, "m6idn.32xlarge": { "ap-northeast-1": 13.234, + "ap-south-1": 10.9876, "ap-southeast-1": 12.63496, "ap-southeast-2": 13.00936, + "ca-central-1": 11.27752, "eu-central-1": 0.0, "eu-north-1": 10.754, "eu-south-2": 0.0, @@ -60386,8 +60501,10 @@ }, "m6in.large": { "ap-northeast-1": 0.25691, + "ap-south-1": 0.0, "ap-southeast-1": 0.23082, "ap-southeast-2": 0.25305, + "ca-central-1": 0.0, "eu-central-1": 0.24147, "eu-north-1": 0.2228, "eu-south-2": 0.0, @@ -60400,8 +60517,10 @@ }, "m6in.xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 0.37918, "ap-southeast-1": 0.4358, "ap-southeast-2": 0.411, + "ca-central-1": 0.4014, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -60414,8 +60533,10 @@ }, "m6in.metal": { "ap-northeast-1": 11.58664, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 10.06152, "eu-central-1": 0.0, "eu-north-1": 9.602, "eu-south-2": 10.06152, @@ -60428,8 +60549,10 @@ }, "m6in.2xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.81328, "ap-southeast-2": 0.832, + "ca-central-1": 0.81279, "eu-central-1": 0.0, "eu-north-1": 0.722, "eu-south-2": 0.75072, @@ -60442,8 +60565,10 @@ }, "m6in.4xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 1.49656, "ap-southeast-2": 1.534, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 1.314, "eu-south-2": 0.0, @@ -60456,8 +60581,10 @@ }, "m6in.8xlarge": { "ap-northeast-1": 2.99416, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 2.938, + "ca-central-1": 2.86117, "eu-central-1": 2.76952, "eu-north-1": 0.0, "eu-south-2": 2.86117, @@ -60470,8 +60597,10 @@ }, "m6in.12xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 3.61192, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 3.682, "eu-south-2": 4.22675, @@ -60484,8 +60613,10 @@ }, "m6in.16xlarge": { "ap-northeast-1": 5.85832, + "ap-south-1": 4.77256, "ap-southeast-1": 6.14286, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.866, "eu-south-2": 0.0, @@ -60498,8 +60629,10 @@ }, "m6in.24xlarge": { "ap-northeast-1": 9.58173, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 8.554, + "ca-central-1": 0.0, "eu-central-1": 8.04856, "eu-north-1": 7.234, "eu-south-2": 7.57864, @@ -60512,8 +60645,10 @@ }, "m6in.32xlarge": { "ap-northeast-1": 11.58664, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 11.362, + "ca-central-1": 10.06152, "eu-central-1": 10.68808, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -61406,6 +61541,7 @@ "ap-northeast-1": 49.544365, "ap-northeast-2": 45.51848, "ap-southeast-1": 43.38981, + "ap-southeast-2": 42.73438, "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 0.0, @@ -69045,11 +69181,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 0.22436, "ap-southeast-2": 0.24053, + "ca-central-1": 0.21743, "ca-west-1": 0.2063, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.22783, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.20588, "us-east-2": 0.20588, "us-gov-west-1": 0.0, @@ -69060,11 +69198,13 @@ "ap-northeast-2": 0.3491, "ap-southeast-1": 0.0, "ap-southeast-2": 0.38606, + "ca-central-1": 0.3176, "ca-west-1": 0.3176, "eu-central-1": 0.3281, "eu-west-1": 0.34679, "eu-west-2": 0.3365, "il-central-1": 0.33534, + "sa-east-1": 0.4079, "us-east-1": 0.2966, "us-east-2": 0.31676, "us-gov-west-1": 0.3386, @@ -69075,11 +69215,13 @@ "ap-northeast-2": 7.557, "ap-southeast-1": 7.6914, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 0.0, "eu-central-1": 7.6242, "eu-west-1": 7.4898, "eu-west-2": 7.893, "il-central-1": 0.0, + "sa-east-1": 10.1778, "us-east-1": 6.6162, "us-east-2": 0.0, "us-gov-west-1": 7.9602, @@ -69090,11 +69232,13 @@ "ap-northeast-2": 0.627, "ap-southeast-1": 0.6354, "ap-southeast-2": 0.0, + "ca-central-1": 0.6102, "ca-west-1": 0.6102, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.6963, "il-central-1": 0.64568, + "sa-east-1": 0.0, "us-east-1": 0.60852, "us-east-2": 0.0, "us-gov-west-1": 0.6522, @@ -69105,11 +69249,13 @@ "ap-northeast-2": 1.089, "ap-southeast-1": 1.19988, "ap-southeast-2": 1.2234, + "ca-central-1": 0.0, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 1.0806, "eu-west-2": 1.131, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 1.05204, "us-east-2": 0.9714, "us-gov-west-1": 0.0, @@ -69120,11 +69266,13 @@ "ap-northeast-2": 2.1978, "ap-southeast-1": 2.23476, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 0.0, "eu-central-1": 2.0298, "eu-west-1": 2.17932, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 2.6682, "us-east-1": 1.7778, "us-east-2": 0.0, "us-gov-west-1": 2.1138, @@ -69135,11 +69283,13 @@ "ap-northeast-2": 3.2142, "ap-southeast-1": 2.9874, "ap-southeast-2": 3.65772, + "ca-central-1": 0.0, "ca-west-1": 3.10332, "eu-central-1": 2.9622, "eu-west-1": 3.18648, "eu-west-2": 3.063, "il-central-1": 3.33749, + "sa-east-1": 0.0, "us-east-1": 2.82612, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -69150,11 +69300,13 @@ "ap-northeast-2": 3.861, "ap-southeast-1": 3.9282, "ap-southeast-2": 4.82196, + "ca-central-1": 3.7266, "ca-west-1": 3.7266, "eu-central-1": 3.8946, "eu-west-1": 3.8274, "eu-west-2": 4.029, "il-central-1": 0.0, + "sa-east-1": 5.1714, "us-east-1": 3.71316, "us-east-2": 3.71316, "us-gov-west-1": 0.0, @@ -69165,11 +69317,13 @@ "ap-northeast-2": 6.2634, "ap-southeast-1": 5.8098, "ap-southeast-2": 6.5154, + "ca-central-1": 0.0, "ca-west-1": 6.04164, "eu-central-1": 0.0, "eu-west-1": 6.20796, "eu-west-2": 0.0, "il-central-1": 6.50998, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 5.0034, "us-gov-west-1": 0.0, @@ -69180,11 +69334,13 @@ "ap-northeast-2": 7.557, "ap-southeast-1": 7.6914, "ap-southeast-2": 8.6322, + "ca-central-1": 7.2882, "ca-west-1": 7.2882, "eu-central-1": 7.6242, "eu-west-1": 7.4898, "eu-west-2": 7.893, "il-central-1": 7.85588, + "sa-east-1": 10.1778, "us-east-1": 6.6162, "us-east-2": 6.6162, "us-gov-west-1": 7.9602, @@ -74876,8 +75032,10 @@ }, "m6idn.large": { "ap-northeast-1": 0.29975, + "ap-south-1": 0.28162, "ap-southeast-1": 0.0, "ap-southeast-2": 0.29624, + "ca-central-1": 0.2866, "eu-central-1": 0.0, "eu-north-1": 0.2776, "eu-south-2": 0.2866, @@ -74890,8 +75048,10 @@ }, "m6idn.xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 0.0, "ap-southeast-2": 0.53773, + "ca-central-1": 0.4782, "eu-central-1": 0.47408, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -74904,8 +75064,10 @@ }, "m6idn.metal": { "ap-northeast-1": 0.0, + "ap-south-1": 11.0226, "ap-southeast-1": 12.66996, "ap-southeast-2": 13.04436, + "ca-central-1": 11.31252, "eu-central-1": 12.29556, "eu-north-1": 10.789, "eu-south-2": 0.0, @@ -74918,8 +75080,10 @@ }, "m6idn.2xlarge": { "ap-northeast-1": 0.984, + "ap-south-1": 0.0, "ap-southeast-1": 1.02472, "ap-southeast-2": 1.05046, + "ca-central-1": 0.93139, "eu-central-1": 0.0, "eu-north-1": 0.8954, "eu-south-2": 0.0, @@ -74932,8 +75096,10 @@ }, "m6idn.4xlarge": { "ap-northeast-1": 1.803, + "ap-south-1": 1.65792, "ap-southeast-1": 1.88443, "ap-southeast-2": 1.77492, + "ca-central-1": 0.0, "eu-central-1": 1.83295, "eu-north-1": 1.493, "eu-south-2": 1.55844, @@ -74946,8 +75112,10 @@ }, "m6idn.8xlarge": { "ap-northeast-1": 3.441, + "ap-south-1": 3.15084, "ap-southeast-1": 3.60386, "ap-southeast-2": 3.38484, + "ca-central-1": 0.0, "eu-central-1": 3.5009, "eu-north-1": 3.0866, "eu-south-2": 0.0, @@ -74960,8 +75128,10 @@ }, "m6idn.12xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 4.2366, "ap-southeast-1": 4.85436, "ap-southeast-2": 0.0, + "ca-central-1": 4.76335, "eu-central-1": 4.71396, "eu-north-1": 4.5474, "eu-south-2": 4.76335, @@ -74974,8 +75144,10 @@ }, "m6idn.16xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 6.13668, "ap-southeast-1": 6.41748, "ap-southeast-2": 6.60468, + "ca-central-1": 6.29614, "eu-central-1": 0.0, "eu-north-1": 5.477, "eu-south-2": 0.0, @@ -74988,8 +75160,10 @@ }, "m6idn.24xlarge": { "ap-northeast-1": 10.9758, + "ap-south-1": 9.12252, "ap-southeast-1": 9.54372, "ap-southeast-2": 10.79047, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 8.133, "eu-south-2": 0.0, @@ -75002,8 +75176,10 @@ }, "m6idn.32xlarge": { "ap-northeast-1": 13.269, + "ap-south-1": 11.0226, "ap-southeast-1": 0.0, "ap-southeast-2": 13.04436, + "ca-central-1": 0.0, "eu-central-1": 12.29556, "eu-north-1": 0.0, "eu-south-2": 11.31252, @@ -75016,8 +75192,10 @@ }, "m6in.large": { "ap-northeast-1": 0.0, + "ap-south-1": 0.25459, "ap-southeast-1": 0.26582, "ap-southeast-2": 0.28805, + "ca-central-1": 0.0, "eu-central-1": 0.25997, "eu-north-1": 0.2578, "eu-south-2": 0.2657, @@ -75030,8 +75208,10 @@ }, "m6in.xlarge": { "ap-northeast-1": 0.45302, + "ap-south-1": 0.38516, "ap-southeast-1": 0.43664, "ap-southeast-2": 0.446, + "ca-central-1": 0.40536, "eu-central-1": 0.42494, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -75044,8 +75224,10 @@ }, "m6in.metal": { "ap-northeast-1": 11.62164, + "ap-south-1": 9.45012, "ap-southeast-1": 0.0, "ap-southeast-2": 11.397, + "ca-central-1": 0.0, "eu-central-1": 10.72308, "eu-north-1": 9.637, "eu-south-2": 10.09652, @@ -75058,8 +75240,10 @@ }, "m6in.2xlarge": { "ap-northeast-1": 0.95264, + "ap-south-1": 0.80335, "ap-southeast-1": 0.84828, "ap-southeast-2": 0.867, + "ca-central-1": 0.0, "eu-central-1": 0.89087, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -75072,8 +75256,10 @@ }, "m6in.4xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 1.32564, "ap-southeast-1": 0.0, "ap-southeast-2": 1.7094, + "ca-central-1": 1.40644, "eu-central-1": 0.0, "eu-north-1": 1.349, "eu-south-2": 1.40644, @@ -75086,8 +75272,10 @@ }, "m6in.8xlarge": { "ap-northeast-1": 3.31558, + "ap-south-1": 2.48628, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 2.64788, "eu-central-1": 3.06847, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -75100,8 +75288,10 @@ }, "m6in.12xlarge": { "ap-northeast-1": 4.46124, + "ap-south-1": 3.64692, "ap-southeast-1": 4.26468, "ap-southeast-2": 4.377, + "ca-central-1": 3.88932, "eu-central-1": 4.52021, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -75114,8 +75304,10 @@ }, "m6in.16xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 5.27182, "ap-southeast-1": 6.17786, "ap-southeast-2": 0.0, + "ca-central-1": 5.62734, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 5.13076, @@ -75128,8 +75320,10 @@ }, "m6in.24xlarge": { "ap-northeast-1": 8.75748, + "ap-south-1": 7.12884, "ap-southeast-1": 9.1843, "ap-southeast-2": 8.589, + "ca-central-1": 8.3585, "eu-central-1": 0.0, "eu-north-1": 7.269, "eu-south-2": 0.0, @@ -75142,8 +75336,10 @@ }, "m6in.32xlarge": { "ap-northeast-1": 11.62164, + "ap-south-1": 9.45012, "ap-southeast-1": 0.0, "ap-southeast-2": 11.397, + "ca-central-1": 0.0, "eu-central-1": 10.72308, "eu-north-1": 9.637, "eu-south-2": 10.09652, @@ -76036,6 +76232,7 @@ "ap-northeast-1": 0.0, "ap-northeast-2": 0.0, "ap-southeast-1": 43.42481, + "ap-southeast-2": 42.76938, "ca-central-1": 41.624, "eu-central-1": 0.0, "eu-west-1": 39.101205, @@ -83707,11 +83904,13 @@ "ap-northeast-2": 0.1718, "ap-southeast-1": 0.0, "ap-southeast-2": 0.20183, + "ca-central-1": 0.0, "ca-west-1": 0.17873, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.21275, "us-east-1": 0.0, "us-east-2": 0.1571, "us-gov-west-1": 0.0, @@ -83722,11 +83921,13 @@ "ap-northeast-2": 0.3104, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.2789, "ca-west-1": 0.30116, "eu-central-1": 0.0, "eu-west-1": 0.30809, "eu-west-2": 0.2978, "il-central-1": 0.32067, + "sa-east-1": 0.0, "us-east-1": 0.2579, "us-east-2": 0.2579, "us-gov-west-1": 0.2999, @@ -83737,11 +83938,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 7.6514, "ap-southeast-2": 0.0, + "ca-central-1": 7.2482, "ca-west-1": 7.2482, "eu-central-1": 7.5842, "eu-west-1": 7.4498, "eu-west-2": 0.0, "il-central-1": 7.81588, + "sa-east-1": 10.1378, "us-east-1": 0.0, "us-east-2": 6.5762, "us-gov-west-1": 7.9202, @@ -83752,11 +83955,13 @@ "ap-northeast-2": 0.6332, "ap-southeast-1": 0.5954, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 0.61472, "eu-central-1": 0.5912, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.56852, "us-east-2": 0.0, "us-gov-west-1": 0.66092, @@ -83767,11 +83972,13 @@ "ap-northeast-2": 1.1414, "ap-southeast-1": 1.0658, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "ca-west-1": 1.0154, "eu-central-1": 1.15064, "eu-west-1": 1.13216, "eu-west-2": 1.091, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 0.9314, "us-gov-west-1": 1.0994, @@ -83782,11 +83989,13 @@ "ap-northeast-2": 2.1578, "ap-southeast-1": 2.19476, "ap-southeast-2": 2.2418, + "ca-central-1": 1.9058, "ca-west-1": 2.08388, "eu-central-1": 1.9898, "eu-west-1": 1.9562, "eu-west-2": 2.057, "il-central-1": 0.0, + "sa-east-1": 2.6282, "us-east-1": 1.7378, "us-east-2": 1.7378, "us-gov-west-1": 2.0738, @@ -83797,11 +84006,13 @@ "ap-northeast-2": 0.0, "ap-southeast-1": 2.9474, "ap-southeast-2": 0.0, + "ca-central-1": 2.7962, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 3.14648, "eu-west-2": 0.0, "il-central-1": 3.00908, + "sa-east-1": 3.8798, "us-east-1": 0.0, "us-east-2": 2.5442, "us-gov-west-1": 3.0482, @@ -83812,11 +84023,13 @@ "ap-northeast-2": 3.821, "ap-southeast-1": 4.26452, "ap-southeast-2": 4.78196, + "ca-central-1": 4.04276, "ca-west-1": 3.6866, "eu-central-1": 3.8546, "eu-west-1": 4.15364, "eu-west-2": 0.0, "il-central-1": 3.97044, + "sa-east-1": 5.1314, "us-east-1": 3.3506, "us-east-2": 3.3506, "us-gov-west-1": 4.41236, @@ -83827,11 +84040,13 @@ "ap-northeast-2": 6.2234, "ap-southeast-1": 5.7698, "ap-southeast-2": 7.11044, + "ca-central-1": 0.0, "ca-west-1": 6.00164, "eu-central-1": 0.0, "eu-west-1": 6.16796, "eu-west-2": 5.921, "il-central-1": 6.46998, + "sa-east-1": 8.38556, "us-east-1": 4.9634, "us-east-2": 4.9634, "us-gov-west-1": 5.9714, @@ -83842,11 +84057,13 @@ "ap-northeast-2": 7.517, "ap-southeast-1": 0.0, "ap-southeast-2": 8.5922, + "ca-central-1": 7.2482, "ca-west-1": 7.2482, "eu-central-1": 0.0, "eu-west-1": 0.0, "eu-west-2": 7.853, "il-central-1": 7.81588, + "sa-east-1": 0.0, "us-east-1": 0.0, "us-east-2": 6.5762, "us-gov-west-1": 7.9202, @@ -89714,8 +89931,10 @@ }, "m6idn.large": { "ap-northeast-1": 0.0, + "ap-south-1": 0.24292, "ap-southeast-1": 0.0, "ap-southeast-2": 0.25754, + "ca-central-1": 0.23048, "eu-central-1": 0.26479, "eu-north-1": 0.2389, "eu-south-2": 0.0, @@ -89728,8 +89947,10 @@ }, "m6idn.xlarge": { "ap-northeast-1": 0.4658, + "ap-south-1": 0.3956, "ap-southeast-1": 0.44708, "ap-southeast-2": 0.45878, + "ca-central-1": 0.40466, "eu-central-1": 0.47329, "eu-north-1": 0.3883, "eu-south-2": 0.40466, @@ -89742,8 +89963,10 @@ }, "m6idn.metal": { "ap-northeast-1": 13.229, + "ap-south-1": 10.9826, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 12.25556, "eu-north-1": 10.749, "eu-south-2": 11.27252, @@ -89756,8 +89979,10 @@ }, "m6idn.2xlarge": { "ap-northeast-1": 1.0259, + "ap-south-1": 0.87146, "ap-southeast-1": 0.98472, "ap-southeast-2": 0.0, + "ca-central-1": 0.82172, "eu-central-1": 0.95898, "eu-north-1": 0.8554, "eu-south-2": 0.89139, @@ -89770,8 +89995,10 @@ }, "m6idn.4xlarge": { "ap-northeast-1": 1.9268, + "ap-south-1": 0.0, "ap-southeast-1": 1.84443, "ap-southeast-2": 1.73492, + "ca-central-1": 0.0, "eu-central-1": 1.79295, "eu-north-1": 1.453, "eu-south-2": 1.65778, @@ -89784,8 +90011,10 @@ }, "m6idn.8xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 2.8394, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.0, "eu-south-2": 2.91188, @@ -89798,8 +90027,10 @@ }, "m6idn.12xlarge": { "ap-northeast-1": 5.5304, + "ap-south-1": 4.1966, "ap-southeast-1": 4.81436, "ap-southeast-2": 5.43774, + "ca-central-1": 4.72335, "eu-central-1": 0.0, "eu-north-1": 4.109, "eu-south-2": 4.30532, @@ -89812,8 +90043,10 @@ }, "m6idn.16xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 5.5538, "ap-southeast-1": 7.00273, "ap-southeast-2": 7.20865, + "ca-central-1": 6.25614, "eu-central-1": 0.0, "eu-north-1": 5.437, "eu-south-2": 0.0, @@ -89826,8 +90059,10 @@ }, "m6idn.24xlarge": { "ap-northeast-1": 9.953, + "ap-south-1": 8.2682, "ap-southeast-1": 0.0, "ap-southeast-2": 9.78452, + "ca-central-1": 8.48564, "eu-central-1": 10.13271, "eu-north-1": 8.093, "eu-south-2": 0.0, @@ -89840,8 +90075,10 @@ }, "m6idn.32xlarge": { "ap-northeast-1": 13.229, + "ap-south-1": 10.9826, "ap-southeast-1": 12.62996, "ap-southeast-2": 0.0, + "ca-central-1": 11.27252, "eu-central-1": 12.25556, "eu-north-1": 10.749, "eu-south-2": 11.27252, @@ -89854,8 +90091,10 @@ }, "m6in.large": { "ap-northeast-1": 0.23531, + "ap-south-1": 0.20138, "ap-southeast-1": 0.0, "ap-southeast-2": 0.24935, + "ca-central-1": 0.227, "eu-central-1": 0.23777, "eu-north-1": 0.2191, "eu-south-2": 0.21148, @@ -89868,8 +90107,10 @@ }, "m6in.xlarge": { "ap-northeast-1": 0.41432, + "ap-south-1": 0.37548, "ap-southeast-1": 0.4321, "ap-southeast-2": 0.4424, + "ca-central-1": 0.36666, "eu-central-1": 0.0, "eu-north-1": 0.3523, "eu-south-2": 0.3977, @@ -89882,8 +90123,10 @@ }, "m6in.metal": { "ap-northeast-1": 0.0, + "ap-south-1": 0.0, "ap-southeast-1": 11.05748, "ap-southeast-2": 11.357, + "ca-central-1": 10.05652, "eu-central-1": 10.68308, "eu-north-1": 9.597, "eu-south-2": 10.05652, @@ -89896,8 +90139,10 @@ }, "m6in.2xlarge": { "ap-northeast-1": 0.84104, + "ap-south-1": 0.76335, "ap-southeast-1": 0.80828, "ap-southeast-2": 0.827, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 0.717, "eu-south-2": 0.74572, @@ -89910,8 +90155,10 @@ }, "m6in.4xlarge": { "ap-northeast-1": 1.55708, + "ap-south-1": 1.28564, "ap-southeast-1": 0.0, "ap-southeast-2": 1.6694, + "ca-central-1": 0.0, "eu-central-1": 1.44476, "eu-north-1": 1.309, "eu-south-2": 1.49058, @@ -89924,8 +90171,10 @@ }, "m6in.8xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 2.67841, "ap-southeast-1": 2.85812, "ap-southeast-2": 0.0, + "ca-central-1": 2.60788, "eu-central-1": 2.76452, "eu-north-1": 2.7298, "eu-south-2": 2.60788, @@ -89938,8 +90187,10 @@ }, "m6in.12xlarge": { "ap-northeast-1": 4.42124, + "ap-south-1": 3.95511, "ap-southeast-1": 0.0, "ap-southeast-2": 4.337, + "ca-central-1": 0.0, "eu-central-1": 0.0, "eu-north-1": 4.0322, "eu-south-2": 3.84932, @@ -89952,8 +90203,10 @@ }, "m6in.16xlarge": { "ap-northeast-1": 6.42615, + "ap-south-1": 4.76756, "ap-southeast-1": 6.13786, "ap-southeast-2": 5.741, + "ca-central-1": 5.58734, "eu-central-1": 5.40404, "eu-north-1": 5.3346, "eu-south-2": 0.0, @@ -89966,8 +90219,10 @@ }, "m6in.24xlarge": { "ap-northeast-1": 9.57673, + "ap-south-1": 0.0, "ap-southeast-1": 9.1443, "ap-southeast-2": 9.3914, + "ca-central-1": 7.57364, "eu-central-1": 0.0, "eu-north-1": 7.229, "eu-south-2": 7.57364, @@ -89980,8 +90235,10 @@ }, "m6in.32xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 9.41012, "ap-southeast-1": 0.0, "ap-southeast-2": 11.357, + "ca-central-1": 10.05652, "eu-central-1": 10.68308, "eu-north-1": 9.597, "eu-south-2": 10.05652, @@ -90874,6 +91131,7 @@ "ap-northeast-1": 45.04715, "ap-northeast-2": 50.052328, "ap-southeast-1": 39.4521, + "ap-southeast-2": 42.72938, "ca-central-1": 41.584, "eu-central-1": 41.06975, "eu-west-1": 0.0, @@ -98331,11 +98589,13 @@ "ap-northeast-2": 0.1155, "ap-southeast-1": 0.1176, "ap-southeast-2": 0.092, + "ca-central-1": 0.1113, "ca-west-1": 0.092, "eu-central-1": 0.22021, "eu-west-1": 0.0, "eu-west-2": 0.092, "il-central-1": 0.092, + "sa-east-1": 0.15645, "us-east-1": 0.0, "us-east-2": 0.092, "us-gov-west-1": 0.092, @@ -98346,11 +98606,13 @@ "ap-northeast-2": 0.231, "ap-southeast-1": 0.184, "ap-southeast-2": 0.2646, + "ca-central-1": 0.184, "ca-west-1": 0.184, "eu-central-1": 0.184, "eu-west-1": 0.2289, "eu-west-2": 0.2415, "il-central-1": 0.184, + "sa-east-1": 0.184, "us-east-1": 0.184, "us-east-2": 0.0, "us-gov-west-1": 0.0, @@ -98361,11 +98623,13 @@ "ap-northeast-2": 7.392, "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-central-1": 0.0, "ca-west-1": 7.1232, "eu-central-1": 5.888, "eu-west-1": 5.888, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 10.0128, "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-west-1": 5.888, @@ -98376,11 +98640,13 @@ "ap-northeast-2": 0.462, "ap-southeast-1": 0.368, "ap-southeast-2": 0.5292, + "ca-central-1": 0.0, "ca-west-1": 0.8132, "eu-central-1": 0.4662, "eu-west-1": 0.4578, "eu-west-2": 0.5313, "il-central-1": 0.0, + "sa-east-1": 0.368, "us-east-1": 0.368, "us-east-2": 0.368, "us-gov-west-1": 0.90392, @@ -98391,11 +98657,13 @@ "ap-northeast-2": 1.0164, "ap-southeast-1": 0.9408, "ap-southeast-2": 0.736, + "ca-central-1": 0.8904, "ca-west-1": 0.8904, "eu-central-1": 0.0, "eu-west-1": 0.9156, "eu-west-2": 0.0, "il-central-1": 0.736, + "sa-east-1": 1.2516, "us-east-1": 0.0, "us-east-2": 0.736, "us-gov-west-1": 0.736, @@ -98406,11 +98674,13 @@ "ap-northeast-2": 1.472, "ap-southeast-1": 1.472, "ap-southeast-2": 0.0, + "ca-central-1": 1.7808, "ca-west-1": 1.7808, "eu-central-1": 0.0, "eu-west-1": 3.3032, "eu-west-2": 1.472, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 3.0848, "us-east-2": 3.24608, "us-gov-west-1": 0.0, @@ -98421,11 +98691,13 @@ "ap-northeast-2": 4.98, "ap-southeast-1": 3.10464, "ap-southeast-2": 0.0, + "ca-central-1": 2.6712, "ca-west-1": 2.6712, "eu-central-1": 2.208, "eu-west-1": 0.0, "eu-west-2": 2.898, "il-central-1": 0.0, + "sa-east-1": 0.0, "us-east-1": 2.66112, "us-east-2": 2.208, "us-gov-west-1": 5.1312, @@ -98436,11 +98708,13 @@ "ap-northeast-2": 6.64, "ap-southeast-1": 4.13952, "ap-southeast-2": 2.944, + "ca-central-1": 3.91776, "ca-west-1": 2.944, "eu-central-1": 6.6736, "eu-west-1": 3.6624, "eu-west-2": 0.0, "il-central-1": 0.0, + "sa-east-1": 2.944, "us-east-1": 2.944, "us-east-2": 6.1696, "us-gov-west-1": 2.944, @@ -98451,11 +98725,13 @@ "ap-northeast-2": 5.544, "ap-southeast-1": 5.6448, "ap-southeast-2": 4.416, + "ca-central-1": 5.3424, "ca-west-1": 5.3424, "eu-central-1": 4.416, "eu-west-1": 0.0, "eu-west-2": 0.0, "il-central-1": 4.416, + "sa-east-1": 7.5096, "us-east-1": 4.416, "us-east-2": 4.416, "us-gov-west-1": 6.43104, @@ -98466,11 +98742,13 @@ "ap-northeast-2": 7.392, "ap-southeast-1": 0.0, "ap-southeast-2": 8.4672, + "ca-central-1": 5.888, "ca-west-1": 0.0, "eu-central-1": 0.0, "eu-west-1": 5.888, "eu-west-2": 7.728, "il-central-1": 0.0, + "sa-east-1": 10.0128, "us-east-1": 5.888, "us-east-2": 5.888, "us-gov-west-1": 5.888, @@ -102989,8 +103267,10 @@ }, "m6idn.large": { "ap-northeast-1": 0.0, + "ap-south-1": 0.16965, "ap-southeast-1": 0.0, "ap-southeast-2": 0.092, + "ca-central-1": 0.17418, "eu-central-1": 0.28154, "eu-north-1": 0.092, "eu-south-2": 0.092, @@ -103003,8 +103283,10 @@ }, "m6idn.xlarge": { "ap-northeast-1": 0.184, + "ap-south-1": 0.184, "ap-southeast-1": 0.42986, "ap-southeast-2": 0.184, + "ca-central-1": 0.34836, "eu-central-1": 0.41699, "eu-north-1": 0.184, "eu-south-2": 0.34836, @@ -103017,8 +103299,10 @@ }, "m6idn.metal": { "ap-northeast-1": 5.888, + "ap-south-1": 0.0, "ap-southeast-1": 5.888, "ap-southeast-2": 12.87936, + "ca-central-1": 5.888, "eu-central-1": 5.888, "eu-north-1": 0.0, "eu-south-2": 5.888, @@ -103031,8 +103315,10 @@ }, "m6idn.2xlarge": { "ap-northeast-1": 0.368, + "ap-south-1": 1.0466, "ap-southeast-1": 0.368, "ap-southeast-2": 0.88546, + "ca-central-1": 0.368, "eu-central-1": 0.75816, "eu-north-1": 0.664, "eu-south-2": 0.76639, @@ -103045,8 +103331,10 @@ }, "m6idn.4xlarge": { "ap-northeast-1": 2.5378, + "ap-south-1": 1.3572, "ap-southeast-1": 0.736, "ap-southeast-2": 1.77091, + "ca-central-1": 0.736, "eu-central-1": 1.66795, "eu-north-1": 0.0, "eu-south-2": 0.0, @@ -103059,8 +103347,10 @@ }, "m6idn.8xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 1.472, "ap-southeast-1": 1.472, "ap-southeast-2": 3.21984, + "ca-central-1": 1.472, "eu-central-1": 1.472, "eu-north-1": 1.472, "eu-south-2": 2.78688, @@ -103073,8 +103363,10 @@ }, "m6idn.12xlarge": { "ap-northeast-1": 2.208, + "ap-south-1": 4.47876, "ap-southeast-1": 2.208, "ap-southeast-2": 5.31274, + "ca-central-1": 2.208, "eu-central-1": 0.0, "eu-north-1": 6.192, "eu-south-2": 4.18032, @@ -103087,8 +103379,10 @@ }, "m6idn.16xlarge": { "ap-northeast-1": 2.944, + "ap-south-1": 5.4288, "ap-southeast-1": 0.0, "ap-southeast-2": 7.08365, + "ca-central-1": 2.944, "eu-central-1": 9.61581, "eu-north-1": 2.944, "eu-south-2": 2.944, @@ -103101,8 +103395,10 @@ }, "m6idn.24xlarge": { "ap-northeast-1": 4.416, + "ap-south-1": 4.416, "ap-southeast-1": 0.0, "ap-southeast-2": 4.416, + "ca-central-1": 8.36064, "eu-central-1": 10.00771, "eu-north-1": 4.416, "eu-south-2": 0.0, @@ -103115,8 +103411,10 @@ }, "m6idn.32xlarge": { "ap-northeast-1": 13.104, + "ap-south-1": 5.888, "ap-southeast-1": 5.888, "ap-southeast-2": 5.888, + "ca-central-1": 11.14752, "eu-central-1": 5.888, "eu-north-1": 5.888, "eu-south-2": 17.03552, @@ -103129,8 +103427,10 @@ }, "m6in.large": { "ap-northeast-1": 0.19691, + "ap-south-1": 0.14508, "ap-southeast-1": 0.092, "ap-southeast-2": 0.1755, + "ca-central-1": 0.092, "eu-central-1": 0.27347, "eu-north-1": 0.148, "eu-south-2": 0.15518, @@ -103143,8 +103443,10 @@ }, "m6in.xlarge": { "ap-northeast-1": 0.184, + "ap-south-1": 0.184, "ap-southeast-1": 0.184, "ap-southeast-2": 0.351, + "ca-central-1": 0.31036, "eu-central-1": 0.184, "eu-north-1": 0.3256, "eu-south-2": 0.3414, @@ -103157,8 +103459,10 @@ }, "m6in.metal": { "ap-northeast-1": 11.45664, + "ap-south-1": 0.0, "ap-southeast-1": 10.93248, "ap-southeast-2": 11.232, + "ca-central-1": 0.0, "eu-central-1": 5.888, "eu-north-1": 9.472, "eu-south-2": 9.93152, @@ -103171,8 +103475,10 @@ }, "m6in.2xlarge": { "ap-northeast-1": 0.368, + "ap-south-1": 0.58032, "ap-southeast-1": 1.11961, "ap-southeast-2": 0.368, + "ca-central-1": 0.68279, "eu-central-1": 0.368, "eu-north-1": 0.592, "eu-south-2": 0.0, @@ -103185,8 +103491,10 @@ }, "m6in.4xlarge": { "ap-northeast-1": 0.736, + "ap-south-1": 0.736, "ap-southeast-1": 0.736, "ap-southeast-2": 1.404, + "ca-central-1": 1.24144, "eu-central-1": 0.736, "eu-north-1": 0.736, "eu-south-2": 1.24144, @@ -103199,8 +103507,10 @@ }, "m6in.8xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 1.472, "ap-southeast-1": 0.0, "ap-southeast-2": 0.0, + "ca-central-1": 1.472, "eu-central-1": 0.0, "eu-north-1": 1.472, "eu-south-2": 1.472, @@ -103213,8 +103523,10 @@ }, "m6in.12xlarge": { "ap-northeast-1": 2.208, + "ap-south-1": 0.0, "ap-southeast-1": 2.208, "ap-southeast-2": 4.6332, + "ca-central-1": 2.208, "eu-central-1": 3.95928, "eu-north-1": 3.552, "eu-south-2": 0.0, @@ -103227,8 +103539,10 @@ }, "m6in.16xlarge": { "ap-northeast-1": 5.72832, + "ap-south-1": 2.944, "ap-southeast-1": 2.944, "ap-southeast-2": 2.944, + "ca-central-1": 2.944, "eu-central-1": 5.80694, "eu-north-1": 4.736, "eu-south-2": 4.96576, @@ -103241,8 +103555,10 @@ }, "m6in.24xlarge": { "ap-northeast-1": 13.86773, + "ap-south-1": 4.416, "ap-southeast-1": 9.0193, "ap-southeast-2": 8.424, + "ca-central-1": 4.416, "eu-central-1": 13.12642, "eu-north-1": 7.104, "eu-south-2": 4.416, @@ -103255,8 +103571,10 @@ }, "m6in.32xlarge": { "ap-northeast-1": 0.0, + "ap-south-1": 9.28512, "ap-southeast-1": 5.888, "ap-southeast-2": 11.232, + "ca-central-1": 9.93152, "eu-central-1": 5.888, "eu-north-1": 9.472, "eu-south-2": 9.93152, @@ -106838,7 +107156,7 @@ "sa-east-1": 0.0092, "us-east-1": 0.0092, "us-east-2": 0.0092, - "us-gov-east-1": 0.0092, + "us-gov-east-1": 0.0122, "us-gov-west-1": 0.0092, "us-west-1": 0.0092, "us-west-2": 0.0104, @@ -106872,7 +107190,7 @@ "sa-east-1": 0.0, "us-east-1": 0.0208, "us-east-2": 0.0208, - "us-gov-east-1": 0.0, + "us-gov-east-1": 0.0244, "us-gov-west-1": 0.0184, "us-west-1": 0.0184, "us-west-2": 0.0208, @@ -113852,5 +114170,5 @@ } }, "storage": {}, - "updated": 1717008039 + "updated": 1718529903 } \ No newline at end of file From 809331c5445bbbd050950aae285049a38556726b Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 16 Jun 2024 11:56:14 +0200 Subject: [PATCH 12/22] Use a more secure hostname validation regex without expensive backtracking in the vcloud driver. Also reformat code with black. --- libcloud/compute/drivers/vcloud.py | 133 ++++++++++++++++++++++++++- libcloud/test/compute/test_vcloud.py | 65 +++++++++++++ 2 files changed, 194 insertions(+), 4 deletions(-) diff --git a/libcloud/compute/drivers/vcloud.py b/libcloud/compute/drivers/vcloud.py index ad455cbe6b..f65f0f6811 100644 --- a/libcloud/compute/drivers/vcloud.py +++ b/libcloud/compute/drivers/vcloud.py @@ -52,11 +52,15 @@ FENCE_MODE_VALS_1_5 = ["bridged", "isolated", "natRouted"] IP_MODE_VALS_1_5 = ["POOL", "DHCP", "MANUAL", "NONE"] +# Regular expression for validating node / VM name +HOSTNAME_RE = re.compile(r"^(?!-)[A-Z\d-]{1,63}(?= timeout: raise Exception( "Timeout ({} sec) while waiting for task {}.".format(timeout, task_href) @@ -689,12 +715,14 @@ def destroy_node(self, node): pass res = self.connection.request(node_path, method="DELETE") + return res.status == httplib.ACCEPTED def reboot_node(self, node): res = self.connection.request( "%s/power/action/reset" % get_url_path(node.id), method="POST" ) + return res.status in [httplib.ACCEPTED, httplib.NO_CONTENT] def list_nodes(self): @@ -711,11 +739,14 @@ def ex_list_nodes(self, vdcs=None): :rtype: ``list`` of :class:`Node` """ + if not vdcs: vdcs = self.vdcs + if not isinstance(vdcs, (list, tuple)): vdcs = [vdcs] nodes = [] + for vdc in vdcs: res = self.connection.request(get_url_path(vdc.id)) elms = res.object.findall(fixxpath(res.object, "ResourceEntities/ResourceEntity")) @@ -736,6 +767,7 @@ def ex_list_nodes(self, vdcs=None): # The vApp was probably removed since the previous vDC # query, ignore # pylint: disable=no-member + if not ( e.args[0].tag.endswith("Error") and e.args[0].get("minorErrorCode") == "ACCESS_TO_RESOURCE_IS_FORBIDDEN" @@ -754,10 +786,12 @@ def _to_size(self, ram): price=None, driver=self.connection.driver, ) + return ns def list_sizes(self, location=None): sizes = [self._to_size(i) for i in VIRTUAL_MEMORY_VALS] + return sizes def _get_catalogitems_hrefs(self, catalog): @@ -787,6 +821,7 @@ def _get_catalogitem(self, catalog_item): def list_images(self, location=None): images = [] + for vdc in self.vdcs: res = self.connection.request(get_url_path(vdc.id)).object res_ents = res.findall(fixxpath(res, "ResourceEntities/ResourceEntity")) @@ -819,12 +854,15 @@ def idfun(x): # pylint: disable=function-redefined seen = {} result = [] + for item in seq: marker = idfun(item) + if marker in seen: continue seen[marker] = 1 result.append(item) + return result def create_node( @@ -916,6 +954,7 @@ class HostingComConnection(VCloudConnection): def _get_auth_headers(self): """hosting.com doesn't follow the standard vCloud authentication API""" + return { "Authentication": base64.b64encode(b("{}:{}".format(self.user_id, self.key))), "Content-Length": "0", @@ -952,6 +991,7 @@ def list_locations(self): class VCloud_1_5_Connection(VCloudConnection): def _get_auth_headers(self): """Compatibility for using v1.5 API under vCloud Director 5.1""" + return { "Authorization": "Basic %s" % base64.b64encode(b("{}:{}".format(self.user_id, self.key))).decode("utf-8"), @@ -1007,6 +1047,7 @@ def _get_auth_token(self): def add_default_headers(self, headers): headers["Accept"] = "application/*+xml;version=1.5" headers["x-vcloud-authorization"] = self.token + return headers @@ -1015,11 +1056,13 @@ def _get_auth_headers(self): """Compatibility for using v5.5 of the API""" auth_headers = super()._get_auth_headers() auth_headers["Accept"] = "application/*+xml;version=5.5" + return auth_headers def add_default_headers(self, headers): headers["Accept"] = "application/*+xml;version=5.5" headers["x-vcloud-authorization"] = self.token + return headers @@ -1134,21 +1177,27 @@ def ex_find_node(self, node_name, vdcs=None): :return: node instance or None if not found :rtype: :class:`Node` or ``None`` """ + if not vdcs: vdcs = self.vdcs + if not getattr(vdcs, "__iter__", False): vdcs = [vdcs] + for vdc in vdcs: res = self.connection.request(get_url_path(vdc.id)) xpath = fixxpath(res.object, "ResourceEntities/ResourceEntity") entity_elems = res.object.findall(xpath) + for entity_elem in entity_elems: if ( entity_elem.get("type") == "application/vnd.vmware.vcloud.vApp+xml" and entity_elem.get("name") == node_name ): path = entity_elem.get("href") + return self._ex_get_node(path) + return None def ex_find_vm_nodes(self, vm_name, max_results=50): @@ -1170,6 +1219,7 @@ def ex_find_vm_nodes(self, vm_name, max_results=50): page=1, page_size=max_results, ) + return [self._ex_get_node(vm["container"]) for vm in vms] def destroy_node(self, node, shutdown=True): @@ -1181,14 +1231,17 @@ def destroy_node(self, node, shutdown=True): pass res = self.connection.request(get_url_path(node.id), method="DELETE") + return res.status == httplib.ACCEPTED def reboot_node(self, node): res = self.connection.request( "%s/power/action/reset" % get_url_path(node.id), method="POST" ) + if res.status in [httplib.ACCEPTED, httplib.NO_CONTENT]: self._wait_for_task_completion(res.object.get("href")) + return True else: return False @@ -1207,14 +1260,17 @@ def ex_deploy_node(self, node, ex_force_customization=False): :rtype: :class:`Node` """ + if ex_force_customization: vms = self._get_vm_elements(node.id) + for vm in vms: self._ex_deploy_node_or_vm(vm.get("href"), ex_force_customization=True) else: self._ex_deploy_node_or_vm(node.id) res = self.connection.request(get_url_path(node.id)) + return self._to_node(res.object) def _ex_deploy_node_or_vm(self, vapp_or_vm_path, ex_force_customization=False): @@ -1272,6 +1328,7 @@ def undeploy(action): undeploy("powerOff") res = self.connection.request(get_url_path(node.id)) + return self._to_node(res.object) def ex_power_off_node(self, node): @@ -1284,6 +1341,7 @@ def ex_power_off_node(self, node): :rtype: :class:`Node` """ + return self._perform_power_operation(node, "powerOff") def ex_power_on_node(self, node): @@ -1296,6 +1354,7 @@ def ex_power_on_node(self, node): :rtype: :class:`Node` """ + return self._perform_power_operation(node, "powerOn") def ex_shutdown_node(self, node): @@ -1308,6 +1367,7 @@ def ex_shutdown_node(self, node): :rtype: :class:`Node` """ + return self._perform_power_operation(node, "shutdown") def ex_suspend_node(self, node): @@ -1320,6 +1380,7 @@ def ex_suspend_node(self, node): :rtype: :class:`Node` """ + return self._perform_power_operation(node, "suspend") def _perform_power_operation(self, node, operation): @@ -1328,6 +1389,7 @@ def _perform_power_operation(self, node, operation): ) self._wait_for_task_completion(res.object.get("href")) res = self.connection.request(get_url_path(node.id)) + return self._to_node(res.object) def ex_get_control_access(self, node): @@ -1342,6 +1404,7 @@ def ex_get_control_access(self, node): res = self.connection.request("%s/controlAccess" % get_url_path(node.id)) everyone_access_level = None is_shared_elem = res.object.find(fixxpath(res.object, "IsSharedToEveryone")) + if is_shared_elem is not None and is_shared_elem.text == "true": everyone_access_level = res.object.find( fixxpath(res.object, "EveryoneAccessLevel") @@ -1350,9 +1413,11 @@ def ex_get_control_access(self, node): # Parse all subjects subjects = [] xpath = fixxpath(res.object, "AccessSettings/AccessSetting") + for elem in res.object.findall(xpath): access_level = elem.find(fixxpath(res.object, "AccessLevel")).text subject_elem = elem.find(fixxpath(res.object, "Subject")) + if subject_elem.get("type") == "application/vnd.vmware.admin.group+xml": subj_type = "group" else: @@ -1385,6 +1450,7 @@ def ex_set_control_access(self, node, control_access): """ xml = ET.Element("ControlAccessParams", {"xmlns": "http://www.vmware.com/vcloud/v1.5"}) shared_to_everyone = ET.SubElement(xml, "IsSharedToEveryone") + if control_access.everyone_access_level: shared_to_everyone.text = "true" everyone_access_level = ET.SubElement(xml, "EveryoneAccessLevel") @@ -1393,14 +1459,18 @@ def ex_set_control_access(self, node, control_access): shared_to_everyone.text = "false" # Set subjects + if control_access.subjects: access_settings_elem = ET.SubElement(xml, "AccessSettings") + for subject in control_access.subjects: setting = ET.SubElement(access_settings_elem, "AccessSetting") + if subject.id: href = subject.id else: res = self.ex_query(type=subject.type, filter="name==" + subject.name) + if not res: raise LibcloudError( 'Specified subject "{} {}" not found '.format(subject.type, subject.name) @@ -1507,12 +1577,15 @@ def ex_query(self, type, filter=None, page=1, page_size=100, sort_asc=None, sort "pageSize": page_size, "page": page, } + if sort_asc: params["sortAsc"] = sort_asc + if sort_desc: params["sortDesc"] = sort_desc url = "/api/query?" + urlencode(params) + if filter: if not filter.startswith("("): filter = "(" + filter + ")" @@ -1520,11 +1593,13 @@ def ex_query(self, type, filter=None, page=1, page_size=100, sort_asc=None, sort results = [] res = self.connection.request(url) + for elem in res.object: if not elem.tag.endswith("Link"): result = elem.attrib result["type"] = elem.tag.split("}")[1] results.append(result) + return results def create_node(self, **kwargs): @@ -1639,6 +1714,7 @@ def create_node(self, **kwargs): ex_vm_script = self._validate_vm_script(ex_vm_script) # Some providers don't require a network link + if ex_network: network_href = self._get_network_href(ex_network) network_elem = self.connection.request(get_url_path(network_href)).object @@ -1671,15 +1747,18 @@ def create_node(self, **kwargs): self.ex_change_vm_admin_password(vapp_href, ex_admin_password) # Power on the VM. + if ex_deploy: res = self.connection.request(get_url_path(vapp_href)) node = self._to_node(res.object) # Retry 3 times: when instantiating large number of VMs at the same # time some may fail on resource allocation retry = 3 + while True: try: self.ex_deploy_node(node, ex_force_customization) + break except Exception: if retry <= 0: @@ -1689,6 +1768,7 @@ def create_node(self, **kwargs): res = self.connection.request(get_url_path(vapp_href)) node = self._to_node(res.object) + return node def _instantiate_node( @@ -1726,6 +1806,7 @@ def _instantiate_node( task_href = res.object.find(fixxpath(res.object, "Tasks/Task")).get("href") self._wait_for_task_completion(task_href, instantiate_timeout) + return vapp_name, vapp_href def _clone_node(self, name, sourceNode, vdc, clone_timeout): @@ -1760,6 +1841,7 @@ def _clone_node(self, name, sourceNode, vdc, clone_timeout): vms = res.object.findall(fixxpath(res.object, "Children/Vm")) # Fix the networking for VMs + for i, vm in enumerate(vms): # Remove network network_xml = ET.Element( @@ -1873,22 +1955,23 @@ def ex_add_vm_disk(self, vapp_or_vm_id, vm_disk_size): def _validate_vm_names(names): if names is None: return - hname_re = re.compile( - r"^(([a-zA-Z]|[a-zA-Z][a-zA-Z0-9]*)[\-])*([A-Za-z]|[A-Za-z][A-Za-z0-9]*[A-Za-z0-9])$" - ) # NOQA + for name in names: if len(name) > 15: raise ValueError( 'The VM name "' + name + '" is too long for the computer ' "name (max 15 chars allowed)." ) - if not hname_re.match(name): + + if not HOSTNAME_RE.match(name): raise ValueError( 'The VM name "' + name + '" can not be ' 'used. "' + name + '" is not a valid ' "computer name for the VM." ) + return True + @staticmethod def _validate_vm_memory(vm_memory): if vm_memory is None: @@ -1915,15 +1998,18 @@ def _validate_vm_script(vm_script): if vm_script is None: return # Try to locate the script file + if not os.path.isabs(vm_script): vm_script = os.path.expanduser(vm_script) vm_script = os.path.abspath(vm_script) + if not os.path.isfile(vm_script): raise LibcloudError("%s the VM script file does not exist" % vm_script) try: open(vm_script).read() except Exception: raise + return vm_script @staticmethod @@ -1949,6 +2035,7 @@ def _change_vm_names(self, vapp_or_vm_id, vm_names): return vms = self._get_vm_elements(vapp_or_vm_id) + for i, vm in enumerate(vms): if len(vm_names) <= i: return @@ -1993,6 +2080,7 @@ def _change_vm_cpu(self, vapp_or_vm_id, vm_cpu): return vms = self._get_vm_elements(vapp_or_vm_id) + for vm in vms: # Get virtualHardwareSection/cpu section res = self.connection.request( @@ -2020,6 +2108,7 @@ def _change_vm_memory(self, vapp_or_vm_id, vm_memory): return vms = self._get_vm_elements(vapp_or_vm_id) + for vm in vms: # Get virtualHardwareSection/memory section res = self.connection.request( @@ -2052,6 +2141,7 @@ def _add_vm_disk(self, vapp_or_vm_id, vm_disk): ) vms = self._get_vm_elements(vapp_or_vm_id) + for vm in vms: # Get virtualHardwareSection/disks section res = self.connection.request( @@ -2060,16 +2150,20 @@ def _add_vm_disk(self, vapp_or_vm_id, vm_disk): existing_ids = [] new_disk = None + for item in res.object.findall(fixxpath(res.object, "Item")): # Clean Items from unnecessary stuff + for elem in item: if elem.tag == "%sInstanceID" % rasd_ns: existing_ids.append(int(elem.text)) + if elem.tag in [ "%sAddressOnParent" % rasd_ns, "%sParent" % rasd_ns, ]: item.remove(elem) + if item.find("%sHostResource" % rasd_ns) is not None: new_disk = item @@ -2110,6 +2204,7 @@ def _change_vm_script(self, vapp_or_vm_id, vm_script, vm_script_text=None): # requirements: # http://www.vmware.com/support/vcd/doc/rest-api-doc-1.5-html/types/ # GuestCustomizationSectionType.html + for vm in vms: # Get GuestCustomizationSection res = self.connection.request( @@ -2122,6 +2217,7 @@ def _change_vm_script(self, vapp_or_vm_id, vm_script, vm_script_text=None): except Exception: # CustomizationScript section does not exist, insert it just # before ComputerName + for i, e in enumerate(res.object): if e.tag == "{http://www.vmware.com/vcloud/v1.5}ComputerName": break @@ -2156,6 +2252,7 @@ def _change_vm_ipmode(self, vapp_or_vm_id, vm_ipmode): "%s/networkConnectionSection" % get_url_path(vm.get("href")) ) net_conns = res.object.findall(fixxpath(res.object, "NetworkConnection")) + for c in net_conns: c.find(fixxpath(c, "IpAddressAllocationMode")).text = vm_ipmode @@ -2193,6 +2290,7 @@ def _remove_admin_password(guest_customization_section): admin_pass = guest_customization_section.find( fixxpath(guest_customization_section, "AdminPassword") ) + if admin_pass is not None and ( admin_pass_enabled is None or admin_pass_enabled.text != "true" @@ -2207,13 +2305,16 @@ def _update_or_insert_section(self, res, section, prev_section, text): except Exception: # "section" section does not exist, insert it just # before "prev_section" + for i, e in enumerate(res.object): tag = "{http://www.vmware.com/vcloud/v1.5}%s" % prev_section + if e.tag == tag: break e = ET.Element("{http://www.vmware.com/vcloud/v1.5}%s" % section) e.text = text res.object.insert(i, e) + return res def ex_change_vm_admin_password(self, vapp_or_vm_id, ex_admin_password): @@ -2232,10 +2333,12 @@ def ex_change_vm_admin_password(self, vapp_or_vm_id, ex_admin_password): :rtype: ``None`` """ + if ex_admin_password is None: return vms = self._get_vm_elements(vapp_or_vm_id) + for vm in vms: # Get GuestCustomizationSection res = self.connection.request( @@ -2252,6 +2355,7 @@ def ex_change_vm_admin_password(self, vapp_or_vm_id, ex_admin_password): # it might have AdminAutoLogonCount==1 when requesting it for # the first time. auto_logon = res.object.find(fixxpath(res.object, "AdminAutoLogonEnabled")) + if auto_logon is not None and auto_logon.text == "false": self._update_or_insert_section( res, "AdminAutoLogonCount", "ResetPasswordRequired", "0" @@ -2283,6 +2387,7 @@ def _get_network_href(self, network_name): # Find the organisation's network href res = self.connection.request(self.org) links = res.object.findall(fixxpath(res.object, "Link")) + for link in links: if ( link.attrib["type"] == "application/vnd.vmware.vcloud.orgNetwork+xml" @@ -2309,16 +2414,19 @@ def _ex_get_node(self, node_id): get_url_path(node_id), headers={"Content-Type": "application/vnd.vmware.vcloud.vApp+xml"}, ) + return self._to_node(res.object) def _get_vm_elements(self, vapp_or_vm_id): res = self.connection.request(get_url_path(vapp_or_vm_id)) + if res.object.tag.endswith("VApp"): vms = res.object.findall(fixxpath(res.object, "Children/Vm")) elif res.object.tag.endswith("Vm"): vms = [res.object] else: raise ValueError("Specified ID value is not a valid VApp or Vm identifier.") + return vms def _is_node(self, node_or_image): @@ -2326,10 +2434,12 @@ def _is_node(self, node_or_image): def _to_node(self, node_elm): # Parse snapshots and VMs as extra + if node_elm.find(fixxpath(node_elm, "SnapshotSection")) is None: snapshots = None else: snapshots = [] + for snapshot_elem in node_elm.findall(fixxpath(node_elm, "SnapshotSection/Snapshot")): snapshots.append( { @@ -2340,16 +2450,20 @@ def _to_node(self, node_elm): ) vms = [] + for vm_elem in node_elm.findall(fixxpath(node_elm, "Children/Vm")): public_ips = [] private_ips = [] xpath = fixxpath(vm_elem, "NetworkConnectionSection/NetworkConnection") + for connection in vm_elem.findall(xpath): ip = connection.find(fixxpath(connection, "IpAddress")) + if ip is not None: private_ips.append(ip.text) external_ip = connection.find(fixxpath(connection, "ExternalIpAddress")) + if external_ip is not None: public_ips.append(external_ip.text) elif ip is not None: @@ -2357,6 +2471,7 @@ def _to_node(self, node_elm): xpath = "{http://schemas.dmtf.org/ovf/envelope/1}" "OperatingSystemSection" os_type_elem = vm_elem.find(xpath) + if os_type_elem is not None: os_type = os_type_elem.get("{http://www.vmware.com/schema/ovf}osType") else: @@ -2374,6 +2489,7 @@ def _to_node(self, node_elm): # Take the node IP addresses from all VMs public_ips = [] private_ips = [] + for vm in vms: public_ips.extend(vm["public_ips"]) private_ips.extend(vm["private_ips"]) @@ -2389,12 +2505,14 @@ def _to_node(self, node_elm): extra = {"vdc": vdc.name, "vms": vms} description = node_elm.find(fixxpath(node_elm, "Description")) + if description is not None: extra["description"] = description.text else: extra["description"] = "" lease_settings = node_elm.find(fixxpath(node_elm, "LeaseSettingsSection")) + if lease_settings is not None: extra["lease_settings"] = Lease.to_lease(lease_settings) else: @@ -2412,6 +2530,7 @@ def _to_node(self, node_elm): driver=self.connection.driver, extra=extra, ) + return node def _to_vdc(self, vdc_elm): @@ -2421,6 +2540,7 @@ def get_capacity_values(capacity_elm): limit = int(capacity_elm.findtext(fixxpath(capacity_elm, "Limit"))) used = int(capacity_elm.findtext(fixxpath(capacity_elm, "Used"))) units = capacity_elm.findtext(fixxpath(capacity_elm, "Units")) + return Capacity(limit, used, units) cpu = get_capacity_values(vdc_elm.find(fixxpath(vdc_elm, "ComputeCapacity/Cpu"))) @@ -2481,6 +2601,7 @@ def ex_create_snapshot(self, node): ET.SubElement(snapshot_xml, "Description").text = "Description" content_type = "application/vnd.vmware.vcloud.createSnapshotParams+xml" headers = {"Content-Type": content_type} + return self._perform_snapshot_operation(node, "createSnapshot", snapshot_xml, headers) def ex_remove_snapshots(self, node): @@ -2492,6 +2613,7 @@ def ex_remove_snapshots(self, node): :rtype: :class:`Node` """ + return self._perform_snapshot_operation(node, "removeAllSnapshots", None, None) def ex_revert_to_snapshot(self, node): @@ -2503,6 +2625,7 @@ def ex_revert_to_snapshot(self, node): :rtype: :class:`Node` """ + return self._perform_snapshot_operation(node, "revertToCurrentSnapshot", None, None) def _perform_snapshot_operation(self, node, operation, xml_data, headers): @@ -2514,6 +2637,7 @@ def _perform_snapshot_operation(self, node, operation, xml_data, headers): ) self._wait_for_task_completion(res.object.get("href")) res = self.connection.request(get_url_path(node.id)) + return self._to_node(res.object) def ex_acquire_mks_ticket(self, vapp_or_vm_id, vm_num=0): @@ -2551,6 +2675,7 @@ def ex_acquire_mks_ticket(self, vapp_or_vm_id, vm_num=0): "ticket": res.object.find(fixxpath(res.object, "Ticket")).text, "port": res.object.find(fixxpath(res.object, "Port")).text, } + return output except Exception: return None diff --git a/libcloud/test/compute/test_vcloud.py b/libcloud/test/compute/test_vcloud.py index 9053074cac..34af005845 100644 --- a/libcloud/test/compute/test_vcloud.py +++ b/libcloud/test/compute/test_vcloud.py @@ -271,6 +271,10 @@ def test_validate_vm_names(self): self.assertRaises(ValueError, self.driver._validate_vm_names, ["inv-alid.host"]) self.assertRaises(ValueError, self.driver._validate_vm_names, ["hostnametoooolong"]) self.assertRaises(ValueError, self.driver._validate_vm_names, ["host$name"]) + self.assertRaises(ValueError, self.driver._validate_vm_names, ["hostname-"]) + self.assertRaises(ValueError, self.driver._validate_vm_names, ["hostname."]) + self.assertRaises(ValueError, self.driver._validate_vm_names, [".hostname"]) + self.assertRaises(ValueError, self.driver._validate_vm_names, ["-hostname"]) def test_change_vm_names(self): self.driver._change_vm_names( @@ -611,6 +615,7 @@ def test_remove_admin_password(self): admin_pass_element = guest_customization_section.find( fixxpath(guest_customization_section, "AdminPassword") ) + if pass_exists: self.assertIsNotNone(admin_pass_element) else: @@ -1005,38 +1010,47 @@ class TerremarkMockHttp(MockHttp): def _api_v0_8_login(self, method, url, body, headers): headers["set-cookie"] = "vcloud-token=testtoken" body = self.fixtures.load("api_v0_8_login.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_org_240(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_org_240.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_vdc_224(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vdc_224.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_vdc_224_catalog(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vdc_224_catalog.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_catalogItem_5(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_catalogItem_5.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_vdc_224_action_instantiateVAppTemplate(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vdc_224_action_instantiateVAppTemplate.xml") + return (httplib.OK, body, headers, httplib.responses[httplib.OK]) def _api_v0_8_vapp_14031_action_deploy(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vapp_14031_action_deploy.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_task_10496(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_task_10496.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_vapp_14031_power_action_powerOn(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vapp_14031_power_action_powerOn.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_vapp_14031(self, method, url, body, headers): @@ -1044,18 +1058,22 @@ def _api_v0_8_vapp_14031(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vapp_14031_get.xml") elif method == "DELETE": body = "" + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_vapp_14031_power_action_reset(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vapp_14031_power_action_reset.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_vapp_14031_power_action_poweroff(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_vapp_14031_power_action_poweroff.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) def _api_v0_8_task_11001(self, method, url, body, headers): body = self.fixtures.load("api_v0_8_task_11001.xml") + return (httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED]) @@ -1093,26 +1111,32 @@ def request(self, method, url, body=None, headers=None, raw=False, stream=False) def _api_sessions(self, method, url, body, headers): headers["x-vcloud-authorization"] = "testtoken" body = self.fixtures.load("api_sessions.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_org(self, method, url, body, headers): body = self.fixtures.load("api_org.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_org_96726c78_4ae3_402f_b08b_7a78c6903d2a(self, method, url, body, headers): body = self.fixtures.load("api_org_96726c78_4ae3_402f_b08b_7a78c6903d2a.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_network_dca8b667_6c8f_4c3e_be57_7a9425dba4f4(self, method, url, body, headers): body = self.fixtures.load("api_network_dca8b667_6c8f_4c3e_be57_7a9425dba4f4.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0(self, method, url, body, headers): body = self.fixtures.load("api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vdc_brokenVdc(self, method, url, body, headers): body = self.fixtures.load("api_vdc_brokenVdc.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_errorRaiser(self, method, url, body, headers): @@ -1125,6 +1149,7 @@ def _api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_instantiateVAppTemplate body = self.fixtures.load( "api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_instantiateVAppTemplate.xml" ) + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_powerOn( @@ -1141,36 +1166,43 @@ def _api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_cloneVApp( body = self.fixtures.load( "api_vdc_3d9ae28c_1de9_4307_8107_9356ff8ba6d0_action_cloneVApp.xml" ) + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_networkConnectionSection( self, method, url, body, headers ): body = self.fixtures.load("api_task_b034df55_fe81_4798_bc81_1f0fd0ead450.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a(self, method, url, body, headers): status = httplib.OK + if method == "GET": body = self.fixtures.load("api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a.xml") status = httplib.OK elif method == "DELETE": body = self.fixtures.load("api_task_b034df55_fe81_4798_bc81_1f0fd0ead450.xml") status = httplib.ACCEPTED + return status, body, headers, httplib.responses[status] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b(self, method, url, body, headers): body = self.fixtures.load("api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6c(self, method, url, body, headers): body = self.fixtures.load("api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6c.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045(self, method, url, body, headers): body = self.fixtures.load( "put_api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection.xml" ) + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection( @@ -1186,6 +1218,7 @@ def _api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection( "put_api_vApp_vm_dd75d1d3_5b7b_48f0_aff3_69622ab7e045_guestCustomizationSection.xml" ) status = httplib.ACCEPTED + return status, body, headers, httplib.responses[status] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_reset( @@ -1197,44 +1230,54 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_reset( def _api_task_b034df55_fe81_4798_bc81_1f0fd0ead450(self, method, url, body, headers): body = self.fixtures.load("api_task_b034df55_fe81_4798_bc81_1f0fd0ead450.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_catalog_cddb3cb2_3394_4b14_b831_11fbc4028da4(self, method, url, body, headers): body = self.fixtures.load("api_catalog_cddb3cb2_3394_4b14_b831_11fbc4028da4.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_catalogItem_3132e037_759b_4627_9056_ca66466fa607(self, method, url, body, headers): body = self.fixtures.load("api_catalogItem_3132e037_759b_4627_9056_ca66466fa607.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_deployTest(self, method, url, body, headers): body = self.fixtures.load("api_task_deploy.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_action_deploy( self, method, url, body, headers ): body = self.fixtures.load("api_task_deploy.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_task_deploy(self, method, url, body, headers): body = self.fixtures.load("api_task_deploy.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_vApp_undeployTest(self, method, url, body, headers): body = self.fixtures.load("api_vApp_undeployTest.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_undeployTest_action_undeploy(self, method, url, body, headers): body = self.fixtures.load("api_task_undeploy.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_task_undeploy(self, method, url, body, headers): body = self.fixtures.load("api_task_undeploy.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_undeployErrorTest(self, method, url, body, headers): body = self.fixtures.load("api_vApp_undeployTest.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_undeployErrorTest_action_undeploy(self, method, url, body, headers): @@ -1242,10 +1285,12 @@ def _api_vApp_undeployErrorTest_action_undeploy(self, method, url, body, headers body = self.fixtures.load("api_task_undeploy_error.xml") else: body = self.fixtures.load("api_task_undeploy.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_task_undeployError(self, method, url, body, headers): body = self.fixtures.load("api_task_undeploy_error.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_undeployPowerOffTest(self, method, url, body, headers): @@ -1253,6 +1298,7 @@ def _api_vApp_undeployPowerOffTest(self, method, url, body, headers): def _api_vApp_undeployPowerOffTest_action_undeploy(self, method, url, body, headers): self.assertIn(b("powerOff"), b(body)) + return self._api_vApp_undeployTest_action_undeploy(method, url, body, headers) def _api_vApp_vapp_access_to_resource_forbidden(self, method, url, body, headers): @@ -1262,6 +1308,7 @@ def _api_vApp_vapp_access_to_resource_forbidden(self, method, url, body, headers def _api_vApp_vm_test(self, method, url, body, headers): body = self.fixtures.load("api_vApp_vm_test.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vm_test_virtualHardwareSection_disks(self, method, url, body, headers): @@ -1271,6 +1318,7 @@ def _api_vApp_vm_test_virtualHardwareSection_disks(self, method, url, body, head else: body = self.fixtures.load("put_api_vApp_vm_test_virtualHardwareSection_disks.xml") status = httplib.ACCEPTED + return status, body, headers, httplib.responses[status] def _api_vApp_vm_test_virtualHardwareSection_cpu(self, method, url, body, headers): @@ -1280,6 +1328,7 @@ def _api_vApp_vm_test_virtualHardwareSection_cpu(self, method, url, body, header else: body = self.fixtures.load("put_api_vApp_vm_test_virtualHardwareSection_cpu.xml") status = httplib.ACCEPTED + return status, body, headers, httplib.responses[status] def _api_vApp_vm_test_virtualHardwareSection_memory(self, method, url, body, headers): @@ -1289,6 +1338,7 @@ def _api_vApp_vm_test_virtualHardwareSection_memory(self, method, url, body, hea else: body = self.fixtures.load("put_api_vApp_vm_test_virtualHardwareSection_memory.xml") status = httplib.ACCEPTED + return status, body, headers, httplib.responses[status] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_power_action_powerOff( @@ -1305,10 +1355,12 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_power_action_all( body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_power_action_all.xml" ) + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] def _api_query(self, method, url, body, headers): assert method == "GET" + if "type=user" in url: self.assertTrue("page=2" in url) self.assertTrue("filter=(name==jrambo)" in url) @@ -1320,6 +1372,7 @@ def _api_query(self, method, url, body, headers): body = self.fixtures.load("api_query_vm.xml") else: raise AssertionError("Unexpected query type") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_metadata( @@ -1327,9 +1380,11 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_metadata( ): if method == "POST": body = self.fixtures.load("api_vapp_post_metadata.xml") + return httplib.ACCEPTED, body, headers, httplib.responses[httplib.ACCEPTED] else: body = self.fixtures.load("api_vapp_get_metadata.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_controlAccess( @@ -1338,6 +1393,7 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_controlAccess( body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_controlAccess.xml" ) + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_controlAccess( @@ -1354,14 +1410,17 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_controlAccess( body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6a_controlAccess.xml" ) + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_admin_group_b8202c48_7151_4e61_9a6c_155474c7d413(self, method, url, body, headers): body = self.fixtures.load("api_admin_group_b8202c48_7151_4e61_9a6c_155474c7d413.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6d(self, method, url, body, headers): body = self.fixtures.load("api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6d.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] @@ -1375,10 +1434,12 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_createSnapshot( body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_create_snapshot.xml" ) + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_task_fab4b26f_4f2e_4d49_ad01_ae9324bbfe48(self, method, url, body, headers): body = self.fixtures.load("api_task_b034df55_fe81_4798_bc81_1f0fd0ead450.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_removeAllSnapshots( @@ -1388,10 +1449,12 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_removeAllSnapshot body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_remove_snapshots.xml" ) + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_task_2518935e_b315_4d8e_9e99_9275f751877c(self, method, url, body, headers): body = self.fixtures.load("api_task_2518935e_b315_4d8e_9e99_9275f751877c.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_revertToCurrentSnapshot( @@ -1401,10 +1464,12 @@ def _api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_action_revertToCurrentSn body = self.fixtures.load( "api_vApp_vapp_8c57a5b6_e61b_48ca_8a78_3b70ee65ef6b_revert_snapshot.xml" ) + return httplib.OK, body, headers, httplib.responses[httplib.OK] def _api_task_fe75d3af_f5a3_44a5_b016_ae0bdadfc32b(self, method, url, body, headers): body = self.fixtures.load("api_task_fe75d3af_f5a3_44a5_b016_ae0bdadfc32b.xml") + return httplib.OK, body, headers, httplib.responses[httplib.OK] From 0f3b1bc01b2e6d4c646a60ac23865bf2281a578c Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Sun, 16 Jun 2024 12:07:42 +0200 Subject: [PATCH 13/22] Add nosec bandit pragma for known issue. --- libcloud/compute/ssh.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libcloud/compute/ssh.py b/libcloud/compute/ssh.py index 5c01f02fa5..f1efb65b95 100644 --- a/libcloud/compute/ssh.py +++ b/libcloud/compute/ssh.py @@ -318,7 +318,9 @@ def __init__( self.use_compression = use_compression self.client = paramiko.SSHClient() - self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) + # Long term we should switch to a more secure default, but this would break + # a lot of non-interactive deployment scripts + self.client.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # nosec self.logger = self._get_and_setup_logger() # This object is lazily created on first SFTP operation (e.g. put() From b98e593a3f512c30171ca24988aecc7540732349 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 17 Jun 2024 08:11:39 +0200 Subject: [PATCH 14/22] Improve coverage --- libcloud/compute/drivers/openstack.py | 2 +- .../test/compute/fixtures/openstack_v1.1/_v2_0__network.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py index 38b7c64be3..cea1974567 100644 --- a/libcloud/compute/drivers/openstack.py +++ b/libcloud/compute/drivers/openstack.py @@ -3164,7 +3164,7 @@ def _to_network(self, obj): extra["tags"] = obj.get("tags") if obj.get("is_default", None) is not None: extra["is_default"] = obj.get("is_default") - if obj.get("description", None): + if obj.get("description", None) is not None: extra["description"] = obj.get("description") return OpenStackNetwork(id=obj["id"], name=obj["name"], cidr=None, driver=self, extra=extra) diff --git a/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network.json b/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network.json index 5686828996..b1b6005700 100644 --- a/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network.json +++ b/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network.json @@ -27,6 +27,7 @@ "updated_at": "2016-03-08T20:19:41", "vlan_transparent": false, "description": "", - "is_default": false + "is_default": false, + "tags": ["tag1,tag2"] } } From 00f3a02273443bd92aad1c9ddab260f22a15f076 Mon Sep 17 00:00:00 2001 From: Miguel Caballer Date: Mon, 17 Jun 2024 08:36:41 +0200 Subject: [PATCH 15/22] Improve coverage --- .../_v2_0__network_no_tags.json | 30 +++++++++++++++++++ libcloud/test/compute/test_openstack.py | 21 +++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network_no_tags.json diff --git a/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network_no_tags.json b/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network_no_tags.json new file mode 100644 index 0000000000..19e54b6a4f --- /dev/null +++ b/libcloud/test/compute/fixtures/openstack_v1.1/_v2_0__network_no_tags.json @@ -0,0 +1,30 @@ +{ + "network": { + "admin_state_up": true, + "availability_zone_hints": [], + "availability_zones": [ + "nova" + ], + "created_at": "2016-03-08T20:19:41", + "dns_domain": "my-domain.org.", + "id": "e4e207ac-6707-432b-82b9-244f6859c394", + "ipv4_address_scope": null, + "ipv6_address_scope": null, + "l2_adjacency": false, + "mtu": 1500, + "name": "net2", + "port_security_enabled": true, + "project_id": "26a7980765d0414dbc1fc1f88cdb7e6e", + "qos_policy_id": "bfdb6c39f71e4d44b1dfbda245c50819", + "revision_number": 3, + "router:external": false, + "shared": false, + "status": "ACTIVE", + "subnets": [ + "08eae331-0402-425a-923c-34f7cfe39c1b" + ], + "tenant_id": "26a7980765d0414dbc1fc1f88cdb7e6e", + "updated_at": "2016-03-08T20:19:41", + "vlan_transparent": false + } +} diff --git a/libcloud/test/compute/test_openstack.py b/libcloud/test/compute/test_openstack.py index 7820a6657c..51506995bc 100644 --- a/libcloud/test/compute/test_openstack.py +++ b/libcloud/test/compute/test_openstack.py @@ -2122,6 +2122,14 @@ def test_ex_get_network(self): self.assertTrue(isinstance(network, OpenStackNetwork)) self.assertEqual(network.name, "net2") self.assertEqual(network.extra["is_default"], False) + self.assertEqual(network.extra["tags"], ["tag1,tag2"]) + + network = self.driver.ex_get_network("e4e207ac-6707-432b-82b9-244f6859c394") + + self.assertEqual(network.id, "e4e207ac-6707-432b-82b9-244f6859c394") + self.assertTrue(isinstance(network, OpenStackNetwork)) + self.assertEqual(network.name, "net2") + self.assertNotIn("tags", network.extra) def test_ex_list_subnets(self): subnets = self.driver.ex_list_subnets() @@ -3406,6 +3414,19 @@ def _v2_1337_v2_0_networks_cc2dad14_827a_feea_416b_f13e50511a0a( ) raise NotImplementedError() + def _v2_1337_v2_0_networks_e4e207ac_6707_432b_82b9_244f6859c394( + self, method, url, body, headers + ): + if method == "GET": + body = self.fixtures.load("_v2_0__network_no_tags.json") + return ( + httplib.OK, + body, + self.json_content_headers, + httplib.responses[httplib.OK], + ) + raise NotImplementedError() + def _v2_1337_v2_0_networks_d32019d3_bc6e_4319_9c1d_6722fc136a22( self, method, url, body, headers ): From 3c726b3271df8d85e8f0d2b0eeaabf19a5f0cc2a Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Mon, 17 Jun 2024 16:25:54 +0200 Subject: [PATCH 16/22] Add changelog entry for #2016. --- CHANGES.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 233253c848..65df786046 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -80,6 +80,11 @@ Compute (#2012) [Eric Anderson - @eric-anderson] +- [OpenStack] Add `is_default` and `tags` extra fields to the OpenStack + Network Object (`OpenStackNetwork`). + (#2016) + [Miguel Caballer - @micafer] + Storage ~~~~~~~ From d0777e53fee74851e23c26f905cc196d04ffcdad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:27:10 +0000 Subject: [PATCH 17/22] Bump build from 1.0.3 to 1.2.1 Bumps [build](https://github.com/pypa/build) from 1.0.3 to 1.2.1. - [Release notes](https://github.com/pypa/build/releases) - [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pypa/build/compare/1.0.3...1.2.1) --- updated-dependencies: - dependency-name: build dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4ce5d9ac4e..b687e494d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,7 +74,7 @@ Changelog = "https://github.com/apache/libcloud/blob/trunk/CHANGES.rst" [project.optional-dependencies] build = [ - "build==1.0.3" + "build==1.2.1" ] publish = [ "twine==4.0.2" From 6f710a4b927a70f9ec20bc33ef995ebbf14b2981 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 17:39:50 +0000 Subject: [PATCH 18/22] Bump codecov/codecov-action from 4.4.1 to 4.5.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.4.1 to 4.5.0. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/125fc84a9a348dbcf27191600683ec096ec9021c...e28ff129e5465c2c0dcc6f003fc735cb6ae0c673) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aebe0e99c0..0a46cf3157 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -150,7 +150,7 @@ jobs: tox -e coverage-ci - name: Upload Coverage to codecov.io - uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1 + uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 with: # We utilize secret for more realiable builds. Without secret being set, upload step # fails fairly often. From 7b56fea052efcd2779c3397f85f11f3762437316 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 13:45:39 +0000 Subject: [PATCH 19/22] Bump sphinx-rtd-theme from 1.3.0 to 2.0.0 Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 1.3.0 to 2.0.0. - [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst) - [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.3.0...2.0.0) --- updated-dependencies: - dependency-name: sphinx-rtd-theme dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements-docs.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-docs.txt b/requirements-docs.txt index 2bcc4ef734..55b62dcae6 100644 --- a/requirements-docs.txt +++ b/requirements-docs.txt @@ -1,4 +1,4 @@ rstcheck==6.2.1; python_version >= '3.7' fasteners -sphinx_rtd_theme==1.3.0 +sphinx_rtd_theme==2.0.0 sphinx==6.2.1 From 4720ae2fb45abe40f94854803d59e4d0cff70dcb Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Tue, 18 Jun 2024 16:55:49 +0200 Subject: [PATCH 20/22] Also use sphinx_rtd_theme on ReadtheDocs. This is needed with the latest version of the sphinx-rtd-theme Python package. --- docs/conf.py | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0232e4415f..33584caeab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,9 +24,6 @@ BASE_DIR = os.path.dirname(os.path.abspath(__file__)) BASE_DIR = os.path.abspath(BASE_DIR) -# Detect if we are running on read the docs -on_rtd = os.environ.get("READTHEDOCS", "").lower() == "true" - # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. @@ -39,10 +36,12 @@ # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx.ext.viewcode"] - -if not on_rtd: - extensions.append("sphinx_rtd_theme") +extensions = [ + "sphinx.ext.autodoc", + "sphinx.ext.intersphinx", + "sphinx.ext.viewcode", + "sphinx_rtd_theme", +] # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] @@ -115,15 +114,10 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. +import sphinx_rtd_theme -if on_rtd: - html_theme = "default" - RTD_NEW_THEME = True -else: - import sphinx_rtd_theme - - html_theme = "sphinx_rtd_theme" - html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +html_theme = "sphinx_rtd_theme" +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the From db479629e1083cae74408f009af9f5f150c2500b Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Tue, 18 Jun 2024 17:27:49 +0200 Subject: [PATCH 21/22] Try to fix documentation theme on readthedocs.org. --- .readthedocs.yml | 6 +++--- docs/conf.py | 17 ++++++++++++++--- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 97531b13fd..5e454ca701 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -23,6 +23,6 @@ formats: # Optional but recommended, declare the Python requirements required # to build your documentation # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html -#python: -# install: -# - requirements: requirements-rtd.txt +python: + install: + - requirements: requirements-rtd.txt diff --git a/docs/conf.py b/docs/conf.py index 33584caeab..6c01bc8c0c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,6 +21,11 @@ from sphinx.ext import apidoc from sphinx.domains.python import PythonDomain +try: + import sphinx_rtd_theme +except ImportError: + sphinx_rtd_theme = None + BASE_DIR = os.path.dirname(os.path.abspath(__file__)) BASE_DIR = os.path.abspath(BASE_DIR) @@ -114,10 +119,14 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -import sphinx_rtd_theme - html_theme = "sphinx_rtd_theme" -html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] + +if sphinx_rtd_theme: + html_theme = "sphinx_rtd_theme" + html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] +else: + html_theme = "default" + # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -321,10 +330,12 @@ def linkify_issues_in_changelog(app, docname, source): def linkify_github_issues(match): url = "https://github.com/apache/libcloud/issues/" + match[1] + return f"`{match[0]} <{url}>`_" def linkify_jira_issues(match): url = "https://issues.apache.org/jira/browse/LIBCLOUD-" + match[1] + return f"`{match[0]} <{url}>`_" linkified_changelog = re.sub(r"(?:PR)?#([0-9]+)\b", linkify_github_issues, changelog) From 5fbf5bfc37e13c3f0e5c9c840887b13b86e09e87 Mon Sep 17 00:00:00 2001 From: Tomaz Muraus Date: Tue, 18 Jun 2024 17:33:19 +0200 Subject: [PATCH 22/22] Add sphinx_rtd_theme requirement to requirements-rtd.txt --- requirements-rtd.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements-rtd.txt b/requirements-rtd.txt index 1208ef21e8..3ad408ffa7 100644 --- a/requirements-rtd.txt +++ b/requirements-rtd.txt @@ -1,2 +1,3 @@ # Requirements for ReadTheDocs sphinx==6.2.1 +sphinx_rtd_theme==2.0.0